question_id
stringlengths 11
60
| question_text
stringlengths 7
294
| decomposition
stringlengths 13
606
| operators
stringlengths 10
260
| split
stringclasses 1
value |
---|---|---|---|---|
SPIDER_train_980 | What are the public schools and what are their locations? | return schools ;return #1 that are public ;return locations of #2 ;return #2 , #3 | ['select', 'filter', 'project', 'union'] | train |
SPIDER_train_981 | When was the school with the largest enrollment founded? | return schools ;return enrollments of #1 ;return #1 where #2 is largest ;return when was #3 founded | ['select', 'project', 'superlative', 'project'] | train |
SPIDER_train_982 | Return the founded year for the school with the largest enrollment. | return schools ;return enrollments of #1 ;return #1 where #2 is highest ;return founded year of #3 | ['select', 'project', 'superlative', 'project'] | train |
SPIDER_train_983 | Find the founded year of the newest non public school. | return non public schools ;return founded years of #1 ;return #2 where founded year is newest | ['select', 'project', 'filter'] | train |
SPIDER_train_984 | What is the founded year of the non public school that was founded most recently? | return schools ;return #1 that are non public ;return founded years of #2 ;return #2 where #3 is highest | ['select', 'filter', 'project', 'superlative'] | train |
SPIDER_train_985 | How many schools are in the basketball match? | return the basketball match ;return the schools in #1 ;return the number of #2 | ['select', 'project', 'aggregate'] | train |
SPIDER_train_986 | Count the number of schools that have had basketball matches. | return schools ;return #1 that have had basketball matches ;return number of #2 | ['select', 'filter', 'aggregate'] | train |
SPIDER_train_987 | What is the highest acc percent score in the competition? | return competition ;return acc percent scores in #1 ;return #1 where #2 is highest | ['select', 'project', 'superlative'] | train |
SPIDER_train_988 | Return the highest acc percent across all basketball matches. | return basketball matches ;return acc percent of #1 ;return #2 that is highest | ['select', 'project', 'filter'] | train |
SPIDER_train_989 | What is the primary conference of the school that has the lowest acc percent score in the competition? | return schools ;return #1 in the competition ;return the acc percent scores of #2 ;return #2 where #3 is the lowest ;return the primary conference of #4 | ['select', 'filter', 'project', 'comparative', 'project'] | train |
SPIDER_train_99 | What are the id of students who registered courses or attended courses? | return students ;return registered courses of #1 ;return number of #2 for each #1 ;return #1 where #3 is higher than zero ;return attended courses of #1 ;return number of #5 for each #1 ;return #1 where #6 is higher than zero ;return #4 or #7 ;return ids of #8 | ['select', 'project', 'group', 'comparative', 'project', 'group', 'comparative', 'union', 'project'] | train |
SPIDER_train_990 | Return the primary conference of the school with the lowest acc percentage score. | return acc percentage score ;return lowest #1 ;return school that has #2 ;return primary conference of #3 | ['select', 'aggregate', 'project', 'project'] | train |
SPIDER_train_991 | What is the team name and acc regular season score of the school that was founded for the longest time? | return schools ;return time founded of #1 ;return #1 where #2 is highest ;return team name of #3 ;return acc regular season score of #3 ;return #4 , #5 | ['select', 'project', 'superlative', 'project', 'project', 'union'] | train |
SPIDER_train_992 | Return the name of the team and the acc during the regular season for the school that was founded the earliest. | return schools ;return #1 that was founded earliest ;return team of #2 ;return name of #3 ;return acc of #3 ;return #5 during the regular season ;return #4 , #6 | ['select', 'filter', 'project', 'project', 'project', 'filter', 'union'] | train |
SPIDER_train_993 | Find the location and all games score of the school that has Clemson as its team name. | return schools ;return team names of #1 ;return #1 where #2 is Clemson ;return games of #3 ;return locations of #4 ;return scores of #4 ;return #5 , #6 | ['select', 'project', 'comparative', 'project', 'project', 'project', 'union'] | train |
SPIDER_train_994 | What are the all games score and location of the school called Clemson? | return schools ;return #1 called Clemson ;return games of #2 ;return score of #3 ;return locations of #3 ;return #4 , #5 | ['select', 'filter', 'project', 'project', 'project', 'union'] | train |
SPIDER_train_995 | What are the average enrollment size of the universities that are founded before 1850? | return universities ;return #1 founded before 1850 ;return enrollment size of #2 ;return average of #3 | ['select', 'filter', 'project', 'aggregate'] | train |
SPIDER_train_996 | Return the average enrollment of universities founded before 1850. | return universities ;return #1 founded before 1850 ;return enrollments of #2 ;return average of #3 | ['select', 'filter', 'project', 'aggregate'] | train |
SPIDER_train_997 | Show the enrollment and primary_conference of the oldest college. | return colleges ;return the oldest #1 ;return enrollment of #2 ;return primary_conference of #2 ;return #3 , #4 | ['select', 'project', 'project', 'project', 'union'] | train |
SPIDER_train_998 | What are the enrollment and primary conference for the university which was founded the earliest? | return universities ;return #1 founded earliest ;return enrollment of #2 ;return primary conference of #2 ;return #3 , #4 | ['select', 'filter', 'project', 'project', 'union'] | train |
SPIDER_train_999 | What is the total and minimum enrollment of all schools? | return schools ;return enrollments of #1 ;return sum of #2 ;return minimum of #2 ;return #3 , #4 | ['select', 'project', 'aggregate', 'aggregate', 'union'] | train |