SpiderQuestion
stringlengths 16
224
| query
stringlengths 18
577
| SpiderSynQuestion
stringlengths 19
222
| db_id
stringlengths 4
31
|
---|---|---|---|
What are the names of the scientists, and how many projects are each of them working on? | SELECT count(*) , T1.name FROM scientists AS T1 JOIN assignedto AS T2 ON T1.ssn = T2.scientist GROUP BY T1.name | What are the names of the scientists, and how many projects are each of them working on? | scientist_1 |
Find the SSN and name of scientists who are assigned to the project with the longest hours. | SELECT T3.ssn , T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT max(hours) FROM projects) | Find the SSN and name of scientists who are assigned to the project with the longest hours. | scientist_1 |
What are the SSN and names of scientists working on the project with the most hours? | SELECT T3.ssn , T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT max(hours) FROM projects) | What are the SSN and names of scientists working on the project with the most hours? | scientist_1 |
Find the name of scientists who are assigned to some project. | SELECT T2.name FROM assignedto AS T1 JOIN scientists AS T2 ON T1.scientist = T2.ssn | Find the name of scientists who are assigned to some project. | scientist_1 |
What are the names of scientists who are assigned to any project? | SELECT T2.name FROM assignedto AS T1 JOIN scientists AS T2 ON T1.scientist = T2.ssn | What are the names of scientists who are assigned to any project? | scientist_1 |
Select the project names which are not assigned yet. | SELECT Name FROM Projects WHERE Code NOT IN (SELECT Project FROM AssignedTo) | Select the project names which are not assigned yet. | scientist_1 |
What are the names of projects that have not been assigned? | SELECT Name FROM Projects WHERE Code NOT IN (SELECT Project FROM AssignedTo) | What are the names of projects that have not been assigned? | scientist_1 |
Find the name of scientists who are not assigned to any project. | SELECT Name FROM scientists WHERE ssn NOT IN (SELECT scientist FROM AssignedTo) | Find the name of scientists who are not assigned to any project. | scientist_1 |
What are the names of scientists who have not been assigned a project? | SELECT Name FROM scientists WHERE ssn NOT IN (SELECT scientist FROM AssignedTo) | What are the names of scientists who have not been assigned a project? | scientist_1 |
Find the number of scientists who are not assigned to any project. | SELECT count(*) FROM scientists WHERE ssn NOT IN (SELECT scientist FROM AssignedTo) | Find the number of scientists who are not assigned to any project. | scientist_1 |
How many scientists do not have any projects assigned to them? | SELECT count(*) FROM scientists WHERE ssn NOT IN (SELECT scientist FROM AssignedTo) | How many scientists do not have any projects assigned to them? | scientist_1 |
Find the names of scientists who are not working on the project with the highest hours. | SELECT name FROM scientists EXCEPT SELECT T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT max(hours) FROM projects) | Find the names of scientists who are not working on the project with the highest hours. | scientist_1 |
What are the names of scientists who are not working on the project with the most hours? | SELECT name FROM scientists EXCEPT SELECT T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT max(hours) FROM projects) | What are the names of scientists who are not working on the project with the most hours? | scientist_1 |
List all the scientists' names, their projects' names, and the hours worked by that scientist on each project, in alphabetical order of project name, and then scientist name. | SELECT T1.Name , T3.Name , T3.Hours FROM Scientists AS T1 JOIN AssignedTo AS T2 ON T1.SSN = T2.Scientist JOIN Projects AS T3 ON T2.Project = T3.Code ORDER BY T3.Name , T1.Name | List all the scientists' names, their projects' names, and the hours worked by that scientist on each project, in alphabetical order of project name, and then scientist name. | scientist_1 |
What are the names of each scientist, the names of the projects that they work on, and the hours for each of those projects, listed in alphabetical order by project name, then scientist name. | SELECT T1.Name , T3.Name , T3.Hours FROM Scientists AS T1 JOIN AssignedTo AS T2 ON T1.SSN = T2.Scientist JOIN Projects AS T3 ON T2.Project = T3.Code ORDER BY T3.Name , T1.Name | What are the names of each scientist, the names of the projects that they work on, and the hours for each of those projects, listed in alphabetical order by project name, then scientist name. | scientist_1 |
Find name of the project that needs the least amount of time to finish and the name of scientists who worked on it. | SELECT T2.name , T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT min(hours) FROM projects) | Find name of the project that needs the least amount of time to finish and the name of scientists who worked on it. | scientist_1 |
What is the name of the project that requires the fewest number of hours, and the names of the scientists assigned to it? | SELECT T2.name , T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT min(hours) FROM projects) | What is the name of the project that requires the fewest number of hours, and the names of the scientists assigned to it? | scientist_1 |
What is the name of the highest rated wine? | SELECT Name FROM WINE ORDER BY Score LIMIT 1 | What is the name of the highest rated alcoholic drink? | wine_1 |
Give the name of the wine with the highest score. | SELECT Name FROM WINE ORDER BY Score LIMIT 1 | Give the name of the alcoholic drink with the highest score. | wine_1 |
Which winery is the wine that has the highest score from? | SELECT Winery FROM WINE ORDER BY SCORE LIMIT 1 | Which wine-making establishment is the alcoholic drink that has the highest score from? | wine_1 |
What is the winery at which the wine with the highest score was made? | SELECT Winery FROM WINE ORDER BY SCORE LIMIT 1 | What is the wine-making establishment at which the alcoholic drink with the highest score was made? | wine_1 |
Find the names of all wines produced in 2008. | SELECT Name FROM WINE WHERE YEAR = "2008" | Find the names of all alcoholic drink produced in 2008. | wine_1 |
What are the names of all wines produced in 2008? | SELECT Name FROM WINE WHERE YEAR = "2008" | What are the names of all alcoholic drink produced in 2008? | wine_1 |
List the grapes and appelations of all wines. | SELECT Grape , Appelation FROM WINE | List the grapes and grown places of all wines. | wine_1 |
What are the grapes and appelations of each wine? | SELECT Grape , Appelation FROM WINE | What are the grapes and grown places of each wine? | wine_1 |
List the names and scores of all wines. | SELECT Name , Score FROM WINE | List the names and scores of all alcoholic drink. | wine_1 |
What are the names and scores of all wines? | SELECT Name , Score FROM WINE | What are the names and scores of all alcoholic drink? | wine_1 |
List the area and county of all appelations. | SELECT Area , County FROM APPELLATIONS | List the district and county of all grown places. | wine_1 |
What are the areas and counties for all appelations? | SELECT Area , County FROM APPELLATIONS | What are the districts and counties for all grown places? | wine_1 |
What are the prices of wines produced before the year of 2010? | SELECT Price FROM WINE WHERE YEAR < 2010 | What are the prices of alcoholic drink produced before the year of 2010? | wine_1 |
Return the prices of wines produced before 2010. | SELECT Price FROM WINE WHERE YEAR < 2010 | Return the prices of alcoholic drink produced before 2010. | wine_1 |
List the names of all distinct wines that have scores higher than 90. | SELECT Name FROM WINE WHERE score > 90 | List the names of all different alcoholic drink that have scores higher than 90. | wine_1 |
What are the names of wines with scores higher than 90? | SELECT Name FROM WINE WHERE score > 90 | What are the names of alcoholic drink with scores higher than 90? | wine_1 |
List the names of all distinct wines that are made of red color grape. | SELECT DISTINCT T2.Name FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "Red" | List the names of all different alcoholic drink that are made of red color grape. | wine_1 |
What are the names of wines made from red grapes? | SELECT DISTINCT T2.Name FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "Red" | What are the names of alcoholic drink made from red grapes? | wine_1 |
Find the names of all distinct wines that have appellations in North Coast area. | SELECT DISTINCT T2.Name FROM APPELLATIONs AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = "North Coast" | Find the names of all different alcoholic drink that have appellations in North Coast area. | wine_1 |
What are the distinct names of wines that have appellations in the North Coast area? | SELECT DISTINCT T2.Name FROM APPELLATIONs AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = "North Coast" | What are the different names of alcoholic drink that have appellations in the North Coast area? | wine_1 |
How many wines are produced at Robert Biale winery? | SELECT count(*) FROM WINE WHERE Winery = "Robert Biale" | How many alcoholic drink are produced at Robert Biale winery? | wine_1 |
Count the number of wines produced at Robert Biale winery. | SELECT count(*) FROM WINE WHERE Winery = "Robert Biale" | Count the number of alcoholic drink produced at Robert Biale winery. | wine_1 |
How many appelations are in Napa Country? | SELECT count(*) FROM APPELLATIONS WHERE County = "Napa" | How many grown places are in Napa Country? | wine_1 |
Count the number of appelations in Napa County. | SELECT count(*) FROM APPELLATIONS WHERE County = "Napa" | Count the number of grown places in Napa County. | wine_1 |
Give me the average prices of wines that are produced by appelations in Sonoma County. | SELECT AVG(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Sonoma" | Give me the average prices of wines that are produced by grown places in Sonoma County. | wine_1 |
What is the average price of wines produced in appelations in Sonoma County? | SELECT AVG(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Sonoma" | What is the average price of wines produced in grown places in Sonoma County? | wine_1 |
What are the names and scores of wines that are made of white color grapes? | SELECT T2.Name , T2.Score FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "White" | What are the names and scores of wines that are made of white color grapes? | wine_1 |
Give the names and scores of wines made from white grapes. | SELECT T2.Name , T2.Score FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "White" | Give the names and scores of wines made from white grapes. | wine_1 |
Find the maximum price of wins from the appelations in Central Coast area and produced before the year of 2005. | SELECT max(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = "Central Coast" AND T2.year < 2005 | Find the maximum price of wins from the grown places in Central Coast area and produced before the year of 2005. | wine_1 |
What is the maximum price of wines from the appelation in the Central Coast area, which was produced before 2005? | SELECT max(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = "Central Coast" AND T2.year < 2005 | What is the maximum price of wines from the grown place in the Central Coast area, which was produced before 2005? | wine_1 |
Find the the grape whose white color grapes are used to produce wines with scores higher than 90. | SELECT DISTINCT T1.Grape FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "White" AND T2.score > 90 | Find the the grape whose white color grapes are used to produce wines with scores higher than 90. | wine_1 |
Find the white grape used to produce wines with scores above 90. | SELECT DISTINCT T1.Grape FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "White" AND T2.score > 90 | Find the white grape used to produce wines with scores above 90. | wine_1 |
What are the wines that have prices higher than 50 and made of Red color grapes? | SELECT T2.Name FROM Grapes AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "Red" AND T2.price > 50 | What are the wines that have prices higher than 50 and made of Red color grapes? | wine_1 |
What are the names of wines made from red grapes and with prices above 50? | SELECT T2.Name FROM Grapes AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "Red" AND T2.price > 50 | What are the names of wines made from red grapes and with prices above 50? | wine_1 |
What are the wines that have prices lower than 50 and have appelations in Monterey county? | SELECT T2.Name FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Monterey" AND T2.price < 50 | What are the wines that have prices lower than 50 and have grown places in Monterey county? | wine_1 |
Give the neames of wines with prices below 50 and with appelations in Monterey county. | SELECT T2.Name FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Monterey" AND T2.price < 50 | Give the neames of wines with prices below 50 and with grown places in Monterey county. | wine_1 |
What are the numbers of wines for different grapes? | SELECT count(*) , Grape FROM WINE GROUP BY Grape | What are the numbers of alcoholic drink for different grapes? | wine_1 |
How many wines are there for each grape? | SELECT count(*) , Grape FROM WINE GROUP BY Grape | How many alcoholic drink are there for each grape? | wine_1 |
What are the average prices of wines for different years? | SELECT avg(Price) , YEAR FROM WINE GROUP BY YEAR | What are the average prices of alcoholic drink for different years? | wine_1 |
What is the average prices of wines for each each? | SELECT avg(Price) , YEAR FROM WINE GROUP BY YEAR | What is the average prices of alcoholic drink for each each? | wine_1 |
Find the distinct names of all wines that have prices higher than some wines from John Anthony winery. | SELECT DISTINCT Name FROM WINE WHERE Price > (SELECT min(Price) FROM wine WHERE Winery = "John Anthony") | Find the different names of all alcoholic drink that have prices higher than some alcoholic drink from John Anthony winery. | wine_1 |
What are the distinct names of wines with prices higher than any wine from John Anthony winery. | SELECT DISTINCT Name FROM WINE WHERE Price > (SELECT min(Price) FROM wine WHERE Winery = "John Anthony") | What are the different names of alcoholic drink with prices higher than any alcoholic drink from John Anthony winery. | wine_1 |
List the names of all distinct wines in alphabetical order. | SELECT DISTINCT Name FROM WINE ORDER BY Name | List the names of all different alcoholic drink in alphabetical order. | wine_1 |
What are the names of wines, sorted in alphabetical order? | SELECT DISTINCT Name FROM WINE ORDER BY Name | What are the names of alcoholic drink, sorted in alphabetical order? | wine_1 |
List the names of all distinct wines ordered by price. | SELECT DISTINCT Name FROM WINE ORDER BY price | List the names of all different alcoholic drink ordered by price. | wine_1 |
What are the names of wines, sorted by price ascending? | SELECT DISTINCT Name FROM WINE ORDER BY price | What are the names of alcoholic drink, sorted by price ascending? | wine_1 |
What is the area of the appelation that produces the highest number of wines before the year of 2010? | SELECT T1.Area FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation GROUP BY T2.Appelation HAVING T2.year < 2010 ORDER BY count(*) DESC LIMIT 1 | What is the district of the grown place that produces the highest number of wines before the year of 2010? | wine_1 |
What is the area for the appelation which produced the most wines prior to 2010? | SELECT T1.Area FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation GROUP BY T2.Appelation HAVING T2.year < 2010 ORDER BY count(*) DESC LIMIT 1 | What is the district for the grown place which produced the most wines prior to 2010? | wine_1 |
What is the color of the grape whose wine products has the highest average price? | SELECT T1.Color FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape GROUP BY T2.Grape ORDER BY AVG(Price) DESC LIMIT 1 | What is the colour of the grape whose wine products has the highest average price? | wine_1 |
Give the color of the grape whose wine products have the highest average price? | SELECT T1.Color FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape GROUP BY T2.Grape ORDER BY AVG(Price) DESC LIMIT 1 | Give the colour of the grape whose wine products have the highest average price? | wine_1 |
Find the distinct names of wines produced before the year of 2000 or after the year of 2010. | SELECT DISTINCT Name FROM WINE WHERE YEAR < 2000 OR YEAR > 2010 | Find the different names of alcoholic drink produced before the year of 2000 or after the year of 2010. | wine_1 |
Give the distinct names of wines made before 2000 or after 2010. | SELECT DISTINCT Name FROM WINE WHERE YEAR < 2000 OR YEAR > 2010 | Give the different names of alcoholic drink made before 2000 or after 2010. | wine_1 |
Find the distinct winery of wines having price between 50 and 100. | SELECT DISTINCT Winery FROM WINE WHERE Price BETWEEN 50 AND 100 | Find the different wine-making establishment of wines having price between 50 and 100. | wine_1 |
What are the distinct wineries which produce wines costing between 50 and 100? | SELECT DISTINCT Winery FROM WINE WHERE Price BETWEEN 50 AND 100 | What are the different wine-making establishment which produce wines costing between 50 and 100? | wine_1 |
What are the average prices and cases of wines produced in the year of 2009 and made of Zinfandel grape? | SELECT AVG(Price) , AVG(Cases) FROM WINE WHERE YEAR = 2009 AND Grape = "Zinfandel" | What are the average prices and cases of wines produced in the year of 2009 and made of Zinfandel grape? | wine_1 |
Give the average price and case of wines made from Zinfandel grapes in the year 2009. | SELECT AVG(Price) , AVG(Cases) FROM WINE WHERE YEAR = 2009 AND Grape = "Zinfandel" | Give the average price and case of wines made from Zinfandel grapes in the year 2009. | wine_1 |
What are the maximum price and score of wines produced by St. Helena appelation? | SELECT max(Price) , max(Score) FROM WINE WHERE Appelation = "St. Helena" | What are the maximum price and score of alcoholic drink produced by St. Helena appelation? | wine_1 |
Give the maximum price and score for wines produced in the appelation St. Helena. | SELECT max(Price) , max(Score) FROM WINE WHERE Appelation = "St. Helena" | Give the maximum price and score for alcoholic drink produced in the appelation St. Helena. | wine_1 |
What are the maximum price and score of wines in each year? | SELECT max(Price) , max(Score) , YEAR FROM WINE GROUP BY YEAR | What are the maximum price and score of alcoholic drink in each year? | wine_1 |
What are the maximum price and score of wines for each year? | SELECT max(Price) , max(Score) , YEAR FROM WINE GROUP BY YEAR | What are the maximum price and score of alcoholic drink for each year? | wine_1 |
What are the average price and score of wines grouped by appelation? | SELECT avg(Price) , avg(Score) , Appelation FROM WINE GROUP BY Appelation | What are the average price and score of alcoholic drink grouped by grown place? | wine_1 |
What are the average price and score of wines for each appelation? | SELECT avg(Price) , avg(Score) , Appelation FROM WINE GROUP BY Appelation | What are the average price and score of alcoholic drink for each grown place? | wine_1 |
Find the wineries that have at least four wines. | SELECT Winery FROM WINE GROUP BY Winery HAVING count(*) >= 4 | Find the wine-making establishment that have at least four wines. | wine_1 |
Which wineries produce at least four wines? | SELECT Winery FROM WINE GROUP BY Winery HAVING count(*) >= 4 | Which wine-making establishment produce at least four wines? | wine_1 |
Find the country of all appelations who have at most three wines. | SELECT T1.County FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation GROUP BY T2.Appelation HAVING count(*) <= 3 | Find the nation of all grown places who have at most three wines. | wine_1 |
What are the countries for appelations with at most 3 wines? | SELECT T1.County FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation GROUP BY T2.Appelation HAVING count(*) <= 3 | What are the nations for grown places with at most 3 wines? | wine_1 |
What are the names of wines whose production year are before the year of all wines by Brander winery? | SELECT Name FROM WINE WHERE YEAR < (SELECT min(YEAR) FROM WINE WHERE Winery = "Brander") | What are the names of alcoholic drink whose production year are before the year of all alcoholic drink by Brander winery? | wine_1 |
What are the names of wines produced before any wine from the Brander winery? | SELECT Name FROM WINE WHERE YEAR < (SELECT min(YEAR) FROM WINE WHERE Winery = "Brander") | What are the names of alcoholic drink produced before any alcoholic drink from the Brander winery? | wine_1 |
What are the names of wines that are more expensive then all wines made in the year 2006? | SELECT Name FROM WINE WHERE Price > (SELECT max(Price) FROM WINE WHERE YEAR = 2006) | What are the names of alcoholic drink that are more expensive then all alcoholic drink made in the year 2006? | wine_1 |
Give the names of wines with prices above any wine produced in 2006. | SELECT Name FROM WINE WHERE Price > (SELECT max(Price) FROM WINE WHERE YEAR = 2006) | Give the names of alcoholic drink with prices above any alcoholic drink produced in 2006. | wine_1 |
Find the top 3 wineries with the greatest number of wines made of white color grapes. | SELECT T2.Winery FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.GRAPE = T2.GRAPE WHERE T1.Color = "White" GROUP BY T2.Winery ORDER BY count(*) DESC LIMIT 3 | Find the top 3 wine-making establishment with the greatest number of wines made of white color grapes. | wine_1 |
Which 3 wineries produce the most wines made from white grapes? | SELECT T2.Winery FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.GRAPE = T2.GRAPE WHERE T1.Color = "White" GROUP BY T2.Winery ORDER BY count(*) DESC LIMIT 3 | Which 3 wine-making establishment produce the most wines made from white grapes? | wine_1 |
List the grape, winery and year of the wines whose price is bigger than 100 ordered by year. | SELECT Grape , Winery , YEAR FROM WINE WHERE Price > 100 ORDER BY YEAR | List the grape, wine-making establishment and year of the wines whose price is bigger than 100 ordered by year. | wine_1 |
What are the grapes, wineries and years for wines with price higher than 100, sorted by year? | SELECT Grape , Winery , YEAR FROM WINE WHERE Price > 100 ORDER BY YEAR | What are the grapes, wine-making establishment and years for wines with price higher than 100, sorted by year? | wine_1 |
List the grape, appelation and name of wines whose score is higher than 93 ordered by Name. | SELECT Grape , Appelation , Name FROM WINE WHERE Score > 93 ORDER BY Name | List the grape, grown place and name of wines whose score is higher than 93 ordered by Name. | wine_1 |
What are the grapes, appelations, and wines with scores above 93, sorted by Name? | SELECT Grape , Appelation , Name FROM WINE WHERE Score > 93 ORDER BY Name | What are the grapes, grown places, and wines with scores above 93, sorted by Name? | wine_1 |
Find the appelations that produce wines after the year of 2008 but not in Central Coast area. | SELECT Appelation FROM WINE WHERE YEAR > 2008 EXCEPT SELECT Appelation FROM APPELLATIONS WHERE Area = "Central Coast" | Find the grown places that produce wines after the year of 2008 but not in Central Coast area. | wine_1 |
What are the appelations for wines produced after 2008 but not in the Central Coast area? | SELECT Appelation FROM WINE WHERE YEAR > 2008 EXCEPT SELECT Appelation FROM APPELLATIONS WHERE Area = "Central Coast" | What are the grown places for wines produced after 2008 but not in the Central Coast area? | wine_1 |
Find the average price of wines that are not produced from Sonoma county. | SELECT avg(price) FROM wine WHERE Appelation NOT IN (SELECT T1.Appelation FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = 'Sonoma') | Find the average price of alcoholic drink that are not produced from Sonoma county. | wine_1 |
What is the average price for wines not produced in Sonoma county? | SELECT avg(price) FROM wine WHERE Appelation NOT IN (SELECT T1.Appelation FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = 'Sonoma') | What is the average price for alcoholic drink not produced in Sonoma county? | wine_1 |
Find the county where produces the most number of wines with score higher than 90. | SELECT T1.County FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T2.Score > 90 GROUP BY T1.County ORDER BY count(*) DESC LIMIT 1 | Find the county where produces the most number of wines with score higher than 90. | wine_1 |
What is the county that produces the most wines scoring higher than 90? | SELECT T1.County FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T2.Score > 90 GROUP BY T1.County ORDER BY count(*) DESC LIMIT 1 | What is the county that produces the most wines scoring higher than 90? | wine_1 |
How many train stations are there? | SELECT count(*) FROM station | How many train terminals are there? | train_station |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.