question_id
stringlengths 11
60
| question_text
stringlengths 7
294
| decomposition
stringlengths 13
606
| operators
stringlengths 10
260
| split
stringclasses 1
value |
---|---|---|---|---|
SPIDER_train_6557 | Find the distinct names of all wines that have prices higher than some wines from John Anthony winery. | return wines ;return #1 from John Anthony winery ;return prices of #2 ;return the lowest #3 ;return #1 besides #2 ;return prices of #5 ;return #5 where #6 is higher than #4 ;return distinct names of #7 | ['select', 'filter', 'project', 'aggregate', 'discard', 'project', 'comparative', 'project'] | train |
SPIDER_train_6558 | What are the distinct names of wines with prices higher than any wine from John Anthony winery. | return wines ;return wineries of #1 ;return #1 where #2 is John Anthony ;return prices of #1 ;return prices of #3 ;return #1 where #4 is higher than #5 ;return names of #6 ;return distinct #7 | ['select', 'project', 'comparative', 'project', 'project', 'comparative', 'project', 'project'] | train |
SPIDER_train_6559 | List the names of all distinct wines in alphabetical order. | return wines ;return distinct #1 ;return #2 sorted by alphabetical order | ['select', 'project', 'sort'] | train |
SPIDER_train_656 | Please show the most common age of editors. | return ages ;return editors of #1 ;return number of #2 for each #1 ;return #1 where #3 is highest | ['select', 'project', 'group', 'superlative'] | train |
SPIDER_train_6560 | What are the names of wines, sorted in alphabetical order? | return wines ;return names of #1 ;return #2 sorted in alphabetical order | ['select', 'project', 'filter'] | train |
SPIDER_train_6561 | List the names of all distinct wines ordered by price. | return wines ;return distinct #1 ;return names of #2 ;return prices of #1 ;return #3 sorted by #4 | ['select', 'project', 'project', 'project', 'sort'] | train |
SPIDER_train_6562 | What are the names of wines, sorted by price ascending? | return wines ;return price of #1 ;return names of #1 ;return #3 sorted by #2 ascending | ['select', 'project', 'project', 'sort'] | train |
SPIDER_train_6563 | What is the area of the appelation that produces the highest number of wines before the year of 2010? | return appelations ;return wines #1 produces ;return #2 before 2010 ;return number of #3 for each #1 ;return #1 where #4 is highest ;return area of #5 | ['select', 'project', 'filter', 'group', 'superlative', 'project'] | train |
SPIDER_train_6564 | What is the area for the appelation which produced the most wines prior to 2010? | return appelations ;return wines of #1 ;return #2 produced prior to 2010 ;return number of #3 for each #1 ;return #1 where #4 is highest ;return area of #5 | ['select', 'project', 'filter', 'group', 'superlative', 'project'] | train |
SPIDER_train_6565 | What is the color of the grape whose wine products has the highest average price? | return wine products ;return the price of #1 ;return the average of #2 ;return the grape where #3 is highest ;return the color of #4 | ['select', 'project', 'aggregate', 'project', 'project'] | train |
SPIDER_train_6566 | Give the color of the grape whose wine products have the highest average price? | return grapes ;return wine products of #1 ;return prices of #2 ;return average #3 for each #1 ;return #1 where #4 is highest ;return color of #5 | ['select', 'project', 'project', 'group', 'superlative', 'project'] | train |
SPIDER_train_6567 | Find the distinct names of wines produced before the year of 2000 or after the year of 2010. | return wines ;return year that #1 produced ;return #1 where #2 is lower than 2000 ;return #1 where #2 is higher than 2010 ;return #3 , #4 ;return distinct names of #5 | ['select', 'project', 'comparative', 'comparative', 'union', 'project'] | train |
SPIDER_train_6568 | Give the distinct names of wines made before 2000 or after 2010. | return wines ;return #1 made before 2000 ;return #1 made after 2010 ;return #2 or #3 ;return distinct names of #4 | ['select', 'filter', 'filter', 'union', 'project'] | train |
SPIDER_train_6569 | Find the distinct winery of wines having price between 50 and 100. | return wines ;return prices of #1 ;return #1 where #2 is at least 50 ;return #1 where #2 is at most 100 ;return #1 in both #3 and #4 ;return distinct wineries of #5 | ['select', 'project', 'comparative', 'comparative', 'intersection', 'project'] | train |
SPIDER_train_657 | Show the distinct themes of journals. | return journals ;return distinct themes of #1 | ['select', 'project'] | train |
SPIDER_train_6570 | What are the distinct wineries which produce wines costing between 50 and 100? | return wines ;return cost of #1 ;return #1 where #2 is higher than 50 ;return #3 where #2 is lower than 100 ;return distinct wineries that produce #4 | ['select', 'project', 'comparative', 'comparative', 'project'] | train |
SPIDER_train_6571 | What are the average prices and cases of wines produced in the year of 2009 and made of Zinfandel grape? | return wines ;return grapes of #1 ;return #1 where #2 is Zinfandel ;return #3 in 2009 ;return prices of #4 ;return average of #5 ;return cases of #4 ;return number of #7 ;return average of #8 ;return #6 , #9 | ['select', 'project', 'comparative', 'filter', 'project', 'aggregate', 'project', 'aggregate', 'aggregate', 'union'] | train |
SPIDER_train_6572 | Give the average price and case of wines made from Zinfandel grapes in the year 2009. | return wines ;return #1 made from Zinfandel grapes ;return #2 in the year 2009 ;return prices of #3 ;return cases of #3 ;return the average of #4 ;return the average of #5 ;return #6 , #7 | ['select', 'filter', 'filter', 'project', 'project', 'aggregate', 'aggregate', 'union'] | train |
SPIDER_train_6573 | What are the maximum price and score of wines produced by St. Helena appelation? | return wines ;return appelations of #1 ;return #1 where #2 is St. Helena ;return prices of #3 ;return maximum of #4 ;return scores of #3 ;return maximum of #6 ;return #5 , #7 | ['select', 'project', 'comparative', 'project', 'aggregate', 'project', 'aggregate', 'union'] | train |
SPIDER_train_6574 | Give the maximum price and score for wines produced in the appelation St. Helena. | return wines ;return appelations of #1 ;return #1 where #2 is St. Helena ;return prices of #3 ;return maximum of #4 ;return scores of #3 ;return #5 , #6 | ['select', 'project', 'comparative', 'project', 'aggregate', 'project', 'union'] | train |
SPIDER_train_6575 | What are the maximum price and score of wines in each year? | return wines ;return years of #1 ;return prices of #1 ;return scores of #1 ;return the maximum of #3 for each #2 ;return the maximum of #4 for each #2 ;return #5 , #6 | ['select', 'project', 'project', 'project', 'group', 'group', 'union'] | train |
SPIDER_train_6576 | What are the maximum price and score of wines for each year? | return years ;return wines of #1 ;return prices of #2 ;return maximum of #3 for each #1 ;return scores of #2 ;return maximum of #5 for each #1 ;return #4 , #6 | ['select', 'project', 'project', 'group', 'project', 'group', 'union'] | train |
SPIDER_train_6577 | What are the average price and score of wines grouped by appelation? | return appelations ;return wines of #1 ;return prices of #2 ;return average of #3 for each #1 ;return scores of #2 ;return average of #5 for each #1 ;return #4 , #6 | ['select', 'project', 'project', 'group', 'project', 'group', 'union'] | train |
SPIDER_train_6578 | What are the average price and score of wines for each appelation? | return appelations ;return wines of #1 ;return prices of #2 ;return average of #3 for each #1 ;return scores of #2 ;return average of #5 for each #1 ;return #4 , #6 | ['select', 'project', 'project', 'group', 'project', 'group', 'union'] | train |
SPIDER_train_6579 | Find the wineries that have at least four wines. | return wineries ;return wines of #1 ;return number of #2 for each #1 ;return #1 where #3 is at least four | ['select', 'project', 'group', 'comparative'] | train |
SPIDER_train_658 | Show the names of editors and the theme of journals for which they serve on committees. | return editors ;return name of #1 ;return journals of #1 ;return #3 that #1 serve on committees ;return theme of #4 ;return #2 , #5 | ['select', 'project', 'project', 'filter', 'project', 'union'] | train |
SPIDER_train_6580 | Which wineries produce at least four wines? | return wineries ;return wines #1 produce ;return number of #2 for each #1 ;return #1 where #3 is at least four | ['select', 'project', 'group', 'comparative'] | train |
SPIDER_train_6581 | Find the country of all appelations who have at most three wines. | return appelations ;return wines of #1 ;return number of #2 for each #1 ;return #1 where #3 is at most three ;return countries of #4 | ['select', 'project', 'group', 'comparative', 'project'] | train |
SPIDER_train_6582 | What are the countries for appelations with at most 3 wines? | return appelations ;return wines of #1 ;return number of #2 for each #1 ;return #1 where #3 is at most 3 ;return countries of #4 | ['select', 'project', 'group', 'comparative', 'project'] | train |
SPIDER_train_6583 | What are the names of wines whose production year are before the year of all wines by Brander winery? | return wines ;return #1 from the Brander winery ;return the production years of #2 ;return the production years of #1 ;return #1 where #4 is before all #3 ;return the names of #5 | ['select', 'filter', 'project', 'project', 'comparative', 'project'] | train |
SPIDER_train_6584 | What are the names of wines produced before any wine from the Brander winery? | return the Brander winery ;return wines of #1 ;return when was #2 produced ;return wines that was produced before #3 | ['select', 'project', 'project', 'project'] | train |
SPIDER_train_6585 | What are the names of wines that are more expensive then all wines made in the year 2006? | return wines ;return #1 made in the year 2006 ;return price of #2 ;return the highest #3 ;return price of #1 ;return #1 where #5 is higher than #4 ;return the names of #6 | ['select', 'filter', 'project', 'aggregate', 'project', 'comparative', 'project'] | train |
SPIDER_train_6586 | Give the names of wines with prices above any wine produced in 2006. | return wines ;return #1 produced in 2006 ;return prices of #1 ;return prices of #2 ;return maximum of #4 ;return #1 where #3 is more than #5 ;return name of #6 | ['select', 'filter', 'project', 'project', 'aggregate', 'comparative', 'project'] | train |
SPIDER_train_6587 | Find the top 3 wineries with the greatest number of wines made of white color grapes. | return wineries ;return wines of #1 ;return grapes of #2 ;return colors of #3 ;return #2 where #4 is white ;return number of #5 for each #1 ;return #1 where #6 is top 3 greatest | ['select', 'project', 'project', 'project', 'comparative', 'group', 'comparative'] | train |
SPIDER_train_6588 | Which 3 wineries produce the most wines made from white grapes? | return wineries ;return wines of #1 ;return #2 that are made from white grapes ;return number of #3 for each #1 ;return the 3 highest of #4 ;return #1 where #4 is equal to any of #5 | ['select', 'project', 'filter', 'group', 'aggregate', 'comparative'] | train |
SPIDER_train_6589 | List the grape, winery and year of the wines whose price is bigger than 100 ordered by year. | return wines ;return prices of #1 ;return #1 where #2 is higher than 100 ;return grapes of #3 ;return wineries of #3 ;return years of #3 ;return #4 , #5 , #6 ;return #7 sorted by #6 | ['select', 'project', 'comparative', 'project', 'project', 'project', 'union', 'sort'] | train |
SPIDER_train_659 | For each journal_committee, find the editor name and the journal theme. | return journal_committees ;return editors of #1 ;return names of #2 ;return journal themes of #1 ;return #3 , #4 | ['select', 'project', 'project', 'project', 'union'] | train |
SPIDER_train_6590 | What are the grapes, wineries and years for wines with price higher than 100, sorted by year? | return wines ;return prices of #1 ;return #1 where #2 is higher than 100 ;return grapes of #3 ;return wineries of #3 ;return years of #3 ;return #4 , #5 , #6 ;return #7 sorted by #6 | ['select', 'project', 'comparative', 'project', 'project', 'project', 'union', 'sort'] | train |
SPIDER_train_6591 | List the grape, appelation and name of wines whose score is higher than 93 ordered by Name. | return wines ;return scores of #1 ;return #1 where #2 is higher than 93 ;return grapes of #3 ;return appelations of #3 ;return names of #3 ;return #4 , #5 , #6 ;return #7 sorted by #6 | ['select', 'project', 'comparative', 'project', 'project', 'project', 'union', 'sort'] | train |
SPIDER_train_6592 | What are the grapes, appelations, and wines with scores above 93, sorted by Name? | return wines ;return scores of #1 ;return #1 where #2 is higher than 93 ;return grapes of #3 ;return appelations of #3 ;return Names of #3 ;return #3 , #4 , #5 ;return #7 sorted by #6 | ['select', 'project', 'comparative', 'project', 'project', 'project', 'union', 'sort'] | train |
SPIDER_train_6593 | Find the appelations that produce wines after the year of 2008 but not in Central Coast area. | return appelations ;return year that #1 produce wines ;return #1 where #2 is higher than 2008 ;return #3 that is in Central Coast area ;return #3 besides #4 | ['select', 'project', 'comparative', 'filter', 'discard'] | train |
SPIDER_train_6594 | What are the appelations for wines produced after 2008 but not in the Central Coast area? | return wines ;return #1 produced after 2008 ;return areas of #1 ;return #1 where #3 is not Central Coast ;return appelations of both #2 and #4 | ['select', 'filter', 'project', 'comparative', 'intersection'] | train |
SPIDER_train_6595 | Find the average price of wines that are not produced from Sonoma county. | return wines ;return #1 not produced from Sonoma county ;return price of #2 ;return average of #3 | ['select', 'filter', 'project', 'aggregate'] | train |
SPIDER_train_6596 | What is the average price for wines not produced in Sonoma county? | return wines ;return #1 produced in Sonoma county ;return #1 besides #2 ;return average price for #3 | ['select', 'filter', 'discard', 'project'] | train |
SPIDER_train_6597 | Find the county where produces the most number of wines with score higher than 90. | return counties ;return wines #1 produce ;return scores of #2 ;return #2 where #3 is higher than 90 ;return number of #4 for each #1 ;return #1 where #5 is highest | ['select', 'project', 'project', 'comparative', 'group', 'superlative'] | train |
SPIDER_train_6598 | What is the county that produces the most wines scoring higher than 90? | return counties ;return wines of #1 ;return score of #2 ;return #2 where #3 is higher than 90 ;return number of #4 for each #1 ;return #1 where #5 is highest | ['select', 'project', 'project', 'comparative', 'group', 'superlative'] | train |
SPIDER_train_6599 | How many train stations are there? | return train stations ;return number of #1 | ['select', 'aggregate'] | train |
SPIDER_train_66 | What are the ids of all students for courses and what are the names of those courses? | return courses ;return students of #1 ;return ids of #2 ;return names of #1 ;return #3 , #4 | ['select', 'project', 'project', 'project', 'union'] | train |
SPIDER_train_660 | Show the names and ages of editors and the theme of journals for which they serve on committees, in ascending alphabetical order of theme. | return editors ;return names of #1 ;return ages of #1 ;return journals that #1 serve on committees ;return theme of #4 ;return #2 , #3 , #4 sorted by #5 | ['select', 'project', 'project', 'project', 'project', 'sort'] | train |
SPIDER_train_6600 | Show the name, location, and number of platforms for all stations. | return stations ;return names of #1 ;return locations of #1 ;return platforms of #1 ;return number of #4 for each #1 ;return #2 , #3 , #5 | ['select', 'project', 'project', 'project', 'group', 'union'] | train |
SPIDER_train_6601 | What are all locations of train stations? | return train stations ;return locations of #1 | ['select', 'project'] | train |
SPIDER_train_6602 | Show the names and total passengers for all train stations not in London. | return train stations ;return #1 in London ;return #1 besides #2 ;return passengers of #3 ;return number of #4 for each #3 ;return names of #3 ;return #5 or #6 | ['select', 'filter', 'discard', 'project', 'group', 'project', 'union'] | train |
SPIDER_train_6603 | Show the names and main services for train stations that have the top three total number of passengers. | return train stations ;return passengers of #1 ;return number of #2 for #1 ;return #1 where #3 is highest ;return #1 besides #4 ;return #5 where #3 is highest ;return #5 besides #6 ;return #7 where #3 is highest ;return #4 , #6 , #8 ;return name of #9 ;return main services of #9 ;return #10 , #11 | ['select', 'project', 'None', 'superlative', 'discard', 'superlative', 'discard', 'superlative', 'union', 'project', 'project', 'union'] | train |
SPIDER_train_6604 | What is the average and maximum number of total passengers for train stations in London or Glasgow? | return train stations ;return #1 in London ;return #1 in Glasgow ;return #2 or #3 ;return passengers of #4 ;return number of #5 ;return average of #6 ;return maximum of #6 ;return #7 , #8 | ['select', 'filter', 'filter', 'union', 'project', 'aggregate', 'aggregate', 'aggregate', 'union'] | train |
SPIDER_train_6605 | Show all locations and the total number of platforms and passengers for all train stations in each location. | return locations ;return train stations of locations ;return total number of platforms for each #2 ;return total number of passengers for each #2 ;return #3 or #4 | ['select', 'select', 'group', 'group', 'union'] | train |
SPIDER_train_6606 | Show all locations that have train stations with at least 15 platforms and train stations with more than 25 total passengers. | return train stations ;return platforms of #1 ;return number of #2 for each #1 ;return #1 where #3 is at least 15 ;return passengers of #1 ;return number of #5 for each #1 ;return #1 where #6 is higher than 25 ;return #1 of both #4 and #7 ;return locations of #8 | ['select', 'project', 'group', 'comparative', 'project', 'group', 'comparative', 'intersection', 'project'] | train |
SPIDER_train_6607 | Show all locations which don't have a train station with at least 15 platforms. | return locations ;return #1 that have a train station with at least 15 platforms ;return #1 besides #2 | ['select', 'filter', 'discard'] | train |
SPIDER_train_6608 | Show the location with most number of train stations. | return locations ;return number of train stations for each #1 ;return #1 where #2 is highest | ['select', 'group', 'superlative'] | train |
SPIDER_train_6609 | Show the name, time, and service for all trains. | return trains ;return names of #1 ;return times of #1 ;return services of #1 ;return #2 , #3 , #4 | ['select', 'project', 'project', 'project', 'union'] | train |
SPIDER_train_661 | Show the names of editors that are on the committee of journals with sales bigger than 3000. | return journals ;return sales of #1 ;return #1 where #2 is higher than 3000 ;return committees of #3 ;return editors on #4 ;return names of #5 | ['select', 'project', 'comparative', 'project', 'project', 'project'] | train |
SPIDER_train_6610 | Show the number of trains | return trains ;return number of #1 | ['select', 'aggregate'] | train |
SPIDER_train_6611 | Show the name and service for all trains in order by time. | return trains ;return times of #1 ;return #1 sorted by #2 ;return names of #3 ;return service of #3 ;return #4 or #5 | ['select', 'project', 'sort', 'project', 'project', 'union'] | train |
SPIDER_train_6612 | Show the station name and number of trains in each station. | return stations ;return names of #1 ;return trains in #1 ;return number of #3 for each #1 ;return #2 , #4 | ['select', 'project', 'project', 'group', 'union'] | train |
SPIDER_train_6613 | show the train name and station name for each train. | return trains ;return names of #1 ;return stations of #1 ;return names of #3 ;return #2 , #4 | ['select', 'project', 'project', 'project', 'union'] | train |
SPIDER_train_6614 | Show all train names and times in stations in London in descending order by train time. | return stations ;return #1 in London ;return trains of #2 ;return names of #3 ;return times of #3 ;return #4 , #5 ;return #6 sorted by #5 in descending order | ['select', 'filter', 'project', 'project', 'project', 'union', 'sort'] | train |
SPIDER_train_6615 | Show the station name with greatest number of trains. | return stations ;return trains of #1 ;return number of #2 for each #1 ;return #1 where #3 is highest ;return name of #4 | ['select', 'project', 'group', 'superlative', 'project'] | train |
SPIDER_train_6616 | Show the station name with at least two trains. | return stations ;return trains of #1 ;return the number of #2 for each #1 ;return #1 where #3 is at least two ;return the names of #4 | ['select', 'project', 'group', 'comparative', 'project'] | train |
SPIDER_train_6617 | Show all locations with only 1 station. | return locations ;return stations of #1 ;return number of #2 for each #1 ;return #1 where #3 is 1 | ['select', 'project', 'group', 'comparative'] | train |
SPIDER_train_6618 | Show station names without any trains. | return stations ;return #1 without trains ;return names of #2 | ['select', 'filter', 'project'] | train |
SPIDER_train_6619 | What are the names of the stations which serve both "Ananthapuri Express" and "Guruvayur Express" trains? | return stations ;return trains #1 serve ;return #1 where #2 is Ananthapuri Express ;return #1 where #2 is Guruvayur Express ;return #1 of both #3 and #4 ;return names of #5 | ['select', 'project', 'comparative', 'comparative', 'intersection', 'project'] | train |
SPIDER_train_662 | Show the id, name of each editor and the number of journal committees they are on. | return editors ;return ids of #1 ;return names of #1 ;return journal committees of #1 ;return number of #4 for each #1 ;return #2 , #3 , #5 | ['select', 'project', 'project', 'project', 'group', 'union'] | train |
SPIDER_train_6620 | Find the names of the trains that do not pass any station located in London. | return trains ;return stations #1 pass ;return #1 where #2 is not London ;return names of #3 | ['select', 'project', 'comparative', 'project'] | train |
SPIDER_train_6621 | List the names and locations of all stations ordered by their yearly entry exit and interchange amounts. | return stations ;return names of #1 ;return locations of #1 ;return yearly entry amounts of #1 ;return yearly exit amount of #1 ;return yearly interchange amount of #1 ;return #2 , #3 ordered by #4 , #5 , #6 | ['select', 'project', 'project', 'project', 'project', 'project', 'sort'] | train |
SPIDER_train_6622 | List all vehicle id | return vehicles ;return ids of #1 | ['select', 'project'] | train |
SPIDER_train_6623 | What are the ids of all vehicles? | return vehicles ;return ids of #1 | ['select', 'project'] | train |
SPIDER_train_6624 | How many vehicle in total? | return vehicles ;return number of #1 | ['select', 'aggregate'] | train |
SPIDER_train_6625 | How many vehicles exist? | return vehicles ;return number of #1 | ['select', 'aggregate'] | train |
SPIDER_train_6626 | Show the detail of vehicle with id 1. | return vehicles ;return id of #1 ;return #1 where #2 is 1 ;return detail of #3 | ['select', 'project', 'comparative', 'project'] | train |
SPIDER_train_6627 | What are the details of the car with id 1? | return cars ;return #1 with id 1 ;return details of #2 | ['select', 'filter', 'project'] | train |
SPIDER_train_6628 | List the first name middle name and last name of all staff. | return staff ;return first name of #1 ;return middle name of #1 ;return last name of #1 ;return #2 #3 #4 | ['select', 'project', 'project', 'project', 'union'] | train |
SPIDER_train_6629 | What are the first, middle, and last names of all staff? | return staff ;return first names of #1 ;return middle names of #1 ;return last names of #1 ;return #2 , #3 , #4 | ['select', 'project', 'project', 'project', 'union'] | train |
SPIDER_train_663 | Show the names of editors that are on at least two journal committees. | return editors ;return journal committees of #1 ;return the number of #2 ;return #1 where #3 is two ;return #1 where #3 is higher than two ;return #4 , #5 ;return the names of #6 | ['select', 'project', 'aggregate', 'comparative', 'comparative', 'union', 'project'] | train |
SPIDER_train_6630 | What is the birthday of the staff member with first name as Janessa and last name as Sawayn? | return staff members ;return first names of #1 ;return #1 where #2 is Janessa ;return last names of #1 ;return #1 where #4 is Sawayn ;return #1 of both #3 and #5 ;return birthday of #6 | ['select', 'project', 'comparative', 'project', 'comparative', 'intersection', 'project'] | train |
SPIDER_train_6631 | What is the date of birth for the staff member named Janessa Sawayn? | return staff members ;return #1 named Janessa Sawayn ;return date of birth of #2 | ['select', 'filter', 'project'] | train |
SPIDER_train_6632 | When did the staff member with first name as Janessa and last name as Sawayn join the company? | return staff member ;return first name of #1 ;return #1 where #2 is Janessa ;return last name of #1 ;return #1 where #4 is Sawayn ;return #1 in both #3 and #5 ;return When #6 join company | ['select', 'project', 'comparative', 'project', 'comparative', 'intersection', 'project'] | train |
SPIDER_train_6633 | When did the staff member named Janessa Sawayn join the company? | return staff members ;return #1 named Janessa Sawayn ;return when #2 join the company | ['select', 'filter', 'project'] | train |
SPIDER_train_6634 | When did the staff member with first name as Janessa and last name as Sawayn leave the company? | return staff members ;return first names of #1 ;return #1 where #2 is Janessa ;return last names of #1 ;return #1 where #4 is Sawayn ;return #1 of both #3 and #5 ;return when did #6 leave the company | ['select', 'project', 'comparative', 'project', 'comparative', 'intersection', 'project'] | train |
SPIDER_train_6635 | When did the staff member Janessa Sawayn leave the company? | return the staff member Janessa Sawayn ;return when #1 leave the company | ['select', 'project'] | train |
SPIDER_train_6636 | How many staff have the first name Ludie? | return staff ;return first names of #1 ;return #1 where #2 is Ludie ;return number of #3 | ['select', 'project', 'comparative', 'aggregate'] | train |
SPIDER_train_6637 | How many employees have a first name of Ludie? | return employees ;return first names of #1 ;return #1 where #2 is Ludie ;return number of #3 | ['select', 'project', 'comparative', 'aggregate'] | train |
SPIDER_train_6638 | What is the nickname of staff with first name as Janessa and last name as Sawayn? | return staff ;return first names of #1 ;return #1 where #2 is Janessa ;return last names of #1 ;return #1 where #4 is Sawayn ;return nickname of both #3 and #5 | ['select', 'project', 'comparative', 'project', 'comparative', 'intersection'] | train |
SPIDER_train_6639 | What is the nickname of the employee named Janessa Sawayn? | return employees ;return #1 named Janessa Sawayn ;return nickname of #2 | ['select', 'filter', 'project'] | train |
SPIDER_train_664 | List the names of editors that are not on any journal committee. | return editors ;return #1 who are not on any journal committee ;return names of #2 | ['select', 'filter', 'project'] | train |
SPIDER_train_6640 | How many staff in total? | return staff ;return number of #1 | ['select', 'aggregate'] | train |
SPIDER_train_6641 | How many employees are there? | return employees ;return number of #1 | ['select', 'aggregate'] | train |
SPIDER_train_6642 | Which city does staff with first name as Janessa and last name as Sawayn live? | return staff ;return first names of #1 ;return #1 where #2 is Janessa ;return last names of #1 ;return #1 where #4 is Sawayn ;return #1 of both #3 and #5 ;return city of #6 | ['select', 'project', 'comparative', 'project', 'comparative', 'intersection', 'project'] | train |
SPIDER_train_6643 | In what city does Janessa Sawayn live? | return Janessa Sawayn ;return city that #1 lives in | ['select', 'project'] | train |
SPIDER_train_6644 | Which country and state does staff with first name as Janessa and last name as Sawayn lived? | return staff ;return #1 with first name Janessa ;return #2 with last name Sawayn ;return the state where #3 lived ;return the country of #4 ;return #5 , #4 | ['select', 'filter', 'filter', 'project', 'project', 'union'] | train |
SPIDER_train_6645 | In which country and state does Janessa Sawayn live? | return Janessa Sawayn ;return country of #1 ;return state of #1 ;return #2 , #3 | ['select', 'project', 'project', 'union'] | train |
SPIDER_train_6646 | How long is the total lesson time took by customer with first name as Rylan and last name as Goodwin? | return customers ;return first names of #1 ;return last names of #1 ;return #1 where #2 is Rylan ;return #1 where #3 is Goodwin ;return #1 in both #4 and #5 ;return lessons that #6 took ;return times of #7 ;return sum of #8 | ['select', 'project', 'project', 'comparative', 'comparative', 'intersection', 'project', 'project', 'aggregate'] | train |