db_id
stringclasses
140 values
schema
sequencelengths
0
26
question
stringlengths
16
224
query
stringlengths
18
577
query_toks
sequencelengths
4
90
query_toks_no_value
sequencelengths
4
125
question_toks
sequencelengths
4
44
scientist_1
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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
[ "SELECT", "count", "(", "*", ")", ",", "T1.name", "FROM", "scientists", "AS", "T1", "JOIN", "assignedto", "AS", "T2", "ON", "T1.ssn", "=", "T2.scientist", "GROUP", "BY", "T1.name" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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)
[ "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", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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)
[ "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", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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
[ "SELECT", "T2.name", "FROM", "assignedto", "AS", "T1", "JOIN", "scientists", "AS", "T2", "ON", "T1.scientist", "=", "T2.ssn" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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
[ "SELECT", "T2.name", "FROM", "assignedto", "AS", "T1", "JOIN", "scientists", "AS", "T2", "ON", "T1.scientist", "=", "T2.ssn" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
Select the project names which are not assigned yet.
SELECT Name FROM Projects WHERE Code NOT IN (SELECT Project FROM AssignedTo)
[ "SELECT", "Name", "FROM", "Projects", "WHERE", "Code", "NOT", "IN", "(", "SELECT", "Project", "FROM", "AssignedTo", ")" ]
[ "select", "name", "from", "projects", "where", "code", "not", "in", "(", "select", "project", "from", "assignedto", ")" ]
[ "Select", "the", "project", "names", "which", "are", "not", "assigned", "yet", "." ]
scientist_1
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
What are the names of projects that have not been assigned?
SELECT Name FROM Projects WHERE Code NOT IN (SELECT Project FROM AssignedTo)
[ "SELECT", "Name", "FROM", "Projects", "WHERE", "Code", "NOT", "IN", "(", "SELECT", "Project", "FROM", "AssignedTo", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
Find the name of scientists who are not assigned to any project.
SELECT Name FROM scientists WHERE ssn NOT IN (SELECT scientist FROM AssignedTo)
[ "SELECT", "Name", "FROM", "scientists", "WHERE", "ssn", "NOT", "IN", "(", "SELECT", "scientist", "FROM", "AssignedTo", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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)
[ "SELECT", "Name", "FROM", "scientists", "WHERE", "ssn", "NOT", "IN", "(", "SELECT", "scientist", "FROM", "AssignedTo", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
Find the number of scientists who are not assigned to any project.
SELECT count(*) FROM scientists WHERE ssn NOT IN (SELECT scientist FROM AssignedTo)
[ "SELECT", "count", "(", "*", ")", "FROM", "scientists", "WHERE", "ssn", "NOT", "IN", "(", "SELECT", "scientist", "FROM", "AssignedTo", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
How many scientists do not have any projects assigned to them?
SELECT count(*) FROM scientists WHERE ssn NOT IN (SELECT scientist FROM AssignedTo)
[ "SELECT", "count", "(", "*", ")", "FROM", "scientists", "WHERE", "ssn", "NOT", "IN", "(", "SELECT", "scientist", "FROM", "AssignedTo", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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)
[ "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", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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)
[ "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", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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
[ "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" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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
[ "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" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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)
[ "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", ")" ]
[ "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
[ "create table Scientists (\n SSN int,\n Name Char(30) not null,\n Primary Key (SSN)\n);", "Create table Projects (\n Code Char(4),\n Name Char(50) not null,\n Hours int,\n Primary Key (Code)\n);", "create table AssignedTo (\n Scientist int not null,\n Project char(4) not null,\n Primary Key (Scientist, Project),\n Foreign Key (Scientist) references Scientists (SSN),\n Foreign Key (Project) references Projects (Code)\n);" ]
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)
[ "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", ")" ]
[ "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", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What is the name of the highest rated wine?
SELECT Name FROM WINE ORDER BY Score LIMIT 1
[ "SELECT", "Name", "FROM", "WINE", "ORDER", "BY", "Score", "LIMIT", "1" ]
[ "select", "name", "from", "wine", "order", "by", "score", "limit", "value" ]
[ "What", "is", "the", "name", "of", "the", "highest", "rated", "wine", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Give the name of the wine with the highest score.
SELECT Name FROM WINE ORDER BY Score LIMIT 1
[ "SELECT", "Name", "FROM", "WINE", "ORDER", "BY", "Score", "LIMIT", "1" ]
[ "select", "name", "from", "wine", "order", "by", "score", "limit", "value" ]
[ "Give", "the", "name", "of", "the", "wine", "with", "the", "highest", "score", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Which winery is the wine that has the highest score from?
SELECT Winery FROM WINE ORDER BY SCORE LIMIT 1
[ "SELECT", "Winery", "FROM", "WINE", "ORDER", "BY", "SCORE", "LIMIT", "1" ]
[ "select", "winery", "from", "wine", "order", "by", "score", "limit", "value" ]
[ "Which", "winery", "is", "the", "wine", "that", "has", "the", "highest", "score", "from", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What is the winery at which the wine with the highest score was made?
SELECT Winery FROM WINE ORDER BY SCORE LIMIT 1
[ "SELECT", "Winery", "FROM", "WINE", "ORDER", "BY", "SCORE", "LIMIT", "1" ]
[ "select", "winery", "from", "wine", "order", "by", "score", "limit", "value" ]
[ "What", "is", "the", "winery", "at", "which", "the", "wine", "with", "the", "highest", "score", "was", "made", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Find the names of all wines produced in 2008.
SELECT Name FROM WINE WHERE YEAR = "2008"
[ "SELECT", "Name", "FROM", "WINE", "WHERE", "YEAR", "=", "``", "2008", "''" ]
[ "select", "name", "from", "wine", "where", "year", "=", "value" ]
[ "Find", "the", "names", "of", "all", "wines", "produced", "in", "2008", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the names of all wines produced in 2008?
SELECT Name FROM WINE WHERE YEAR = "2008"
[ "SELECT", "Name", "FROM", "WINE", "WHERE", "YEAR", "=", "``", "2008", "''" ]
[ "select", "name", "from", "wine", "where", "year", "=", "value" ]
[ "What", "are", "the", "names", "of", "all", "wines", "produced", "in", "2008", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
List the grapes and appelations of all wines.
SELECT Grape , Appelation FROM WINE
[ "SELECT", "Grape", ",", "Appelation", "FROM", "WINE" ]
[ "select", "grape", ",", "appelation", "from", "wine" ]
[ "List", "the", "grapes", "and", "appelations", "of", "all", "wines", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the grapes and appelations of each wine?
SELECT Grape , Appelation FROM WINE
[ "SELECT", "Grape", ",", "Appelation", "FROM", "WINE" ]
[ "select", "grape", ",", "appelation", "from", "wine" ]
[ "What", "are", "the", "grapes", "and", "appelations", "of", "each", "wine", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
List the names and scores of all wines.
SELECT Name , Score FROM WINE
[ "SELECT", "Name", ",", "Score", "FROM", "WINE" ]
[ "select", "name", ",", "score", "from", "wine" ]
[ "List", "the", "names", "and", "scores", "of", "all", "wines", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the names and scores of all wines?
SELECT Name , Score FROM WINE
[ "SELECT", "Name", ",", "Score", "FROM", "WINE" ]
[ "select", "name", ",", "score", "from", "wine" ]
[ "What", "are", "the", "names", "and", "scores", "of", "all", "wines", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
List the area and county of all appelations.
SELECT Area , County FROM APPELLATIONS
[ "SELECT", "Area", ",", "County", "FROM", "APPELLATIONS" ]
[ "select", "area", ",", "county", "from", "appellations" ]
[ "List", "the", "area", "and", "county", "of", "all", "appelations", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the areas and counties for all appelations?
SELECT Area , County FROM APPELLATIONS
[ "SELECT", "Area", ",", "County", "FROM", "APPELLATIONS" ]
[ "select", "area", ",", "county", "from", "appellations" ]
[ "What", "are", "the", "areas", "and", "counties", "for", "all", "appelations", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the prices of wines produced before the year of 2010?
SELECT Price FROM WINE WHERE YEAR < 2010
[ "SELECT", "Price", "FROM", "WINE", "WHERE", "YEAR", "<", "2010" ]
[ "select", "price", "from", "wine", "where", "year", "<", "value" ]
[ "What", "are", "the", "prices", "of", "wines", "produced", "before", "the", "year", "of", "2010", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Return the prices of wines produced before 2010.
SELECT Price FROM WINE WHERE YEAR < 2010
[ "SELECT", "Price", "FROM", "WINE", "WHERE", "YEAR", "<", "2010" ]
[ "select", "price", "from", "wine", "where", "year", "<", "value" ]
[ "Return", "the", "prices", "of", "wines", "produced", "before", "2010", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
List the names of all distinct wines that have scores higher than 90.
SELECT Name FROM WINE WHERE score > 90
[ "SELECT", "Name", "FROM", "WINE", "WHERE", "score", ">", "90" ]
[ "select", "name", "from", "wine", "where", "score", ">", "value" ]
[ "List", "the", "names", "of", "all", "distinct", "wines", "that", "have", "scores", "higher", "than", "90", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the names of wines with scores higher than 90?
SELECT Name FROM WINE WHERE score > 90
[ "SELECT", "Name", "FROM", "WINE", "WHERE", "score", ">", "90" ]
[ "select", "name", "from", "wine", "where", "score", ">", "value" ]
[ "What", "are", "the", "names", "of", "wines", "with", "scores", "higher", "than", "90", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "DISTINCT", "T2.Name", "FROM", "GRAPES", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Grape", "=", "T2.Grape", "WHERE", "T1.Color", "=", "``", "Red", "''" ]
[ "select", "distinct", "t2", ".", "name", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value" ]
[ "List", "the", "names", "of", "all", "distinct", "wines", "that", "are", "made", "of", "red", "color", "grape", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "DISTINCT", "T2.Name", "FROM", "GRAPES", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Grape", "=", "T2.Grape", "WHERE", "T1.Color", "=", "``", "Red", "''" ]
[ "select", "distinct", "t2", ".", "name", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value" ]
[ "What", "are", "the", "names", "of", "wines", "made", "from", "red", "grapes", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "DISTINCT", "T2.Name", "FROM", "APPELLATIONs", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Appelation", "=", "T2.Appelation", "WHERE", "T1.Area", "=", "``", "North", "Coast", "''" ]
[ "select", "distinct", "t2", ".", "name", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t1", ".", "area", "=", "value" ]
[ "Find", "the", "names", "of", "all", "distinct", "wines", "that", "have", "appellations", "in", "North", "Coast", "area", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "DISTINCT", "T2.Name", "FROM", "APPELLATIONs", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Appelation", "=", "T2.Appelation", "WHERE", "T1.Area", "=", "``", "North", "Coast", "''" ]
[ "select", "distinct", "t2", ".", "name", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t1", ".", "area", "=", "value" ]
[ "What", "are", "the", "distinct", "names", "of", "wines", "that", "have", "appellations", "in", "the", "North", "Coast", "area", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
How many wines are produced at Robert Biale winery?
SELECT count(*) FROM WINE WHERE Winery = "Robert Biale"
[ "SELECT", "count", "(", "*", ")", "FROM", "WINE", "WHERE", "Winery", "=", "``", "Robert", "Biale", "''" ]
[ "select", "count", "(", "*", ")", "from", "wine", "where", "winery", "=", "value" ]
[ "How", "many", "wines", "are", "produced", "at", "Robert", "Biale", "winery", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Count the number of wines produced at Robert Biale winery.
SELECT count(*) FROM WINE WHERE Winery = "Robert Biale"
[ "SELECT", "count", "(", "*", ")", "FROM", "WINE", "WHERE", "Winery", "=", "``", "Robert", "Biale", "''" ]
[ "select", "count", "(", "*", ")", "from", "wine", "where", "winery", "=", "value" ]
[ "Count", "the", "number", "of", "wines", "produced", "at", "Robert", "Biale", "winery", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
How many appelations are in Napa Country?
SELECT count(*) FROM APPELLATIONS WHERE County = "Napa"
[ "SELECT", "count", "(", "*", ")", "FROM", "APPELLATIONS", "WHERE", "County", "=", "``", "Napa", "''" ]
[ "select", "count", "(", "*", ")", "from", "appellations", "where", "county", "=", "value" ]
[ "How", "many", "appelations", "are", "in", "Napa", "Country", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Count the number of appelations in Napa County.
SELECT count(*) FROM APPELLATIONS WHERE County = "Napa"
[ "SELECT", "count", "(", "*", ")", "FROM", "APPELLATIONS", "WHERE", "County", "=", "``", "Napa", "''" ]
[ "select", "count", "(", "*", ")", "from", "appellations", "where", "county", "=", "value" ]
[ "Count", "the", "number", "of", "appelations", "in", "Napa", "County", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "AVG", "(", "T2.Price", ")", "FROM", "APPELLATIONS", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Appelation", "=", "T2.Appelation", "WHERE", "T1.County", "=", "``", "Sonoma", "''" ]
[ "select", "avg", "(", "t2", ".", "price", ")", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t1", ".", "county", "=", "value" ]
[ "Give", "me", "the", "average", "prices", "of", "wines", "that", "are", "produced", "by", "appelations", "in", "Sonoma", "County", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "AVG", "(", "T2.Price", ")", "FROM", "APPELLATIONS", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Appelation", "=", "T2.Appelation", "WHERE", "T1.County", "=", "``", "Sonoma", "''" ]
[ "select", "avg", "(", "t2", ".", "price", ")", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t1", ".", "county", "=", "value" ]
[ "What", "is", "the", "average", "price", "of", "wines", "produced", "in", "appelations", "in", "Sonoma", "County", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "T2.Name", ",", "T2.Score", "FROM", "GRAPES", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Grape", "=", "T2.Grape", "WHERE", "T1.Color", "=", "``", "White", "''" ]
[ "select", "t2", ".", "name", ",", "t2", ".", "score", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value" ]
[ "What", "are", "the", "names", "and", "scores", "of", "wines", "that", "are", "made", "of", "white", "color", "grapes", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "T2.Name", ",", "T2.Score", "FROM", "GRAPES", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Grape", "=", "T2.Grape", "WHERE", "T1.Color", "=", "``", "White", "''" ]
[ "select", "t2", ".", "name", ",", "t2", ".", "score", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value" ]
[ "Give", "the", "names", "and", "scores", "of", "wines", "made", "from", "white", "grapes", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "max", "(", "t2", ".", "price", ")", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t1", ".", "area", "=", "value", "and", "t2", ".", "year", "<", "value" ]
[ "Find", "the", "maximum", "price", "of", "wins", "from", "the", "appelations", "in", "Central", "Coast", "area", "and", "produced", "before", "the", "year", "of", "2005", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "max", "(", "t2", ".", "price", ")", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t1", ".", "area", "=", "value", "and", "t2", ".", "year", "<", "value" ]
[ "What", "is", "the", "maximum", "price", "of", "wines", "from", "the", "appelation", "in", "the", "Central", "Coast", "area", ",", "which", "was", "produced", "before", "2005", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "distinct", "t1", ".", "grape", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value", "and", "t2", ".", "score", ">", "value" ]
[ "Find", "the", "the", "grape", "whose", "white", "color", "grapes", "are", "used", "to", "produce", "wines", "with", "scores", "higher", "than", "90", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "distinct", "t1", ".", "grape", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value", "and", "t2", ".", "score", ">", "value" ]
[ "Find", "the", "white", "grape", "used", "to", "produce", "wines", "with", "scores", "above", "90", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "T2.Name", "FROM", "Grapes", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Grape", "=", "T2.Grape", "WHERE", "T1.Color", "=", "``", "Red", "''", "AND", "T2.price", ">", "50" ]
[ "select", "t2", ".", "name", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value", "and", "t2", ".", "price", ">", "value" ]
[ "What", "are", "the", "wines", "that", "have", "prices", "higher", "than", "50", "and", "made", "of", "Red", "color", "grapes", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "T2.Name", "FROM", "Grapes", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Grape", "=", "T2.Grape", "WHERE", "T1.Color", "=", "``", "Red", "''", "AND", "T2.price", ">", "50" ]
[ "select", "t2", ".", "name", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value", "and", "t2", ".", "price", ">", "value" ]
[ "What", "are", "the", "names", "of", "wines", "made", "from", "red", "grapes", "and", "with", "prices", "above", "50", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "T2.Name", "FROM", "APPELLATIONS", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Appelation", "=", "T2.Appelation", "WHERE", "T1.County", "=", "``", "Monterey", "''", "AND", "T2.price", "<", "50" ]
[ "select", "t2", ".", "name", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t1", ".", "county", "=", "value", "and", "t2", ".", "price", "<", "value" ]
[ "What", "are", "the", "wines", "that", "have", "prices", "lower", "than", "50", "and", "have", "appelations", "in", "Monterey", "county", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "T2.Name", "FROM", "APPELLATIONS", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Appelation", "=", "T2.Appelation", "WHERE", "T1.County", "=", "``", "Monterey", "''", "AND", "T2.price", "<", "50" ]
[ "select", "t2", ".", "name", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t1", ".", "county", "=", "value", "and", "t2", ".", "price", "<", "value" ]
[ "Give", "the", "neames", "of", "wines", "with", "prices", "below", "50", "and", "with", "appelations", "in", "Monterey", "county", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the numbers of wines for different grapes?
SELECT count(*) , Grape FROM WINE GROUP BY Grape
[ "SELECT", "count", "(", "*", ")", ",", "Grape", "FROM", "WINE", "GROUP", "BY", "Grape" ]
[ "select", "count", "(", "*", ")", ",", "grape", "from", "wine", "group", "by", "grape" ]
[ "What", "are", "the", "numbers", "of", "wines", "for", "different", "grapes", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
How many wines are there for each grape?
SELECT count(*) , Grape FROM WINE GROUP BY Grape
[ "SELECT", "count", "(", "*", ")", ",", "Grape", "FROM", "WINE", "GROUP", "BY", "Grape" ]
[ "select", "count", "(", "*", ")", ",", "grape", "from", "wine", "group", "by", "grape" ]
[ "How", "many", "wines", "are", "there", "for", "each", "grape", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the average prices of wines for different years?
SELECT avg(Price) , YEAR FROM WINE GROUP BY YEAR
[ "SELECT", "avg", "(", "Price", ")", ",", "YEAR", "FROM", "WINE", "GROUP", "BY", "YEAR" ]
[ "select", "avg", "(", "price", ")", ",", "year", "from", "wine", "group", "by", "year" ]
[ "What", "are", "the", "average", "prices", "of", "wines", "for", "different", "years", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What is the average prices of wines for each each?
SELECT avg(Price) , YEAR FROM WINE GROUP BY YEAR
[ "SELECT", "avg", "(", "Price", ")", ",", "YEAR", "FROM", "WINE", "GROUP", "BY", "YEAR" ]
[ "select", "avg", "(", "price", ")", ",", "year", "from", "wine", "group", "by", "year" ]
[ "What", "is", "the", "average", "prices", "of", "wines", "for", "each", "each", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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")
[ "SELECT", "DISTINCT", "Name", "FROM", "WINE", "WHERE", "Price", ">", "(", "SELECT", "min", "(", "Price", ")", "FROM", "wine", "WHERE", "Winery", "=", "``", "John", "Anthony", "''", ")" ]
[ "select", "distinct", "name", "from", "wine", "where", "price", ">", "(", "select", "min", "(", "price", ")", "from", "wine", "where", "winery", "=", "value", ")" ]
[ "Find", "the", "distinct", "names", "of", "all", "wines", "that", "have", "prices", "higher", "than", "some", "wines", "from", "John", "Anthony", "winery", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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")
[ "SELECT", "DISTINCT", "Name", "FROM", "WINE", "WHERE", "Price", ">", "(", "SELECT", "min", "(", "Price", ")", "FROM", "wine", "WHERE", "Winery", "=", "``", "John", "Anthony", "''", ")" ]
[ "select", "distinct", "name", "from", "wine", "where", "price", ">", "(", "select", "min", "(", "price", ")", "from", "wine", "where", "winery", "=", "value", ")" ]
[ "What", "are", "the", "distinct", "names", "of", "wines", "with", "prices", "higher", "than", "any", "wine", "from", "John", "Anthony", "winery", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
List the names of all distinct wines in alphabetical order.
SELECT DISTINCT Name FROM WINE ORDER BY Name
[ "SELECT", "DISTINCT", "Name", "FROM", "WINE", "ORDER", "BY", "Name" ]
[ "select", "distinct", "name", "from", "wine", "order", "by", "name" ]
[ "List", "the", "names", "of", "all", "distinct", "wines", "in", "alphabetical", "order", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the names of wines, sorted in alphabetical order?
SELECT DISTINCT Name FROM WINE ORDER BY Name
[ "SELECT", "DISTINCT", "Name", "FROM", "WINE", "ORDER", "BY", "Name" ]
[ "select", "distinct", "name", "from", "wine", "order", "by", "name" ]
[ "What", "are", "the", "names", "of", "wines", ",", "sorted", "in", "alphabetical", "order", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
List the names of all distinct wines ordered by price.
SELECT DISTINCT Name FROM WINE ORDER BY price
[ "SELECT", "DISTINCT", "Name", "FROM", "WINE", "ORDER", "BY", "price" ]
[ "select", "distinct", "name", "from", "wine", "order", "by", "price" ]
[ "List", "the", "names", "of", "all", "distinct", "wines", "ordered", "by", "price", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the names of wines, sorted by price ascending?
SELECT DISTINCT Name FROM WINE ORDER BY price
[ "SELECT", "DISTINCT", "Name", "FROM", "WINE", "ORDER", "BY", "price" ]
[ "select", "distinct", "name", "from", "wine", "order", "by", "price" ]
[ "What", "are", "the", "names", "of", "wines", ",", "sorted", "by", "price", "ascending", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "t1", ".", "area", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "group", "by", "t2", ".", "appelation", "having", "t2", ".", "year", "<", "value", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "area", "of", "the", "appelation", "that", "produces", "the", "highest", "number", "of", "wines", "before", "the", "year", "of", "2010", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "t1", ".", "area", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "group", "by", "t2", ".", "appelation", "having", "t2", ".", "year", "<", "value", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "area", "for", "the", "appelation", "which", "produced", "the", "most", "wines", "prior", "to", "2010", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "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", "value" ]
[ "What", "is", "the", "color", "of", "the", "grape", "whose", "wine", "products", "has", "the", "highest", "average", "price", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "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", "value" ]
[ "Give", "the", "color", "of", "the", "grape", "whose", "wine", "products", "have", "the", "highest", "average", "price", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "DISTINCT", "Name", "FROM", "WINE", "WHERE", "YEAR", "<", "2000", "OR", "YEAR", ">", "2010" ]
[ "select", "distinct", "name", "from", "wine", "where", "year", "<", "value", "or", "year", ">", "value" ]
[ "Find", "the", "distinct", "names", "of", "wines", "produced", "before", "the", "year", "of", "2000", "or", "after", "the", "year", "of", "2010", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Give the distinct names of wines made before 2000 or after 2010.
SELECT DISTINCT Name FROM WINE WHERE YEAR < 2000 OR YEAR > 2010
[ "SELECT", "DISTINCT", "Name", "FROM", "WINE", "WHERE", "YEAR", "<", "2000", "OR", "YEAR", ">", "2010" ]
[ "select", "distinct", "name", "from", "wine", "where", "year", "<", "value", "or", "year", ">", "value" ]
[ "Give", "the", "distinct", "names", "of", "wines", "made", "before", "2000", "or", "after", "2010", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Find the distinct winery of wines having price between 50 and 100.
SELECT DISTINCT Winery FROM WINE WHERE Price BETWEEN 50 AND 100
[ "SELECT", "DISTINCT", "Winery", "FROM", "WINE", "WHERE", "Price", "BETWEEN", "50", "AND", "100" ]
[ "select", "distinct", "winery", "from", "wine", "where", "price", "between", "value", "and", "value" ]
[ "Find", "the", "distinct", "winery", "of", "wines", "having", "price", "between", "50", "and", "100", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the distinct wineries which produce wines costing between 50 and 100?
SELECT DISTINCT Winery FROM WINE WHERE Price BETWEEN 50 AND 100
[ "SELECT", "DISTINCT", "Winery", "FROM", "WINE", "WHERE", "Price", "BETWEEN", "50", "AND", "100" ]
[ "select", "distinct", "winery", "from", "wine", "where", "price", "between", "value", "and", "value" ]
[ "What", "are", "the", "distinct", "wineries", "which", "produce", "wines", "costing", "between", "50", "and", "100", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "AVG", "(", "Price", ")", ",", "AVG", "(", "Cases", ")", "FROM", "WINE", "WHERE", "YEAR", "=", "2009", "AND", "Grape", "=", "``", "Zinfandel", "''" ]
[ "select", "avg", "(", "price", ")", ",", "avg", "(", "cases", ")", "from", "wine", "where", "year", "=", "value", "and", "grape", "=", "value" ]
[ "What", "are", "the", "average", "prices", "and", "cases", "of", "wines", "produced", "in", "the", "year", "of", "2009", "and", "made", "of", "Zinfandel", "grape", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "AVG", "(", "Price", ")", ",", "AVG", "(", "Cases", ")", "FROM", "WINE", "WHERE", "YEAR", "=", "2009", "AND", "Grape", "=", "``", "Zinfandel", "''" ]
[ "select", "avg", "(", "price", ")", ",", "avg", "(", "cases", ")", "from", "wine", "where", "year", "=", "value", "and", "grape", "=", "value" ]
[ "Give", "the", "average", "price", "and", "case", "of", "wines", "made", "from", "Zinfandel", "grapes", "in", "the", "year", "2009", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "max", "(", "Price", ")", ",", "max", "(", "Score", ")", "FROM", "WINE", "WHERE", "Appelation", "=", "``", "St.", "Helena", "''" ]
[ "select", "max", "(", "price", ")", ",", "max", "(", "score", ")", "from", "wine", "where", "appelation", "=", "value" ]
[ "What", "are", "the", "maximum", "price", "and", "score", "of", "wines", "produced", "by", "St.", "Helena", "appelation", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "max", "(", "Price", ")", ",", "max", "(", "Score", ")", "FROM", "WINE", "WHERE", "Appelation", "=", "``", "St.", "Helena", "''" ]
[ "select", "max", "(", "price", ")", ",", "max", "(", "score", ")", "from", "wine", "where", "appelation", "=", "value" ]
[ "Give", "the", "maximum", "price", "and", "score", "for", "wines", "produced", "in", "the", "appelation", "St.", "Helena", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the maximum price and score of wines in each year?
SELECT max(Price) , max(Score) , YEAR FROM WINE GROUP BY YEAR
[ "SELECT", "max", "(", "Price", ")", ",", "max", "(", "Score", ")", ",", "YEAR", "FROM", "WINE", "GROUP", "BY", "YEAR" ]
[ "select", "max", "(", "price", ")", ",", "max", "(", "score", ")", ",", "year", "from", "wine", "group", "by", "year" ]
[ "What", "are", "the", "maximum", "price", "and", "score", "of", "wines", "in", "each", "year", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the maximum price and score of wines for each year?
SELECT max(Price) , max(Score) , YEAR FROM WINE GROUP BY YEAR
[ "SELECT", "max", "(", "Price", ")", ",", "max", "(", "Score", ")", ",", "YEAR", "FROM", "WINE", "GROUP", "BY", "YEAR" ]
[ "select", "max", "(", "price", ")", ",", "max", "(", "score", ")", ",", "year", "from", "wine", "group", "by", "year" ]
[ "What", "are", "the", "maximum", "price", "and", "score", "of", "wines", "for", "each", "year", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the average price and score of wines grouped by appelation?
SELECT avg(Price) , avg(Score) , Appelation FROM WINE GROUP BY Appelation
[ "SELECT", "avg", "(", "Price", ")", ",", "avg", "(", "Score", ")", ",", "Appelation", "FROM", "WINE", "GROUP", "BY", "Appelation" ]
[ "select", "avg", "(", "price", ")", ",", "avg", "(", "score", ")", ",", "appelation", "from", "wine", "group", "by", "appelation" ]
[ "What", "are", "the", "average", "price", "and", "score", "of", "wines", "grouped", "by", "appelation", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
What are the average price and score of wines for each appelation?
SELECT avg(Price) , avg(Score) , Appelation FROM WINE GROUP BY Appelation
[ "SELECT", "avg", "(", "Price", ")", ",", "avg", "(", "Score", ")", ",", "Appelation", "FROM", "WINE", "GROUP", "BY", "Appelation" ]
[ "select", "avg", "(", "price", ")", ",", "avg", "(", "score", ")", ",", "appelation", "from", "wine", "group", "by", "appelation" ]
[ "What", "are", "the", "average", "price", "and", "score", "of", "wines", "for", "each", "appelation", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Find the wineries that have at least four wines.
SELECT Winery FROM WINE GROUP BY Winery HAVING count(*) >= 4
[ "SELECT", "Winery", "FROM", "WINE", "GROUP", "BY", "Winery", "HAVING", "count", "(", "*", ")", ">", "=", "4" ]
[ "select", "winery", "from", "wine", "group", "by", "winery", "having", "count", "(", "*", ")", ">", "=", "value" ]
[ "Find", "the", "wineries", "that", "have", "at", "least", "four", "wines", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
Which wineries produce at least four wines?
SELECT Winery FROM WINE GROUP BY Winery HAVING count(*) >= 4
[ "SELECT", "Winery", "FROM", "WINE", "GROUP", "BY", "Winery", "HAVING", "count", "(", "*", ")", ">", "=", "4" ]
[ "select", "winery", "from", "wine", "group", "by", "winery", "having", "count", "(", "*", ")", ">", "=", "value" ]
[ "Which", "wineries", "produce", "at", "least", "four", "wines", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "T1.County", "FROM", "APPELLATIONS", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Appelation", "=", "T2.Appelation", "GROUP", "BY", "T2.Appelation", "HAVING", "count", "(", "*", ")", "<", "=", "3" ]
[ "select", "t1", ".", "county", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "group", "by", "t2", ".", "appelation", "having", "count", "(", "*", ")", "<", "=", "value" ]
[ "Find", "the", "country", "of", "all", "appelations", "who", "have", "at", "most", "three", "wines", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "T1.County", "FROM", "APPELLATIONS", "AS", "T1", "JOIN", "WINE", "AS", "T2", "ON", "T1.Appelation", "=", "T2.Appelation", "GROUP", "BY", "T2.Appelation", "HAVING", "count", "(", "*", ")", "<", "=", "3" ]
[ "select", "t1", ".", "county", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "group", "by", "t2", ".", "appelation", "having", "count", "(", "*", ")", "<", "=", "value" ]
[ "What", "are", "the", "countries", "for", "appelations", "with", "at", "most", "3", "wines", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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")
[ "SELECT", "Name", "FROM", "WINE", "WHERE", "YEAR", "<", "(", "SELECT", "min", "(", "YEAR", ")", "FROM", "WINE", "WHERE", "Winery", "=", "``", "Brander", "''", ")" ]
[ "select", "name", "from", "wine", "where", "year", "<", "(", "select", "min", "(", "year", ")", "from", "wine", "where", "winery", "=", "value", ")" ]
[ "What", "are", "the", "names", "of", "wines", "whose", "production", "year", "are", "before", "the", "year", "of", "all", "wines", "by", "Brander", "winery", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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")
[ "SELECT", "Name", "FROM", "WINE", "WHERE", "YEAR", "<", "(", "SELECT", "min", "(", "YEAR", ")", "FROM", "WINE", "WHERE", "Winery", "=", "``", "Brander", "''", ")" ]
[ "select", "name", "from", "wine", "where", "year", "<", "(", "select", "min", "(", "year", ")", "from", "wine", "where", "winery", "=", "value", ")" ]
[ "What", "are", "the", "names", "of", "wines", "produced", "before", "any", "wine", "from", "the", "Brander", "winery", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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)
[ "SELECT", "Name", "FROM", "WINE", "WHERE", "Price", ">", "(", "SELECT", "max", "(", "Price", ")", "FROM", "WINE", "WHERE", "YEAR", "=", "2006", ")" ]
[ "select", "name", "from", "wine", "where", "price", ">", "(", "select", "max", "(", "price", ")", "from", "wine", "where", "year", "=", "value", ")" ]
[ "What", "are", "the", "names", "of", "wines", "that", "are", "more", "expensive", "then", "all", "wines", "made", "in", "the", "year", "2006", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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)
[ "SELECT", "Name", "FROM", "WINE", "WHERE", "Price", ">", "(", "SELECT", "max", "(", "Price", ")", "FROM", "WINE", "WHERE", "YEAR", "=", "2006", ")" ]
[ "select", "name", "from", "wine", "where", "price", ">", "(", "select", "max", "(", "price", ")", "from", "wine", "where", "year", "=", "value", ")" ]
[ "Give", "the", "names", "of", "wines", "with", "prices", "above", "any", "wine", "produced", "in", "2006", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "t2", ".", "winery", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value", "group", "by", "t2", ".", "winery", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Find", "the", "top", "3", "wineries", "with", "the", "greatest", "number", "of", "wines", "made", "of", "white", "color", "grapes", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "t2", ".", "winery", "from", "grapes", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "grape", "=", "t2", ".", "grape", "where", "t1", ".", "color", "=", "value", "group", "by", "t2", ".", "winery", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "3", "wineries", "produce", "the", "most", "wines", "made", "from", "white", "grapes", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "Grape", ",", "Winery", ",", "YEAR", "FROM", "WINE", "WHERE", "Price", ">", "100", "ORDER", "BY", "YEAR" ]
[ "select", "grape", ",", "winery", ",", "year", "from", "wine", "where", "price", ">", "value", "order", "by", "year" ]
[ "List", "the", "grape", ",", "winery", "and", "year", "of", "the", "wines", "whose", "price", "is", "bigger", "than", "100", "ordered", "by", "year", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "Grape", ",", "Winery", ",", "YEAR", "FROM", "WINE", "WHERE", "Price", ">", "100", "ORDER", "BY", "YEAR" ]
[ "select", "grape", ",", "winery", ",", "year", "from", "wine", "where", "price", ">", "value", "order", "by", "year" ]
[ "What", "are", "the", "grapes", ",", "wineries", "and", "years", "for", "wines", "with", "price", "higher", "than", "100", ",", "sorted", "by", "year", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "Grape", ",", "Appelation", ",", "Name", "FROM", "WINE", "WHERE", "Score", ">", "93", "ORDER", "BY", "Name" ]
[ "select", "grape", ",", "appelation", ",", "name", "from", "wine", "where", "score", ">", "value", "order", "by", "name" ]
[ "List", "the", "grape", ",", "appelation", "and", "name", "of", "wines", "whose", "score", "is", "higher", "than", "93", "ordered", "by", "Name", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "SELECT", "Grape", ",", "Appelation", ",", "Name", "FROM", "WINE", "WHERE", "Score", ">", "93", "ORDER", "BY", "Name" ]
[ "select", "grape", ",", "appelation", ",", "name", "from", "wine", "where", "score", ">", "value", "order", "by", "name" ]
[ "What", "are", "the", "grapes", ",", "appelations", ",", "and", "wines", "with", "scores", "above", "93", ",", "sorted", "by", "Name", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "Appelation", "FROM", "WINE", "WHERE", "YEAR", ">", "2008", "EXCEPT", "SELECT", "Appelation", "FROM", "APPELLATIONS", "WHERE", "Area", "=", "``", "Central", "Coast", "''" ]
[ "select", "appelation", "from", "wine", "where", "year", ">", "value", "except", "select", "appelation", "from", "appellations", "where", "area", "=", "value" ]
[ "Find", "the", "appelations", "that", "produce", "wines", "after", "the", "year", "of", "2008", "but", "not", "in", "Central", "Coast", "area", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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"
[ "SELECT", "Appelation", "FROM", "WINE", "WHERE", "YEAR", ">", "2008", "EXCEPT", "SELECT", "Appelation", "FROM", "APPELLATIONS", "WHERE", "Area", "=", "``", "Central", "Coast", "''" ]
[ "select", "appelation", "from", "wine", "where", "year", ">", "value", "except", "select", "appelation", "from", "appellations", "where", "area", "=", "value" ]
[ "What", "are", "the", "appelations", "for", "wines", "produced", "after", "2008", "but", "not", "in", "the", "Central", "Coast", "area", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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')
[ "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", "'", ")" ]
[ "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", "=", "value", ")" ]
[ "Find", "the", "average", "price", "of", "wines", "that", "are", "not", "produced", "from", "Sonoma", "county", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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')
[ "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", "'", ")" ]
[ "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", "=", "value", ")" ]
[ "What", "is", "the", "average", "price", "for", "wines", "not", "produced", "in", "Sonoma", "county", "?" ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "t1", ".", "county", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t2", ".", "score", ">", "value", "group", "by", "t1", ".", "county", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Find", "the", "county", "where", "produces", "the", "most", "number", "of", "wines", "with", "score", "higher", "than", "90", "." ]
wine_1
[ "CREATE TABLE \"grapes\" ( \n\t\"ID\" INTEGER PRIMARY KEY, \n\t\"Grape\" TEXT UNIQUE, \n\t\"Color\" TEXT \n);", "CREATE TABLE \"appellations\" ( \n\t\"No\" INTEGER PRIMARY KEY, \n\t\"Appelation\" TEXT UNIQUE, \n\t\"County\" TEXT, \n\t\"State\" TEXT, \n\t\"Area\" TEXT, \n\t\"isAVA\" TEXT\n);", "CREATE TABLE \"wine\" ( \n\t\"No\" INTEGER, \n\t\"Grape\" TEXT, \n\t\"Winery\" TEXT, \n\t\"Appelation\" TEXT, \n\t\"State\" TEXT, \n\t\"Name\" TEXT, \n\t\"Year\" INTEGER, \n\t\"Price\" INTEGER, \n\t\"Score\" INTEGER, \n\t\"Cases\" INTEGER, \n\t\"Drink\" TEXT,\n\tFOREIGN KEY (Grape) REFERENCES grapes(Grape),\n\tFOREIGN KEY (Appelation) REFERENCES appellations(Appelation)\n);" ]
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
[ "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" ]
[ "select", "t1", ".", "county", "from", "appellations", "as", "t1", "join", "wine", "as", "t2", "on", "t1", ".", "appelation", "=", "t2", ".", "appelation", "where", "t2", ".", "score", ">", "value", "group", "by", "t1", ".", "county", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "county", "that", "produces", "the", "most", "wines", "scoring", "higher", "than", "90", "?" ]
train_station
[ "CREATE TABLE \"station\" (\n\"Station_ID\" int,\n\"Name\" text,\n\"Annual_entry_exit\" real,\n\"Annual_interchanges\" real,\n\"Total_Passengers\" real,\n\"Location\" text,\n\"Main_Services\" text,\n\"Number_of_Platforms\" int,\nPRIMARY KEY (\"Station_ID\")\n);", "CREATE TABLE \"train\" (\n\"Train_ID\" int,\n\"Name\" text,\n\"Time\" text,\n\"Service\" text,\nPRIMARY KEY (\"Train_ID\")\n);", "CREATE TABLE \"train_station\" (\n\"Train_ID\" int,\n\"Station_ID\" int,\t\nPRIMARY KEY (\"Train_ID\",\"Station_ID\"),\nFOREIGN KEY (\"Train_ID\") REFERENCES \"train\"(\"Train_ID\"),\nFOREIGN KEY (\"Station_ID\") REFERENCES \"station\"(\"Station_ID\")\n);" ]
How many train stations are there?
SELECT count(*) FROM station
[ "SELECT", "count", "(", "*", ")", "FROM", "station" ]
[ "select", "count", "(", "*", ")", "from", "station" ]
[ "How", "many", "train", "stations", "are", "there", "?" ]