question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which winery is the wine that has the highest score from?
CREATE TABLE WINE (Winery VARCHAR, SCORE VARCHAR)
SELECT Winery FROM WINE ORDER BY SCORE LIMIT 1
### Context: CREATE TABLE WINE (Winery VARCHAR, SCORE VARCHAR) ### Question: Which winery is the wine that has the highest score from? ### Answer: SELECT Winery FROM WINE ORDER BY SCORE LIMIT 1
Find the names of all wines produced in 2008.
CREATE TABLE WINE (Name VARCHAR, YEAR VARCHAR)
SELECT Name FROM WINE WHERE YEAR = "2008"
### Context: CREATE TABLE WINE (Name VARCHAR, YEAR VARCHAR) ### Question: Find the names of all wines produced in 2008. ### Answer: SELECT Name FROM WINE WHERE YEAR = "2008"
List the grapes and appelations of all wines.
CREATE TABLE WINE (Grape VARCHAR, Appelation VARCHAR)
SELECT Grape, Appelation FROM WINE
### Context: CREATE TABLE WINE (Grape VARCHAR, Appelation VARCHAR) ### Question: List the grapes and appelations of all wines. ### Answer: SELECT Grape, Appelation FROM WINE
List the names and scores of all wines.
CREATE TABLE WINE (Name VARCHAR, Score VARCHAR)
SELECT Name, Score FROM WINE
### Context: CREATE TABLE WINE (Name VARCHAR, Score VARCHAR) ### Question: List the names and scores of all wines. ### Answer: SELECT Name, Score FROM WINE
List the area and county of all appelations.
CREATE TABLE APPELLATIONS (Area VARCHAR, County VARCHAR)
SELECT Area, County FROM APPELLATIONS
### Context: CREATE TABLE APPELLATIONS (Area VARCHAR, County VARCHAR) ### Question: List the area and county of all appelations. ### Answer: SELECT Area, County FROM APPELLATIONS
What are the prices of wines produced before the year of 2010?
CREATE TABLE WINE (Price VARCHAR, YEAR INTEGER)
SELECT Price FROM WINE WHERE YEAR < 2010
### Context: CREATE TABLE WINE (Price VARCHAR, YEAR INTEGER) ### Question: What are the prices of wines produced before the year of 2010? ### Answer: SELECT Price FROM WINE WHERE YEAR < 2010
List the names of all distinct wines that have scores higher than 90.
CREATE TABLE WINE (Name VARCHAR, score INTEGER)
SELECT Name FROM WINE WHERE score > 90
### Context: CREATE TABLE WINE (Name VARCHAR, score INTEGER) ### Question: List the names of all distinct wines that have scores higher than 90. ### Answer: SELECT Name FROM WINE WHERE score > 90
List the names of all distinct wines that are made of red color grape.
CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Name VARCHAR, Grape VARCHAR)
SELECT DISTINCT T2.Name FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "Red"
### Context: CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Name VARCHAR, Grape VARCHAR) ### Question: List the names of all distinct wines that are made of red color grape. ### Answer: SELECT DISTINCT T2.Name FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "Red"
Find the names of all distinct wines that have appellations in North Coast area.
CREATE TABLE APPELLATIONs (Appelation VARCHAR, Area VARCHAR); CREATE TABLE WINE (Name VARCHAR, Appelation VARCHAR)
SELECT DISTINCT T2.Name FROM APPELLATIONs AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = "North Coast"
### Context: CREATE TABLE APPELLATIONs (Appelation VARCHAR, Area VARCHAR); CREATE TABLE WINE (Name VARCHAR, Appelation VARCHAR) ### Question: Find the names of all distinct wines that have appellations in North Coast area. ### Answer: SELECT DISTINCT T2.Name FROM APPELLATIONs AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = "North Coast"
How many wines are produced at Robert Biale winery?
CREATE TABLE WINE (Winery VARCHAR)
SELECT COUNT(*) FROM WINE WHERE Winery = "Robert Biale"
### Context: CREATE TABLE WINE (Winery VARCHAR) ### Question: How many wines are produced at Robert Biale winery? ### Answer: SELECT COUNT(*) FROM WINE WHERE Winery = "Robert Biale"
How many appelations are in Napa Country?
CREATE TABLE APPELLATIONS (County VARCHAR)
SELECT COUNT(*) FROM APPELLATIONS WHERE County = "Napa"
### Context: CREATE TABLE APPELLATIONS (County VARCHAR) ### Question: How many appelations are in Napa Country? ### Answer: SELECT COUNT(*) FROM APPELLATIONS WHERE County = "Napa"
Give me the average prices of wines that are produced by appelations in Sonoma County.
CREATE TABLE WINE (Price INTEGER, Appelation VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR)
SELECT AVG(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Sonoma"
### Context: CREATE TABLE WINE (Price INTEGER, Appelation VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR) ### Question: Give me the average prices of wines that are produced by appelations in Sonoma County. ### Answer: SELECT AVG(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Sonoma"
What are the names and scores of wines that are made of white color grapes?
CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Name VARCHAR, Score VARCHAR, Grape VARCHAR)
SELECT T2.Name, T2.Score FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "White"
### Context: CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Name VARCHAR, Score VARCHAR, Grape VARCHAR) ### Question: What are the names and scores of wines that are made of white color grapes? ### Answer: SELECT T2.Name, T2.Score FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "White"
Find the maximum price of wins from the appelations in Central Coast area and produced before the year of 2005.
CREATE TABLE APPELLATIONS (Appelation VARCHAR, Area VARCHAR); CREATE TABLE WINE (Price INTEGER, Appelation VARCHAR, year VARCHAR)
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
### Context: CREATE TABLE APPELLATIONS (Appelation VARCHAR, Area VARCHAR); CREATE TABLE WINE (Price INTEGER, Appelation VARCHAR, year VARCHAR) ### Question: Find the maximum price of wins from the appelations in Central Coast area and produced before the year of 2005. ### Answer: 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 the grape whose white color grapes are used to produce wines with scores higher than 90.
CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Grape VARCHAR, score VARCHAR)
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
### Context: CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Grape VARCHAR, score VARCHAR) ### Question: Find the the grape whose white color grapes are used to produce wines with scores higher than 90. ### Answer: 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
What are the wines that have prices higher than 50 and made of Red color grapes?
CREATE TABLE WINE (Name VARCHAR, Grape VARCHAR, price VARCHAR); CREATE TABLE Grapes (Grape VARCHAR, Color VARCHAR)
SELECT T2.Name FROM Grapes AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "Red" AND T2.price > 50
### Context: CREATE TABLE WINE (Name VARCHAR, Grape VARCHAR, price VARCHAR); CREATE TABLE Grapes (Grape VARCHAR, Color VARCHAR) ### Question: What are the wines that have prices higher than 50 and made of Red color grapes? ### Answer: 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 lower than 50 and have appelations in Monterey county?
CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR); CREATE TABLE WINE (Name VARCHAR, Appelation VARCHAR, price VARCHAR)
SELECT T2.Name FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Monterey" AND T2.price < 50
### Context: CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR); CREATE TABLE WINE (Name VARCHAR, Appelation VARCHAR, price VARCHAR) ### Question: What are the wines that have prices lower than 50 and have appelations in Monterey county? ### Answer: 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 numbers of wines for different grapes?
CREATE TABLE WINE (Grape VARCHAR)
SELECT COUNT(*), Grape FROM WINE GROUP BY Grape
### Context: CREATE TABLE WINE (Grape VARCHAR) ### Question: What are the numbers of wines for different grapes? ### Answer: SELECT COUNT(*), Grape FROM WINE GROUP BY Grape
What are the average prices of wines for different years?
CREATE TABLE WINE (YEAR VARCHAR, Price INTEGER)
SELECT AVG(Price), YEAR FROM WINE GROUP BY YEAR
### Context: CREATE TABLE WINE (YEAR VARCHAR, Price INTEGER) ### Question: What are the average prices of wines for different years? ### Answer: SELECT AVG(Price), YEAR FROM WINE GROUP BY YEAR
Find the distinct names of all wines that have prices higher than some wines from John Anthony winery.
CREATE TABLE wine (Name VARCHAR, Price INTEGER, Winery VARCHAR); CREATE TABLE WINE (Name VARCHAR, Price INTEGER, Winery VARCHAR)
SELECT DISTINCT Name FROM WINE WHERE Price > (SELECT MIN(Price) FROM wine WHERE Winery = "John Anthony")
### Context: CREATE TABLE wine (Name VARCHAR, Price INTEGER, Winery VARCHAR); CREATE TABLE WINE (Name VARCHAR, Price INTEGER, Winery VARCHAR) ### Question: Find the distinct names of all wines that have prices higher than some wines from John Anthony winery. ### Answer: SELECT DISTINCT Name FROM WINE WHERE Price > (SELECT MIN(Price) FROM wine WHERE Winery = "John Anthony")
List the names of all distinct wines in alphabetical order.
CREATE TABLE WINE (Name VARCHAR)
SELECT DISTINCT Name FROM WINE ORDER BY Name
### Context: CREATE TABLE WINE (Name VARCHAR) ### Question: List the names of all distinct wines in alphabetical order. ### Answer: SELECT DISTINCT Name FROM WINE ORDER BY Name
List the names of all distinct wines ordered by price.
CREATE TABLE WINE (Name VARCHAR, price VARCHAR)
SELECT DISTINCT Name FROM WINE ORDER BY price
### Context: CREATE TABLE WINE (Name VARCHAR, price VARCHAR) ### Question: List the names of all distinct wines ordered by price. ### Answer: SELECT DISTINCT Name FROM WINE ORDER BY price
What is the area of the appelation that produces the highest number of wines before the year of 2010?
CREATE TABLE WINE (Appelation VARCHAR, year VARCHAR); CREATE TABLE APPELLATIONS (Area VARCHAR, Appelation VARCHAR)
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
### Context: CREATE TABLE WINE (Appelation VARCHAR, year VARCHAR); CREATE TABLE APPELLATIONS (Area VARCHAR, Appelation VARCHAR) ### Question: What is the area of the appelation that produces the highest number of wines before the year of 2010? ### Answer: 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 color of the grape whose wine products has the highest average price?
CREATE TABLE GRAPES (Color VARCHAR, Grape VARCHAR); CREATE TABLE WINE (Grape VARCHAR)
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
### Context: CREATE TABLE GRAPES (Color VARCHAR, Grape VARCHAR); CREATE TABLE WINE (Grape VARCHAR) ### Question: What is the color of the grape whose wine products has the highest average price? ### Answer: 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
Find the distinct names of wines produced before the year of 2000 or after the year of 2010.
CREATE TABLE WINE (Name VARCHAR, YEAR VARCHAR)
SELECT DISTINCT Name FROM WINE WHERE YEAR < 2000 OR YEAR > 2010
### Context: CREATE TABLE WINE (Name VARCHAR, YEAR VARCHAR) ### Question: Find the distinct names of wines produced before the year of 2000 or after the year of 2010. ### Answer: SELECT DISTINCT Name FROM WINE WHERE YEAR < 2000 OR YEAR > 2010
Find the distinct winery of wines having price between 50 and 100.
CREATE TABLE WINE (Winery VARCHAR, Price INTEGER)
SELECT DISTINCT Winery FROM WINE WHERE Price BETWEEN 50 AND 100
### Context: CREATE TABLE WINE (Winery VARCHAR, Price INTEGER) ### Question: Find the distinct winery of wines having price between 50 and 100. ### Answer: SELECT DISTINCT Winery FROM WINE WHERE Price BETWEEN 50 AND 100
What are the average prices and cases of wines produced in the year of 2009 and made of Zinfandel grape?
CREATE TABLE WINE (Price INTEGER, Cases INTEGER, YEAR VARCHAR, Grape VARCHAR)
SELECT AVG(Price), AVG(Cases) FROM WINE WHERE YEAR = 2009 AND Grape = "Zinfandel"
### Context: CREATE TABLE WINE (Price INTEGER, Cases INTEGER, YEAR VARCHAR, Grape VARCHAR) ### Question: What are the average prices and cases of wines produced in the year of 2009 and made of Zinfandel grape? ### Answer: SELECT AVG(Price), AVG(Cases) FROM WINE WHERE YEAR = 2009 AND Grape = "Zinfandel"
What are the maximum price and score of wines produced by St. Helena appelation?
CREATE TABLE WINE (Price INTEGER, Score INTEGER, Appelation VARCHAR)
SELECT MAX(Price), MAX(Score) FROM WINE WHERE Appelation = "St. Helena"
### Context: CREATE TABLE WINE (Price INTEGER, Score INTEGER, Appelation VARCHAR) ### Question: What are the maximum price and score of wines produced by St. Helena appelation? ### Answer: SELECT MAX(Price), MAX(Score) FROM WINE WHERE Appelation = "St. Helena"
What are the maximum price and score of wines in each year?
CREATE TABLE WINE (YEAR VARCHAR, Price INTEGER, Score INTEGER)
SELECT MAX(Price), MAX(Score), YEAR FROM WINE GROUP BY YEAR
### Context: CREATE TABLE WINE (YEAR VARCHAR, Price INTEGER, Score INTEGER) ### Question: What are the maximum price and score of wines in each year? ### Answer: SELECT MAX(Price), MAX(Score), YEAR FROM WINE GROUP BY YEAR
What are the average price and score of wines grouped by appelation?
CREATE TABLE WINE (Appelation VARCHAR, Price INTEGER, Score INTEGER)
SELECT AVG(Price), AVG(Score), Appelation FROM WINE GROUP BY Appelation
### Context: CREATE TABLE WINE (Appelation VARCHAR, Price INTEGER, Score INTEGER) ### Question: What are the average price and score of wines grouped by appelation? ### Answer: SELECT AVG(Price), AVG(Score), Appelation FROM WINE GROUP BY Appelation
Find the wineries that have at least four wines.
CREATE TABLE WINE (Winery VARCHAR)
SELECT Winery FROM WINE GROUP BY Winery HAVING COUNT(*) >= 4
### Context: CREATE TABLE WINE (Winery VARCHAR) ### Question: Find the wineries that have at least four wines. ### Answer: SELECT Winery FROM WINE GROUP BY Winery HAVING COUNT(*) >= 4
Find the country of all appelations who have at most three wines.
CREATE TABLE APPELLATIONS (County VARCHAR, Appelation VARCHAR); CREATE TABLE WINE (Appelation VARCHAR)
SELECT T1.County FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation GROUP BY T2.Appelation HAVING COUNT(*) <= 3
### Context: CREATE TABLE APPELLATIONS (County VARCHAR, Appelation VARCHAR); CREATE TABLE WINE (Appelation VARCHAR) ### Question: Find the country of all appelations who have at most three wines. ### Answer: 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 names of wines whose production year are before the year of all wines by Brander winery?
CREATE TABLE WINE (Name VARCHAR, YEAR INTEGER, Winery VARCHAR)
SELECT Name FROM WINE WHERE YEAR < (SELECT MIN(YEAR) FROM WINE WHERE Winery = "Brander")
### Context: CREATE TABLE WINE (Name VARCHAR, YEAR INTEGER, Winery VARCHAR) ### Question: What are the names of wines whose production year are before the year of all wines by Brander winery? ### Answer: SELECT Name FROM WINE WHERE YEAR < (SELECT MIN(YEAR) FROM WINE WHERE Winery = "Brander")
What are the names of wines that are more expensive then all wines made in the year 2006?
CREATE TABLE WINE (Name VARCHAR, Price INTEGER, YEAR VARCHAR)
SELECT Name FROM WINE WHERE Price > (SELECT MAX(Price) FROM WINE WHERE YEAR = 2006)
### Context: CREATE TABLE WINE (Name VARCHAR, Price INTEGER, YEAR VARCHAR) ### Question: What are the names of wines that are more expensive then all wines made in the year 2006? ### Answer: SELECT Name FROM WINE WHERE Price > (SELECT MAX(Price) FROM WINE WHERE YEAR = 2006)
Find the top 3 wineries with the greatest number of wines made of white color grapes.
CREATE TABLE GRAPES (GRAPE VARCHAR, Color VARCHAR); CREATE TABLE WINE (Winery VARCHAR, GRAPE VARCHAR)
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
### Context: CREATE TABLE GRAPES (GRAPE VARCHAR, Color VARCHAR); CREATE TABLE WINE (Winery VARCHAR, GRAPE VARCHAR) ### Question: Find the top 3 wineries with the greatest number of wines made of white color grapes. ### Answer: 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
List the grape, winery and year of the wines whose price is bigger than 100 ordered by year.
CREATE TABLE WINE (Grape VARCHAR, Winery VARCHAR, YEAR VARCHAR, Price INTEGER)
SELECT Grape, Winery, YEAR FROM WINE WHERE Price > 100 ORDER BY YEAR
### Context: CREATE TABLE WINE (Grape VARCHAR, Winery VARCHAR, YEAR VARCHAR, Price INTEGER) ### Question: List the grape, winery and year of the wines whose price is bigger than 100 ordered by year. ### Answer: SELECT Grape, Winery, YEAR FROM WINE WHERE Price > 100 ORDER BY YEAR
List the grape, appelation and name of wines whose score is higher than 93 ordered by Name.
CREATE TABLE WINE (Grape VARCHAR, Appelation VARCHAR, Name VARCHAR, Score INTEGER)
SELECT Grape, Appelation, Name FROM WINE WHERE Score > 93 ORDER BY Name
### Context: CREATE TABLE WINE (Grape VARCHAR, Appelation VARCHAR, Name VARCHAR, Score INTEGER) ### Question: List the grape, appelation and name of wines whose score is higher than 93 ordered by Name. ### Answer: SELECT Grape, Appelation, Name FROM WINE WHERE Score > 93 ORDER BY Name
Find the appelations that produce wines after the year of 2008 but not in Central Coast area.
CREATE TABLE WINE (Appelation VARCHAR, YEAR INTEGER, Area VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, YEAR INTEGER, Area VARCHAR)
SELECT Appelation FROM WINE WHERE YEAR > 2008 EXCEPT SELECT Appelation FROM APPELLATIONS WHERE Area = "Central Coast"
### Context: CREATE TABLE WINE (Appelation VARCHAR, YEAR INTEGER, Area VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, YEAR INTEGER, Area VARCHAR) ### Question: Find the appelations that produce wines after the year of 2008 but not in Central Coast area. ### Answer: SELECT Appelation FROM WINE WHERE YEAR > 2008 EXCEPT SELECT Appelation FROM APPELLATIONS WHERE Area = "Central Coast"
Find the average price of wines that are not produced from Sonoma county.
CREATE TABLE wine (price INTEGER, Appelation VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR); CREATE TABLE WINE (Appelation VARCHAR)
SELECT AVG(price) FROM wine WHERE NOT Appelation IN (SELECT T1.Appelation FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = 'Sonoma')
### Context: CREATE TABLE wine (price INTEGER, Appelation VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR); CREATE TABLE WINE (Appelation VARCHAR) ### Question: Find the average price of wines that are not produced from Sonoma county. ### Answer: SELECT AVG(price) FROM wine WHERE NOT Appelation IN (SELECT T1.Appelation FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = 'Sonoma')
Find the county where produces the most number of wines with score higher than 90.
CREATE TABLE WINE (Appelation VARCHAR, Score INTEGER); CREATE TABLE APPELLATIONS (County VARCHAR, Appelation VARCHAR)
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
### Context: CREATE TABLE WINE (Appelation VARCHAR, Score INTEGER); CREATE TABLE APPELLATIONS (County VARCHAR, Appelation VARCHAR) ### Question: Find the county where produces the most number of wines with score higher than 90. ### Answer: 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
How many train stations are there?
CREATE TABLE station (Id VARCHAR)
SELECT COUNT(*) FROM station
### Context: CREATE TABLE station (Id VARCHAR) ### Question: How many train stations are there? ### Answer: SELECT COUNT(*) FROM station
Show the name, location, and number of platforms for all stations.
CREATE TABLE station (name VARCHAR, LOCATION VARCHAR, number_of_platforms VARCHAR)
SELECT name, LOCATION, number_of_platforms FROM station
### Context: CREATE TABLE station (name VARCHAR, LOCATION VARCHAR, number_of_platforms VARCHAR) ### Question: Show the name, location, and number of platforms for all stations. ### Answer: SELECT name, LOCATION, number_of_platforms FROM station
What are all locations of train stations?
CREATE TABLE station (LOCATION VARCHAR)
SELECT DISTINCT LOCATION FROM station
### Context: CREATE TABLE station (LOCATION VARCHAR) ### Question: What are all locations of train stations? ### Answer: SELECT DISTINCT LOCATION FROM station
Show the names and total passengers for all train stations not in London.
CREATE TABLE station (name VARCHAR, total_passengers VARCHAR, LOCATION VARCHAR)
SELECT name, total_passengers FROM station WHERE LOCATION <> 'London'
### Context: CREATE TABLE station (name VARCHAR, total_passengers VARCHAR, LOCATION VARCHAR) ### Question: Show the names and total passengers for all train stations not in London. ### Answer: SELECT name, total_passengers FROM station WHERE LOCATION <> 'London'
Show the names and main services for train stations that have the top three total number of passengers.
CREATE TABLE station (name VARCHAR, main_services VARCHAR, total_passengers VARCHAR)
SELECT name, main_services FROM station ORDER BY total_passengers DESC LIMIT 3
### Context: CREATE TABLE station (name VARCHAR, main_services VARCHAR, total_passengers VARCHAR) ### Question: Show the names and main services for train stations that have the top three total number of passengers. ### Answer: SELECT name, main_services FROM station ORDER BY total_passengers DESC LIMIT 3
What is the average and maximum number of total passengers for train stations in London or Glasgow?
CREATE TABLE station (total_passengers INTEGER, LOCATION VARCHAR)
SELECT AVG(total_passengers), MAX(total_passengers) FROM station WHERE LOCATION = 'London' OR LOCATION = 'Glasgow'
### Context: CREATE TABLE station (total_passengers INTEGER, LOCATION VARCHAR) ### Question: What is the average and maximum number of total passengers for train stations in London or Glasgow? ### Answer: SELECT AVG(total_passengers), MAX(total_passengers) FROM station WHERE LOCATION = 'London' OR LOCATION = 'Glasgow'
Show all locations and the total number of platforms and passengers for all train stations in each location.
CREATE TABLE station (LOCATION VARCHAR, number_of_platforms INTEGER, total_passengers INTEGER)
SELECT LOCATION, SUM(number_of_platforms), SUM(total_passengers) FROM station GROUP BY LOCATION
### Context: CREATE TABLE station (LOCATION VARCHAR, number_of_platforms INTEGER, total_passengers INTEGER) ### Question: Show all locations and the total number of platforms and passengers for all train stations in each location. ### Answer: SELECT LOCATION, SUM(number_of_platforms), SUM(total_passengers) FROM station GROUP BY LOCATION
Show all locations that have train stations with at least 15 platforms and train stations with more than 25 total passengers.
CREATE TABLE station (LOCATION VARCHAR, number_of_platforms VARCHAR, total_passengers VARCHAR)
SELECT DISTINCT LOCATION FROM station WHERE number_of_platforms >= 15 AND total_passengers > 25
### Context: CREATE TABLE station (LOCATION VARCHAR, number_of_platforms VARCHAR, total_passengers VARCHAR) ### Question: Show all locations that have train stations with at least 15 platforms and train stations with more than 25 total passengers. ### Answer: SELECT DISTINCT LOCATION FROM station WHERE number_of_platforms >= 15 AND total_passengers > 25
Show all locations which don't have a train station with at least 15 platforms.
CREATE TABLE station (LOCATION VARCHAR, number_of_platforms VARCHAR)
SELECT LOCATION FROM station EXCEPT SELECT LOCATION FROM station WHERE number_of_platforms >= 15
### Context: CREATE TABLE station (LOCATION VARCHAR, number_of_platforms VARCHAR) ### Question: Show all locations which don't have a train station with at least 15 platforms. ### Answer: SELECT LOCATION FROM station EXCEPT SELECT LOCATION FROM station WHERE number_of_platforms >= 15
Show the location with most number of train stations.
CREATE TABLE station (LOCATION VARCHAR)
SELECT LOCATION FROM station GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE station (LOCATION VARCHAR) ### Question: Show the location with most number of train stations. ### Answer: SELECT LOCATION FROM station GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1
Show the name, time, and service for all trains.
CREATE TABLE train (name VARCHAR, TIME VARCHAR, service VARCHAR)
SELECT name, TIME, service FROM train
### Context: CREATE TABLE train (name VARCHAR, TIME VARCHAR, service VARCHAR) ### Question: Show the name, time, and service for all trains. ### Answer: SELECT name, TIME, service FROM train
Show the number of trains
CREATE TABLE train (Id VARCHAR)
SELECT COUNT(*) FROM train
### Context: CREATE TABLE train (Id VARCHAR) ### Question: Show the number of trains ### Answer: SELECT COUNT(*) FROM train
Show the name and service for all trains in order by time.
CREATE TABLE train (name VARCHAR, service VARCHAR, TIME VARCHAR)
SELECT name, service FROM train ORDER BY TIME
### Context: CREATE TABLE train (name VARCHAR, service VARCHAR, TIME VARCHAR) ### Question: Show the name and service for all trains in order by time. ### Answer: SELECT name, service FROM train ORDER BY TIME
Show the station name and number of trains in each station.
CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR)
SELECT T2.name, COUNT(*) FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id
### Context: CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR) ### Question: Show the station name and number of trains in each station. ### Answer: SELECT T2.name, COUNT(*) FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id
show the train name and station name for each train.
CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR)
SELECT T2.name, T3.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id
### Context: CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR) ### Question: show the train name and station name for each train. ### Answer: SELECT T2.name, T3.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id
Show all train names and times in stations in London in descending order by train time.
CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR); CREATE TABLE station (station_id VARCHAR, location VARCHAR); CREATE TABLE train (name VARCHAR, time VARCHAR, train_id VARCHAR)
SELECT T3.name, T3.time FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T2.location = 'London' ORDER BY T3.time DESC
### Context: CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR); CREATE TABLE station (station_id VARCHAR, location VARCHAR); CREATE TABLE train (name VARCHAR, time VARCHAR, train_id VARCHAR) ### Question: Show all train names and times in stations in London in descending order by train time. ### Answer: SELECT T3.name, T3.time FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T2.location = 'London' ORDER BY T3.time DESC
Show the station name with greatest number of trains.
CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR)
SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR) ### Question: Show the station name with greatest number of trains. ### Answer: SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id ORDER BY COUNT(*) DESC LIMIT 1
Show the station name with at least two trains.
CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR)
SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id HAVING COUNT(*) >= 2
### Context: CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR) ### Question: Show the station name with at least two trains. ### Answer: SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id HAVING COUNT(*) >= 2
Show all locations with only 1 station.
CREATE TABLE station (LOCATION VARCHAR)
SELECT LOCATION FROM station GROUP BY LOCATION HAVING COUNT(*) = 1
### Context: CREATE TABLE station (LOCATION VARCHAR) ### Question: Show all locations with only 1 station. ### Answer: SELECT LOCATION FROM station GROUP BY LOCATION HAVING COUNT(*) = 1
Show station names without any trains.
CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (name VARCHAR, station_id VARCHAR)
SELECT name FROM station WHERE NOT station_id IN (SELECT station_id FROM train_station)
### Context: CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (name VARCHAR, station_id VARCHAR) ### Question: Show station names without any trains. ### Answer: SELECT name FROM station WHERE NOT station_id IN (SELECT station_id FROM train_station)
What are the names of the stations which serve both "Ananthapuri Express" and "Guruvayur Express" trains?
CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train (train_id VARCHAR, Name VARCHAR); CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR)
SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T3.Name = "Ananthapuri Express" INTERSECT SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T3.Name = "Guruvayur Express"
### Context: CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train (train_id VARCHAR, Name VARCHAR); CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR) ### Question: What are the names of the stations which serve both "Ananthapuri Express" and "Guruvayur Express" trains? ### Answer: SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T3.Name = "Ananthapuri Express" INTERSECT SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T3.Name = "Guruvayur Express"
Find the names of the trains that do not pass any station located in London.
CREATE TABLE station (station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR); CREATE TABLE train_station (train_id VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR)
SELECT T2.name FROM train_station AS T1 JOIN train AS T2 ON T1.train_id = T2.train_id WHERE NOT T1.station_id IN (SELECT T4.station_id FROM train_station AS T3 JOIN station AS T4 ON T3.station_id = T4.station_id WHERE t4.location = "London")
### Context: CREATE TABLE station (station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR); CREATE TABLE train_station (train_id VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR) ### Question: Find the names of the trains that do not pass any station located in London. ### Answer: SELECT T2.name FROM train_station AS T1 JOIN train AS T2 ON T1.train_id = T2.train_id WHERE NOT T1.station_id IN (SELECT T4.station_id FROM train_station AS T3 JOIN station AS T4 ON T3.station_id = T4.station_id WHERE t4.location = "London")
List the names and locations of all stations ordered by their yearly entry exit and interchange amounts.
CREATE TABLE station (name VARCHAR, LOCATION VARCHAR, Annual_entry_exit VARCHAR, Annual_interchanges VARCHAR)
SELECT name, LOCATION FROM station ORDER BY Annual_entry_exit, Annual_interchanges
### Context: CREATE TABLE station (name VARCHAR, LOCATION VARCHAR, Annual_entry_exit VARCHAR, Annual_interchanges VARCHAR) ### Question: List the names and locations of all stations ordered by their yearly entry exit and interchange amounts. ### Answer: SELECT name, LOCATION FROM station ORDER BY Annual_entry_exit, Annual_interchanges
List all vehicle id
CREATE TABLE Vehicles (vehicle_id VARCHAR)
SELECT vehicle_id FROM Vehicles
### Context: CREATE TABLE Vehicles (vehicle_id VARCHAR) ### Question: List all vehicle id ### Answer: SELECT vehicle_id FROM Vehicles
How many vehicle in total?
CREATE TABLE Vehicles (Id VARCHAR)
SELECT COUNT(*) FROM Vehicles
### Context: CREATE TABLE Vehicles (Id VARCHAR) ### Question: How many vehicle in total? ### Answer: SELECT COUNT(*) FROM Vehicles
Show the detail of vehicle with id 1.
CREATE TABLE Vehicles (vehicle_details VARCHAR, vehicle_id VARCHAR)
SELECT vehicle_details FROM Vehicles WHERE vehicle_id = 1
### Context: CREATE TABLE Vehicles (vehicle_details VARCHAR, vehicle_id VARCHAR) ### Question: Show the detail of vehicle with id 1. ### Answer: SELECT vehicle_details FROM Vehicles WHERE vehicle_id = 1
List the first name middle name and last name of all staff.
CREATE TABLE Staff (first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR)
SELECT first_name, middle_name, last_name FROM Staff
### Context: CREATE TABLE Staff (first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR) ### Question: List the first name middle name and last name of all staff. ### Answer: SELECT first_name, middle_name, last_name FROM Staff
What is the birthday of the staff member with first name as Janessa and last name as Sawayn?
CREATE TABLE Staff (date_of_birth VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT date_of_birth FROM Staff WHERE first_name = "Janessa" AND last_name = "Sawayn"
### Context: CREATE TABLE Staff (date_of_birth VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: What is the birthday of the staff member with first name as Janessa and last name as Sawayn? ### Answer: SELECT date_of_birth FROM Staff WHERE first_name = "Janessa" AND last_name = "Sawayn"
When did the staff member with first name as Janessa and last name as Sawayn join the company?
CREATE TABLE Staff (date_joined_staff VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT date_joined_staff FROM Staff WHERE first_name = "Janessa" AND last_name = "Sawayn"
### Context: CREATE TABLE Staff (date_joined_staff VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: When did the staff member with first name as Janessa and last name as Sawayn join the company? ### Answer: SELECT date_joined_staff FROM Staff WHERE first_name = "Janessa" AND last_name = "Sawayn"
When did the staff member with first name as Janessa and last name as Sawayn leave the company?
CREATE TABLE Staff (date_left_staff VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT date_left_staff FROM Staff WHERE first_name = "Janessa" AND last_name = "Sawayn"
### Context: CREATE TABLE Staff (date_left_staff VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: When did the staff member with first name as Janessa and last name as Sawayn leave the company? ### Answer: SELECT date_left_staff FROM Staff WHERE first_name = "Janessa" AND last_name = "Sawayn"
How many staff have the first name Ludie?
CREATE TABLE Staff (first_name VARCHAR)
SELECT COUNT(*) FROM Staff WHERE first_name = "Ludie"
### Context: CREATE TABLE Staff (first_name VARCHAR) ### Question: How many staff have the first name Ludie? ### Answer: SELECT COUNT(*) FROM Staff WHERE first_name = "Ludie"
What is the nickname of staff with first name as Janessa and last name as Sawayn?
CREATE TABLE Staff (nickname VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT nickname FROM Staff WHERE first_name = "Janessa" AND last_name = "Sawayn"
### Context: CREATE TABLE Staff (nickname VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: What is the nickname of staff with first name as Janessa and last name as Sawayn? ### Answer: SELECT nickname FROM Staff WHERE first_name = "Janessa" AND last_name = "Sawayn"
How many staff in total?
CREATE TABLE Staff (Id VARCHAR)
SELECT COUNT(*) FROM Staff
### Context: CREATE TABLE Staff (Id VARCHAR) ### Question: How many staff in total? ### Answer: SELECT COUNT(*) FROM Staff
Which city does staff with first name as Janessa and last name as Sawayn live?
CREATE TABLE Staff (staff_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR)
SELECT T1.city FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn"
### Context: CREATE TABLE Staff (staff_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR) ### Question: Which city does staff with first name as Janessa and last name as Sawayn live? ### Answer: SELECT T1.city FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn"
Which country and state does staff with first name as Janessa and last name as Sawayn lived?
CREATE TABLE Addresses (country VARCHAR, state_province_county VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT T1.country, T1.state_province_county FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn"
### Context: CREATE TABLE Addresses (country VARCHAR, state_province_county VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: Which country and state does staff with first name as Janessa and last name as Sawayn lived? ### Answer: SELECT T1.country, T1.state_province_county FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn"
How long is the total lesson time took by customer with first name as Rylan and last name as Goodwin?
CREATE TABLE Lessons (lesson_time INTEGER, customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT SUM(T1.lesson_time) FROM Lessons AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = "Rylan" AND T2.last_name = "Goodwin"
### Context: CREATE TABLE Lessons (lesson_time INTEGER, customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: How long is the total lesson time took by customer with first name as Rylan and last name as Goodwin? ### Answer: SELECT SUM(T1.lesson_time) FROM Lessons AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = "Rylan" AND T2.last_name = "Goodwin"
What is the zip code of staff with first name as Janessa and last name as Sawayn lived?
CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT T1.zip_postcode FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn"
### Context: CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: What is the zip code of staff with first name as Janessa and last name as Sawayn lived? ### Answer: SELECT T1.zip_postcode FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn"
How many staff live in state Georgia?
CREATE TABLE Addresses (state_province_county VARCHAR)
SELECT COUNT(*) FROM Addresses WHERE state_province_county = "Georgia"
### Context: CREATE TABLE Addresses (state_province_county VARCHAR) ### Question: How many staff live in state Georgia? ### Answer: SELECT COUNT(*) FROM Addresses WHERE state_province_county = "Georgia"
Find out the first name and last name of staff lived in city Damianfort.
CREATE TABLE Staff (first_name VARCHAR, last_name VARCHAR, staff_address_id VARCHAR); CREATE TABLE Addresses (address_id VARCHAR, city VARCHAR)
SELECT T2.first_name, T2.last_name FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T1.city = "Damianfort"
### Context: CREATE TABLE Staff (first_name VARCHAR, last_name VARCHAR, staff_address_id VARCHAR); CREATE TABLE Addresses (address_id VARCHAR, city VARCHAR) ### Question: Find out the first name and last name of staff lived in city Damianfort. ### Answer: SELECT T2.first_name, T2.last_name FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T1.city = "Damianfort"
Which city lives most of staffs? List the city name and number of staffs.
CREATE TABLE Staff (staff_address_id VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR)
SELECT T1.city, COUNT(*) FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id GROUP BY T1.city ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE Staff (staff_address_id VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR) ### Question: Which city lives most of staffs? List the city name and number of staffs. ### Answer: SELECT T1.city, COUNT(*) FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id GROUP BY T1.city ORDER BY COUNT(*) DESC LIMIT 1
List the states which have between 2 to 4 staffs living there.
CREATE TABLE Addresses (state_province_county VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR)
SELECT T1.state_province_county FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id GROUP BY T1.state_province_county HAVING COUNT(*) BETWEEN 2 AND 4
### Context: CREATE TABLE Addresses (state_province_county VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR) ### Question: List the states which have between 2 to 4 staffs living there. ### Answer: SELECT T1.state_province_county FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id GROUP BY T1.state_province_county HAVING COUNT(*) BETWEEN 2 AND 4
List the first name and last name of all customers.
CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR)
SELECT first_name, last_name FROM Customers
### Context: CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR) ### Question: List the first name and last name of all customers. ### Answer: SELECT first_name, last_name FROM Customers
List email address and birthday of customer whose first name as Carole.
CREATE TABLE Customers (email_address VARCHAR, date_of_birth VARCHAR, first_name VARCHAR)
SELECT email_address, date_of_birth FROM Customers WHERE first_name = "Carole"
### Context: CREATE TABLE Customers (email_address VARCHAR, date_of_birth VARCHAR, first_name VARCHAR) ### Question: List email address and birthday of customer whose first name as Carole. ### Answer: SELECT email_address, date_of_birth FROM Customers WHERE first_name = "Carole"
List phone number and email address of customer with more than 2000 outstanding balance.
CREATE TABLE Customers (phone_number VARCHAR, email_address VARCHAR, amount_outstanding INTEGER)
SELECT phone_number, email_address FROM Customers WHERE amount_outstanding > 2000
### Context: CREATE TABLE Customers (phone_number VARCHAR, email_address VARCHAR, amount_outstanding INTEGER) ### Question: List phone number and email address of customer with more than 2000 outstanding balance. ### Answer: SELECT phone_number, email_address FROM Customers WHERE amount_outstanding > 2000
What is the status code, mobile phone number and email address of customer with last name as Kohler or first name as Marina?
CREATE TABLE Customers (customer_status_code VARCHAR, cell_mobile_phone_number VARCHAR, email_address VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT customer_status_code, cell_mobile_phone_number, email_address FROM Customers WHERE first_name = "Marina" OR last_name = "Kohler"
### Context: CREATE TABLE Customers (customer_status_code VARCHAR, cell_mobile_phone_number VARCHAR, email_address VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: What is the status code, mobile phone number and email address of customer with last name as Kohler or first name as Marina? ### Answer: SELECT customer_status_code, cell_mobile_phone_number, email_address FROM Customers WHERE first_name = "Marina" OR last_name = "Kohler"
When are the birthdays of customer who are classified as 'Good Customer' status?
CREATE TABLE Customers (date_of_birth VARCHAR, customer_status_code VARCHAR)
SELECT date_of_birth FROM Customers WHERE customer_status_code = 'Good Customer'
### Context: CREATE TABLE Customers (date_of_birth VARCHAR, customer_status_code VARCHAR) ### Question: When are the birthdays of customer who are classified as 'Good Customer' status? ### Answer: SELECT date_of_birth FROM Customers WHERE customer_status_code = 'Good Customer'
When did customer with first name as Carole and last name as Bernhard became a customer?
CREATE TABLE Customers (date_became_customer VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT date_became_customer FROM Customers WHERE first_name = "Carole" AND last_name = "Bernhard"
### Context: CREATE TABLE Customers (date_became_customer VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: When did customer with first name as Carole and last name as Bernhard became a customer? ### Answer: SELECT date_became_customer FROM Customers WHERE first_name = "Carole" AND last_name = "Bernhard"
List all customer status codes and the number of customers having each status code.
CREATE TABLE Customers (customer_status_code VARCHAR)
SELECT customer_status_code, COUNT(*) FROM Customers GROUP BY customer_status_code
### Context: CREATE TABLE Customers (customer_status_code VARCHAR) ### Question: List all customer status codes and the number of customers having each status code. ### Answer: SELECT customer_status_code, COUNT(*) FROM Customers GROUP BY customer_status_code
Which customer status code has least number of customers?
CREATE TABLE Customers (customer_status_code VARCHAR)
SELECT customer_status_code FROM Customers GROUP BY customer_status_code ORDER BY COUNT(*) LIMIT 1
### Context: CREATE TABLE Customers (customer_status_code VARCHAR) ### Question: Which customer status code has least number of customers? ### Answer: SELECT customer_status_code FROM Customers GROUP BY customer_status_code ORDER BY COUNT(*) LIMIT 1
How many lessons taken by customer with first name as Rylan and last name as Goodwin were completed?
CREATE TABLE Lessons (customer_id VARCHAR, lesson_status_code VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT COUNT(*) FROM Lessons AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = "Rylan" AND T2.last_name = "Goodwin" AND T1.lesson_status_code = "Completed"
### Context: CREATE TABLE Lessons (customer_id VARCHAR, lesson_status_code VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: How many lessons taken by customer with first name as Rylan and last name as Goodwin were completed? ### Answer: SELECT COUNT(*) FROM Lessons AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = "Rylan" AND T2.last_name = "Goodwin" AND T1.lesson_status_code = "Completed"
What is maximum, minimum and average amount of outstanding of customer?
CREATE TABLE Customers (amount_outstanding INTEGER)
SELECT MAX(amount_outstanding), MIN(amount_outstanding), AVG(amount_outstanding) FROM Customers
### Context: CREATE TABLE Customers (amount_outstanding INTEGER) ### Question: What is maximum, minimum and average amount of outstanding of customer? ### Answer: SELECT MAX(amount_outstanding), MIN(amount_outstanding), AVG(amount_outstanding) FROM Customers
List the first name and last name of customers have the amount of outstanding between 1000 and 3000.
CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR, amount_outstanding INTEGER)
SELECT first_name, last_name FROM Customers WHERE amount_outstanding BETWEEN 1000 AND 3000
### Context: CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR, amount_outstanding INTEGER) ### Question: List the first name and last name of customers have the amount of outstanding between 1000 and 3000. ### Answer: SELECT first_name, last_name FROM Customers WHERE amount_outstanding BETWEEN 1000 AND 3000
List first name and last name of customers lived in city Lockmanfurt.
CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR, customer_address_id VARCHAR); CREATE TABLE Addresses (address_id VARCHAR, city VARCHAR)
SELECT T1.first_name, T1.last_name FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T2.city = "Lockmanfurt"
### Context: CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR, customer_address_id VARCHAR); CREATE TABLE Addresses (address_id VARCHAR, city VARCHAR) ### Question: List first name and last name of customers lived in city Lockmanfurt. ### Answer: SELECT T1.first_name, T1.last_name FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T2.city = "Lockmanfurt"
Which country does customer with first name as Carole and last name as Bernhard lived in?
CREATE TABLE Addresses (country VARCHAR, address_id VARCHAR); CREATE TABLE Customers (customer_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT T2.country FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T1.first_name = "Carole" AND T1.last_name = "Bernhard"
### Context: CREATE TABLE Addresses (country VARCHAR, address_id VARCHAR); CREATE TABLE Customers (customer_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: Which country does customer with first name as Carole and last name as Bernhard lived in? ### Answer: SELECT T2.country FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T1.first_name = "Carole" AND T1.last_name = "Bernhard"
What is zip code of customer with first name as Carole and last name as Bernhard?
CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR); CREATE TABLE Customers (customer_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT T2.zip_postcode FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T1.first_name = "Carole" AND T1.last_name = "Bernhard"
### Context: CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR); CREATE TABLE Customers (customer_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR) ### Question: What is zip code of customer with first name as Carole and last name as Bernhard? ### Answer: SELECT T2.zip_postcode FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T1.first_name = "Carole" AND T1.last_name = "Bernhard"
Which city does has most number of customers?
CREATE TABLE Customers (customer_address_id VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR)
SELECT T2.city FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id GROUP BY T2.city ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE Customers (customer_address_id VARCHAR); CREATE TABLE Addresses (city VARCHAR, address_id VARCHAR) ### Question: Which city does has most number of customers? ### Answer: SELECT T2.city FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id GROUP BY T2.city ORDER BY COUNT(*) DESC LIMIT 1
How much in total does customer with first name as Carole and last name as Bernhard paid?
CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Customer_Payments (amount_payment INTEGER, customer_id VARCHAR)
SELECT SUM(T1.amount_payment) FROM Customer_Payments AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = "Carole" AND T2.last_name = "Bernhard"
### Context: CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Customer_Payments (amount_payment INTEGER, customer_id VARCHAR) ### Question: How much in total does customer with first name as Carole and last name as Bernhard paid? ### Answer: SELECT SUM(T1.amount_payment) FROM Customer_Payments AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = "Carole" AND T2.last_name = "Bernhard"
List the number of customers that did not have any payment history.
CREATE TABLE Customers (customer_id VARCHAR); CREATE TABLE Customer_Payments (customer_id VARCHAR)
SELECT COUNT(*) FROM Customers WHERE NOT customer_id IN (SELECT customer_id FROM Customer_Payments)
### Context: CREATE TABLE Customers (customer_id VARCHAR); CREATE TABLE Customer_Payments (customer_id VARCHAR) ### Question: List the number of customers that did not have any payment history. ### Answer: SELECT COUNT(*) FROM Customers WHERE NOT customer_id IN (SELECT customer_id FROM Customer_Payments)
List first name and last name of customers that have more than 2 payments.
CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR, customer_id VARCHAR); CREATE TABLE Customer_Payments (customer_id VARCHAR)
SELECT T2.first_name, T2.last_name FROM Customer_Payments AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) > 2
### Context: CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR, customer_id VARCHAR); CREATE TABLE Customer_Payments (customer_id VARCHAR) ### Question: List first name and last name of customers that have more than 2 payments. ### Answer: SELECT T2.first_name, T2.last_name FROM Customer_Payments AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) > 2
List all payment methods and number of payments using each payment methods.
CREATE TABLE Customer_Payments (payment_method_code VARCHAR)
SELECT payment_method_code, COUNT(*) FROM Customer_Payments GROUP BY payment_method_code
### Context: CREATE TABLE Customer_Payments (payment_method_code VARCHAR) ### Question: List all payment methods and number of payments using each payment methods. ### Answer: SELECT payment_method_code, COUNT(*) FROM Customer_Payments GROUP BY payment_method_code