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
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the numbers of the shortest flights?
SELECT flno FROM Flight ORDER BY distance ASC LIMIT 3
[ "SELECT", "flno", "FROM", "Flight", "ORDER", "BY", "distance", "ASC", "LIMIT", "3" ]
[ "select", "flno", "from", "flight", "order", "by", "distance", "asc", "limit", "value" ]
[ "What", "are", "the", "numbers", "of", "the", "shortest", "flights", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the average distance and average price for flights from Los Angeles.
SELECT avg(distance) , avg(price) FROM Flight WHERE origin = "Los Angeles"
[ "SELECT", "avg", "(", "distance", ")", ",", "avg", "(", "price", ")", "FROM", "Flight", "WHERE", "origin", "=", "``", "Los", "Angeles", "''" ]
[ "select", "avg", "(", "distance", ")", ",", "avg", "(", "price", ")", "from", "flight", "where", "origin", "=", "value" ]
[ "What", "is", "the", "average", "distance", "and", "average", "price", "for", "flights", "from", "Los", "Angeles", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the average distance and price for all flights from LA?
SELECT avg(distance) , avg(price) FROM Flight WHERE origin = "Los Angeles"
[ "SELECT", "avg", "(", "distance", ")", ",", "avg", "(", "price", ")", "FROM", "Flight", "WHERE", "origin", "=", "``", "Los", "Angeles", "''" ]
[ "select", "avg", "(", "distance", ")", ",", "avg", "(", "price", ")", "from", "flight", "where", "origin", "=", "value" ]
[ "What", "is", "the", "average", "distance", "and", "price", "for", "all", "flights", "from", "LA", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show all origins and the number of flights from each origin.
SELECT origin , count(*) FROM Flight GROUP BY origin
[ "SELECT", "origin", ",", "count", "(", "*", ")", "FROM", "Flight", "GROUP", "BY", "origin" ]
[ "select", "origin", ",", "count", "(", "*", ")", "from", "flight", "group", "by", "origin" ]
[ "Show", "all", "origins", "and", "the", "number", "of", "flights", "from", "each", "origin", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
For each origin, how many flights came from there?
SELECT origin , count(*) FROM Flight GROUP BY origin
[ "SELECT", "origin", ",", "count", "(", "*", ")", "FROM", "Flight", "GROUP", "BY", "origin" ]
[ "select", "origin", ",", "count", "(", "*", ")", "from", "flight", "group", "by", "origin" ]
[ "For", "each", "origin", ",", "how", "many", "flights", "came", "from", "there", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show all destinations and the number of flights to each destination.
SELECT destination , count(*) FROM Flight GROUP BY destination
[ "SELECT", "destination", ",", "count", "(", "*", ")", "FROM", "Flight", "GROUP", "BY", "destination" ]
[ "select", "destination", ",", "count", "(", "*", ")", "from", "flight", "group", "by", "destination" ]
[ "Show", "all", "destinations", "and", "the", "number", "of", "flights", "to", "each", "destination", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the destinations and number of flights to each one?
SELECT destination , count(*) FROM Flight GROUP BY destination
[ "SELECT", "destination", ",", "count", "(", "*", ")", "FROM", "Flight", "GROUP", "BY", "destination" ]
[ "select", "destination", ",", "count", "(", "*", ")", "from", "flight", "group", "by", "destination" ]
[ "What", "are", "the", "destinations", "and", "number", "of", "flights", "to", "each", "one", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Which origin has most number of flights?
SELECT origin FROM Flight GROUP BY origin ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "origin", "FROM", "Flight", "GROUP", "BY", "origin", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "origin", "from", "flight", "group", "by", "origin", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "origin", "has", "most", "number", "of", "flights", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What place has the most flights coming from there?
SELECT origin FROM Flight GROUP BY origin ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "origin", "FROM", "Flight", "GROUP", "BY", "origin", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "origin", "from", "flight", "group", "by", "origin", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "place", "has", "the", "most", "flights", "coming", "from", "there", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Which destination has least number of flights?
SELECT destination FROM Flight GROUP BY destination ORDER BY count(*) LIMIT 1
[ "SELECT", "destination", "FROM", "Flight", "GROUP", "BY", "destination", "ORDER", "BY", "count", "(", "*", ")", "LIMIT", "1" ]
[ "select", "destination", "from", "flight", "group", "by", "destination", "order", "by", "count", "(", "*", ")", "limit", "value" ]
[ "Which", "destination", "has", "least", "number", "of", "flights", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What destination has the fewest number of flights?
SELECT destination FROM Flight GROUP BY destination ORDER BY count(*) LIMIT 1
[ "SELECT", "destination", "FROM", "Flight", "GROUP", "BY", "destination", "ORDER", "BY", "count", "(", "*", ")", "LIMIT", "1" ]
[ "select", "destination", "from", "flight", "group", "by", "destination", "order", "by", "count", "(", "*", ")", "limit", "value" ]
[ "What", "destination", "has", "the", "fewest", "number", "of", "flights", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the aircraft name for the flight with number 99
SELECT T2.name FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid WHERE T1.flno = 99
[ "SELECT", "T2.name", "FROM", "Flight", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T1.aid", "=", "T2.aid", "WHERE", "T1.flno", "=", "99" ]
[ "select", "t2", ".", "name", "from", "flight", "as", "t1", "join", "aircraft", "as", "t2", "on", "t1", ".", "aid", "=", "t2", ".", "aid", "where", "t1", ".", "flno", "=", "value" ]
[ "What", "is", "the", "aircraft", "name", "for", "the", "flight", "with", "number", "99" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the name of the aircraft that was on flight number 99?
SELECT T2.name FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid WHERE T1.flno = 99
[ "SELECT", "T2.name", "FROM", "Flight", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T1.aid", "=", "T2.aid", "WHERE", "T1.flno", "=", "99" ]
[ "select", "t2", ".", "name", "from", "flight", "as", "t1", "join", "aircraft", "as", "t2", "on", "t1", ".", "aid", "=", "t2", ".", "aid", "where", "t1", ".", "flno", "=", "value" ]
[ "What", "is", "the", "name", "of", "the", "aircraft", "that", "was", "on", "flight", "number", "99", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show all flight numbers with aircraft Airbus A340-300.
SELECT T1.flno FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid WHERE T2.name = "Airbus A340-300"
[ "SELECT", "T1.flno", "FROM", "Flight", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T1.aid", "=", "T2.aid", "WHERE", "T2.name", "=", "``", "Airbus", "A340-300", "''" ]
[ "select", "t1", ".", "flno", "from", "flight", "as", "t1", "join", "aircraft", "as", "t2", "on", "t1", ".", "aid", "=", "t2", ".", "aid", "where", "t2", ".", "name", "=", "value" ]
[ "Show", "all", "flight", "numbers", "with", "aircraft", "Airbus", "A340-300", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the flight numbers for the aircraft Airbus A340-300?
SELECT T1.flno FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid WHERE T2.name = "Airbus A340-300"
[ "SELECT", "T1.flno", "FROM", "Flight", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T1.aid", "=", "T2.aid", "WHERE", "T2.name", "=", "``", "Airbus", "A340-300", "''" ]
[ "select", "t1", ".", "flno", "from", "flight", "as", "t1", "join", "aircraft", "as", "t2", "on", "t1", ".", "aid", "=", "t2", ".", "aid", "where", "t2", ".", "name", "=", "value" ]
[ "What", "are", "the", "flight", "numbers", "for", "the", "aircraft", "Airbus", "A340-300", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show aircraft names and number of flights for each aircraft.
SELECT T2.name , count(*) FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid
[ "SELECT", "T2.name", ",", "count", "(", "*", ")", "FROM", "Flight", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T1.aid", "=", "T2.aid", "GROUP", "BY", "T1.aid" ]
[ "select", "t2", ".", "name", ",", "count", "(", "*", ")", "from", "flight", "as", "t1", "join", "aircraft", "as", "t2", "on", "t1", ".", "aid", "=", "t2", ".", "aid", "group", "by", "t1", ".", "aid" ]
[ "Show", "aircraft", "names", "and", "number", "of", "flights", "for", "each", "aircraft", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the name of each aircraft and how many flights does each one complete?
SELECT T2.name , count(*) FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid
[ "SELECT", "T2.name", ",", "count", "(", "*", ")", "FROM", "Flight", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T1.aid", "=", "T2.aid", "GROUP", "BY", "T1.aid" ]
[ "select", "t2", ".", "name", ",", "count", "(", "*", ")", "from", "flight", "as", "t1", "join", "aircraft", "as", "t2", "on", "t1", ".", "aid", "=", "t2", ".", "aid", "group", "by", "t1", ".", "aid" ]
[ "What", "is", "the", "name", "of", "each", "aircraft", "and", "how", "many", "flights", "does", "each", "one", "complete", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show names for all aircraft with at least two flights.
SELECT T2.name FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid HAVING count(*) >= 2
[ "SELECT", "T2.name", "FROM", "Flight", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T1.aid", "=", "T2.aid", "GROUP", "BY", "T1.aid", "HAVING", "count", "(", "*", ")", ">", "=", "2" ]
[ "select", "t2", ".", "name", "from", "flight", "as", "t1", "join", "aircraft", "as", "t2", "on", "t1", ".", "aid", "=", "t2", ".", "aid", "group", "by", "t1", ".", "aid", "having", "count", "(", "*", ")", ">", "=", "value" ]
[ "Show", "names", "for", "all", "aircraft", "with", "at", "least", "two", "flights", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the names for all aircrafts with at least 2 flights?
SELECT T2.name FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid HAVING count(*) >= 2
[ "SELECT", "T2.name", "FROM", "Flight", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T1.aid", "=", "T2.aid", "GROUP", "BY", "T1.aid", "HAVING", "count", "(", "*", ")", ">", "=", "2" ]
[ "select", "t2", ".", "name", "from", "flight", "as", "t1", "join", "aircraft", "as", "t2", "on", "t1", ".", "aid", "=", "t2", ".", "aid", "group", "by", "t1", ".", "aid", "having", "count", "(", "*", ")", ">", "=", "value" ]
[ "What", "are", "the", "names", "for", "all", "aircrafts", "with", "at", "least", "2", "flights", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
How many employees have certificate.
SELECT count(DISTINCT eid) FROM Certificate
[ "SELECT", "count", "(", "DISTINCT", "eid", ")", "FROM", "Certificate" ]
[ "select", "count", "(", "distinct", "eid", ")", "from", "certificate" ]
[ "How", "many", "employees", "have", "certificate", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the count of distinct employees with certificates?
SELECT count(DISTINCT eid) FROM Certificate
[ "SELECT", "count", "(", "DISTINCT", "eid", ")", "FROM", "Certificate" ]
[ "select", "count", "(", "distinct", "eid", ")", "from", "certificate" ]
[ "What", "is", "the", "count", "of", "distinct", "employees", "with", "certificates", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show ids for all employees who don't have a certificate.
SELECT eid FROM Employee EXCEPT SELECT eid FROM Certificate
[ "SELECT", "eid", "FROM", "Employee", "EXCEPT", "SELECT", "eid", "FROM", "Certificate" ]
[ "select", "eid", "from", "employee", "except", "select", "eid", "from", "certificate" ]
[ "Show", "ids", "for", "all", "employees", "who", "do", "n't", "have", "a", "certificate", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the ids of all employees that don't have certificates?
SELECT eid FROM Employee EXCEPT SELECT eid FROM Certificate
[ "SELECT", "eid", "FROM", "Employee", "EXCEPT", "SELECT", "eid", "FROM", "Certificate" ]
[ "select", "eid", "from", "employee", "except", "select", "eid", "from", "certificate" ]
[ "What", "are", "the", "ids", "of", "all", "employees", "that", "do", "n't", "have", "certificates", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show names for all aircrafts of which John Williams has certificates.
SELECT T3.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T1.name = "John Williams"
[ "SELECT", "T3.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T1.name", "=", "``", "John", "Williams", "''" ]
[ "select", "t3", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t1", ".", "name", "=", "value" ]
[ "Show", "names", "for", "all", "aircrafts", "of", "which", "John", "Williams", "has", "certificates", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the names of all aircrafts that John Williams have certificates to be able to fly?
SELECT T3.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T1.name = "John Williams"
[ "SELECT", "T3.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T1.name", "=", "``", "John", "Williams", "''" ]
[ "select", "t3", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t1", ".", "name", "=", "value" ]
[ "What", "are", "the", "names", "of", "all", "aircrafts", "that", "John", "Williams", "have", "certificates", "to", "be", "able", "to", "fly", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show names for all employees who have certificate of Boeing 737-800.
SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800"
[ "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.name", "=", "``", "Boeing", "737-800", "''" ]
[ "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "name", "=", "value" ]
[ "Show", "names", "for", "all", "employees", "who", "have", "certificate", "of", "Boeing", "737-800", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the names of all employees who have a certificate to fly Boeing 737-800?
SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800"
[ "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.name", "=", "``", "Boeing", "737-800", "''" ]
[ "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "name", "=", "value" ]
[ "What", "are", "the", "names", "of", "all", "employees", "who", "have", "a", "certificate", "to", "fly", "Boeing", "737-800", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show names for all employees who have certificates on both Boeing 737-800 and Airbus A340-300.
SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800" INTERSECT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Airbus A340-300"
[ "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.name", "=", "``", "Boeing", "737-800", "''", "INTERSECT", "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.name", "=", "``", "Airbus", "A340-300", "''" ]
[ "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "name", "=", "value", "intersect", "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "name", "=", "value" ]
[ "Show", "names", "for", "all", "employees", "who", "have", "certificates", "on", "both", "Boeing", "737-800", "and", "Airbus", "A340-300", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the names of all employees who can fly both the Boeing 737-800 and the Airbus A340-300?
SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800" INTERSECT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Airbus A340-300"
[ "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.name", "=", "``", "Boeing", "737-800", "''", "INTERSECT", "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.name", "=", "``", "Airbus", "A340-300", "''" ]
[ "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "name", "=", "value", "intersect", "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "name", "=", "value" ]
[ "What", "are", "the", "names", "of", "all", "employees", "who", "can", "fly", "both", "the", "Boeing", "737-800", "and", "the", "Airbus", "A340-300", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show names for all employees who do not have certificate of Boeing 737-800.
SELECT name FROM Employee EXCEPT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800"
[ "SELECT", "name", "FROM", "Employee", "EXCEPT", "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.name", "=", "``", "Boeing", "737-800", "''" ]
[ "select", "name", "from", "employee", "except", "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "name", "=", "value" ]
[ "Show", "names", "for", "all", "employees", "who", "do", "not", "have", "certificate", "of", "Boeing", "737-800", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the names of all employees who are not certified to fly Boeing 737-800s?
SELECT name FROM Employee EXCEPT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800"
[ "SELECT", "name", "FROM", "Employee", "EXCEPT", "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.name", "=", "``", "Boeing", "737-800", "''" ]
[ "select", "name", "from", "employee", "except", "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "name", "=", "value" ]
[ "What", "are", "the", "names", "of", "all", "employees", "who", "are", "not", "certified", "to", "fly", "Boeing", "737-800s", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show the name of aircraft which fewest people have its certificate.
SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid GROUP BY T1.aid ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T2.name", "FROM", "Certificate", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T2.aid", "=", "T1.aid", "GROUP", "BY", "T1.aid", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t2", ".", "name", "from", "certificate", "as", "t1", "join", "aircraft", "as", "t2", "on", "t2", ".", "aid", "=", "t1", ".", "aid", "group", "by", "t1", ".", "aid", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Show", "the", "name", "of", "aircraft", "which", "fewest", "people", "have", "its", "certificate", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What are the names of the aircraft that the least people are certified to fly?
SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid GROUP BY T1.aid ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T2.name", "FROM", "Certificate", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T2.aid", "=", "T1.aid", "GROUP", "BY", "T1.aid", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t2", ".", "name", "from", "certificate", "as", "t1", "join", "aircraft", "as", "t2", "on", "t2", ".", "aid", "=", "t1", ".", "aid", "group", "by", "t1", ".", "aid", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "are", "the", "names", "of", "the", "aircraft", "that", "the", "least", "people", "are", "certified", "to", "fly", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
Show the name and distance of the aircrafts with more than 5000 distance and which at least 5 people have its certificate.
SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid WHERE T2.distance > 5000 GROUP BY T1.aid ORDER BY count(*) >= 5
[ "SELECT", "T2.name", "FROM", "Certificate", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T2.aid", "=", "T1.aid", "WHERE", "T2.distance", ">", "5000", "GROUP", "BY", "T1.aid", "ORDER", "BY", "count", "(", "*", ")", ">", "=", "5" ]
[ "select", "t2", ".", "name", "from", "certificate", "as", "t1", "join", "aircraft", "as", "t2", "on", "t2", ".", "aid", "=", "t1", ".", "aid", "where", "t2", ".", "distance", ">", "value", "group", "by", "t1", ".", "aid", "order", "by", "count", "(", "*", ")", ">", "=", "value" ]
[ "Show", "the", "name", "and", "distance", "of", "the", "aircrafts", "with", "more", "than", "5000", "distance", "and", "which", "at", "least", "5", "people", "have", "its", "certificate", "." ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the name and distance of every aircraft that can cover a distance of more than 5000 and which at least 5 people can fly?
SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid WHERE T2.distance > 5000 GROUP BY T1.aid ORDER BY count(*) >= 5
[ "SELECT", "T2.name", "FROM", "Certificate", "AS", "T1", "JOIN", "Aircraft", "AS", "T2", "ON", "T2.aid", "=", "T1.aid", "WHERE", "T2.distance", ">", "5000", "GROUP", "BY", "T1.aid", "ORDER", "BY", "count", "(", "*", ")", ">", "=", "5" ]
[ "select", "t2", ".", "name", "from", "certificate", "as", "t1", "join", "aircraft", "as", "t2", "on", "t2", ".", "aid", "=", "t1", ".", "aid", "where", "t2", ".", "distance", ">", "value", "group", "by", "t1", ".", "aid", "order", "by", "count", "(", "*", ")", ">", "=", "value" ]
[ "What", "is", "the", "name", "and", "distance", "of", "every", "aircraft", "that", "can", "cover", "a", "distance", "of", "more", "than", "5000", "and", "which", "at", "least", "5", "people", "can", "fly", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
what is the salary and name of the employee who has the most number of aircraft certificates?
SELECT T1.name , T1.salary FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid GROUP BY T1.eid ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.name", ",", "T1.salary", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "GROUP", "BY", "T1.eid", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t1", ".", "name", ",", "t1", ".", "salary", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "group", "by", "t1", ".", "eid", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "what", "is", "the", "salary", "and", "name", "of", "the", "employee", "who", "has", "the", "most", "number", "of", "aircraft", "certificates", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the salaray and name of the employee that is certified to fly the most planes?
SELECT T1.name , T1.salary FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid GROUP BY T1.eid ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.name", ",", "T1.salary", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "GROUP", "BY", "T1.eid", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t1", ".", "name", ",", "t1", ".", "salary", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "group", "by", "t1", ".", "eid", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "salaray", "and", "name", "of", "the", "employee", "that", "is", "certified", "to", "fly", "the", "most", "planes", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the salary and name of the employee who has the most number of certificates on aircrafts with distance more than 5000?
SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.distance > 5000 GROUP BY T1.eid ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.distance", ">", "5000", "GROUP", "BY", "T1.eid", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "distance", ">", "value", "group", "by", "t1", ".", "eid", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "salary", "and", "name", "of", "the", "employee", "who", "has", "the", "most", "number", "of", "certificates", "on", "aircrafts", "with", "distance", "more", "than", "5000", "?" ]
flight_1
[ "create table flight(\n\tflno number(4,0) primary key,\n\torigin varchar2(20),\n\tdestination varchar2(20),\n\tdistance number(6,0),\n\tdeparture_date date,\n\tarrival_date date,\n\tprice number(7,2),\n aid number(9,0),\n foreign key(\"aid\") references `aircraft`(\"aid\"));", "create table aircraft(\n\taid number(9,0) primary key,\n\tname varchar2(30),\n\tdistance number(6,0));", "create table employee(\n\teid number(9,0) primary key,\n\tname varchar2(30),\n\tsalary number(10,2));", "create table certificate(\n\teid number(9,0),\n\taid number(9,0),\n\tprimary key(eid,aid),\n\tforeign key(\"eid\") references `employee`(\"eid\"),\n\tforeign key(\"aid\") references `aircraft`(\"aid\"));" ]
What is the salaray and name of the employee with the most certificates to fly planes more than 5000?
SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.distance > 5000 GROUP BY T1.eid ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.name", "FROM", "Employee", "AS", "T1", "JOIN", "Certificate", "AS", "T2", "ON", "T1.eid", "=", "T2.eid", "JOIN", "Aircraft", "AS", "T3", "ON", "T3.aid", "=", "T2.aid", "WHERE", "T3.distance", ">", "5000", "GROUP", "BY", "T1.eid", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t1", ".", "name", "from", "employee", "as", "t1", "join", "certificate", "as", "t2", "on", "t1", ".", "eid", "=", "t2", ".", "eid", "join", "aircraft", "as", "t3", "on", "t3", ".", "aid", "=", "t2", ".", "aid", "where", "t3", ".", "distance", ">", "value", "group", "by", "t1", ".", "eid", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "salaray", "and", "name", "of", "the", "employee", "with", "the", "most", "certificates", "to", "fly", "planes", "more", "than", "5000", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many allergies are there?
SELECT count(DISTINCT allergy) FROM Allergy_type
[ "SELECT", "count", "(", "DISTINCT", "allergy", ")", "FROM", "Allergy_type" ]
[ "select", "count", "(", "distinct", "allergy", ")", "from", "allergy_type" ]
[ "How", "many", "allergies", "are", "there", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many allergy entries are there?
SELECT count(DISTINCT allergy) FROM Allergy_type
[ "SELECT", "count", "(", "DISTINCT", "allergy", ")", "FROM", "Allergy_type" ]
[ "select", "count", "(", "distinct", "allergy", ")", "from", "allergy_type" ]
[ "How", "many", "allergy", "entries", "are", "there", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many different allergy types exist?
SELECT count(DISTINCT allergytype) FROM Allergy_type
[ "SELECT", "count", "(", "DISTINCT", "allergytype", ")", "FROM", "Allergy_type" ]
[ "select", "count", "(", "distinct", "allergytype", ")", "from", "allergy_type" ]
[ "How", "many", "different", "allergy", "types", "exist", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many distinct allergies are there?
SELECT count(DISTINCT allergytype) FROM Allergy_type
[ "SELECT", "count", "(", "DISTINCT", "allergytype", ")", "FROM", "Allergy_type" ]
[ "select", "count", "(", "distinct", "allergytype", ")", "from", "allergy_type" ]
[ "How", "many", "distinct", "allergies", "are", "there", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all allergy types.
SELECT DISTINCT allergytype FROM Allergy_type
[ "SELECT", "DISTINCT", "allergytype", "FROM", "Allergy_type" ]
[ "select", "distinct", "allergytype", "from", "allergy_type" ]
[ "Show", "all", "allergy", "types", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are the different allergy types?
SELECT DISTINCT allergytype FROM Allergy_type
[ "SELECT", "DISTINCT", "allergytype", "FROM", "Allergy_type" ]
[ "select", "distinct", "allergytype", "from", "allergy_type" ]
[ "What", "are", "the", "different", "allergy", "types", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all allergies and their types.
SELECT allergy , allergytype FROM Allergy_type
[ "SELECT", "allergy", ",", "allergytype", "FROM", "Allergy_type" ]
[ "select", "allergy", ",", "allergytype", "from", "allergy_type" ]
[ "Show", "all", "allergies", "and", "their", "types", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are the allergies and their types?
SELECT allergy , allergytype FROM Allergy_type
[ "SELECT", "allergy", ",", "allergytype", "FROM", "Allergy_type" ]
[ "select", "allergy", ",", "allergytype", "from", "allergy_type" ]
[ "What", "are", "the", "allergies", "and", "their", "types", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all allergies with type food.
SELECT DISTINCT allergy FROM Allergy_type WHERE allergytype = "food"
[ "SELECT", "DISTINCT", "allergy", "FROM", "Allergy_type", "WHERE", "allergytype", "=", "``", "food", "''" ]
[ "select", "distinct", "allergy", "from", "allergy_type", "where", "allergytype", "=", "value" ]
[ "Show", "all", "allergies", "with", "type", "food", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are all the different food allergies?
SELECT DISTINCT allergy FROM Allergy_type WHERE allergytype = "food"
[ "SELECT", "DISTINCT", "allergy", "FROM", "Allergy_type", "WHERE", "allergytype", "=", "``", "food", "''" ]
[ "select", "distinct", "allergy", "from", "allergy_type", "where", "allergytype", "=", "value" ]
[ "What", "are", "all", "the", "different", "food", "allergies", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What is the type of allergy Cat?
SELECT allergytype FROM Allergy_type WHERE allergy = "Cat"
[ "SELECT", "allergytype", "FROM", "Allergy_type", "WHERE", "allergy", "=", "``", "Cat", "''" ]
[ "select", "allergytype", "from", "allergy_type", "where", "allergy", "=", "value" ]
[ "What", "is", "the", "type", "of", "allergy", "Cat", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What is allergy type of a cat allergy?
SELECT allergytype FROM Allergy_type WHERE allergy = "Cat"
[ "SELECT", "allergytype", "FROM", "Allergy_type", "WHERE", "allergy", "=", "``", "Cat", "''" ]
[ "select", "allergytype", "from", "allergy_type", "where", "allergy", "=", "value" ]
[ "What", "is", "allergy", "type", "of", "a", "cat", "allergy", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many allergies have type animal?
SELECT count(*) FROM Allergy_type WHERE allergytype = "animal"
[ "SELECT", "count", "(", "*", ")", "FROM", "Allergy_type", "WHERE", "allergytype", "=", "``", "animal", "''" ]
[ "select", "count", "(", "*", ")", "from", "allergy_type", "where", "allergytype", "=", "value" ]
[ "How", "many", "allergies", "have", "type", "animal", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many animal type allergies exist?
SELECT count(*) FROM Allergy_type WHERE allergytype = "animal"
[ "SELECT", "count", "(", "*", ")", "FROM", "Allergy_type", "WHERE", "allergytype", "=", "``", "animal", "''" ]
[ "select", "count", "(", "*", ")", "from", "allergy_type", "where", "allergytype", "=", "value" ]
[ "How", "many", "animal", "type", "allergies", "exist", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all allergy types and the number of allergies in each type.
SELECT allergytype , count(*) FROM Allergy_type GROUP BY allergytype
[ "SELECT", "allergytype", ",", "count", "(", "*", ")", "FROM", "Allergy_type", "GROUP", "BY", "allergytype" ]
[ "select", "allergytype", ",", "count", "(", "*", ")", "from", "allergy_type", "group", "by", "allergytype" ]
[ "Show", "all", "allergy", "types", "and", "the", "number", "of", "allergies", "in", "each", "type", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are the allergy types and how many allergies correspond to each one?
SELECT allergytype , count(*) FROM Allergy_type GROUP BY allergytype
[ "SELECT", "allergytype", ",", "count", "(", "*", ")", "FROM", "Allergy_type", "GROUP", "BY", "allergytype" ]
[ "select", "allergytype", ",", "count", "(", "*", ")", "from", "allergy_type", "group", "by", "allergytype" ]
[ "What", "are", "the", "allergy", "types", "and", "how", "many", "allergies", "correspond", "to", "each", "one", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Which allergy type has most number of allergies?
SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "allergytype", "FROM", "Allergy_type", "GROUP", "BY", "allergytype", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "allergytype", "from", "allergy_type", "group", "by", "allergytype", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "allergy", "type", "has", "most", "number", "of", "allergies", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Which allergy type is most common?
SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "allergytype", "FROM", "Allergy_type", "GROUP", "BY", "allergytype", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "allergytype", "from", "allergy_type", "group", "by", "allergytype", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "allergy", "type", "is", "most", "common", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Which allergy type has least number of allergies?
SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY count(*) ASC LIMIT 1
[ "SELECT", "allergytype", "FROM", "Allergy_type", "GROUP", "BY", "allergytype", "ORDER", "BY", "count", "(", "*", ")", "ASC", "LIMIT", "1" ]
[ "select", "allergytype", "from", "allergy_type", "group", "by", "allergytype", "order", "by", "count", "(", "*", ")", "asc", "limit", "value" ]
[ "Which", "allergy", "type", "has", "least", "number", "of", "allergies", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Which allergy type is the least common?
SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY count(*) ASC LIMIT 1
[ "SELECT", "allergytype", "FROM", "Allergy_type", "GROUP", "BY", "allergytype", "ORDER", "BY", "count", "(", "*", ")", "ASC", "LIMIT", "1" ]
[ "select", "allergytype", "from", "allergy_type", "group", "by", "allergytype", "order", "by", "count", "(", "*", ")", "asc", "limit", "value" ]
[ "Which", "allergy", "type", "is", "the", "least", "common", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many students are there?
SELECT count(*) FROM Student
[ "SELECT", "count", "(", "*", ")", "FROM", "Student" ]
[ "select", "count", "(", "*", ")", "from", "student" ]
[ "How", "many", "students", "are", "there", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What is the total number of students?
SELECT count(*) FROM Student
[ "SELECT", "count", "(", "*", ")", "FROM", "Student" ]
[ "select", "count", "(", "*", ")", "from", "student" ]
[ "What", "is", "the", "total", "number", "of", "students", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show first name and last name for all students.
SELECT Fname , Lname FROM Student
[ "SELECT", "Fname", ",", "Lname", "FROM", "Student" ]
[ "select", "fname", ",", "lname", "from", "student" ]
[ "Show", "first", "name", "and", "last", "name", "for", "all", "students", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are the full names of all students
SELECT Fname , Lname FROM Student
[ "SELECT", "Fname", ",", "Lname", "FROM", "Student" ]
[ "select", "fname", ",", "lname", "from", "student" ]
[ "What", "are", "the", "full", "names", "of", "all", "students" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many different advisors are listed?
SELECT count(DISTINCT advisor) FROM Student
[ "SELECT", "count", "(", "DISTINCT", "advisor", ")", "FROM", "Student" ]
[ "select", "count", "(", "distinct", "advisor", ")", "from", "student" ]
[ "How", "many", "different", "advisors", "are", "listed", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many advisors are there?
SELECT count(DISTINCT advisor) FROM Student
[ "SELECT", "count", "(", "DISTINCT", "advisor", ")", "FROM", "Student" ]
[ "select", "count", "(", "distinct", "advisor", ")", "from", "student" ]
[ "How", "many", "advisors", "are", "there", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all majors.
SELECT DISTINCT Major FROM Student
[ "SELECT", "DISTINCT", "Major", "FROM", "Student" ]
[ "select", "distinct", "major", "from", "student" ]
[ "Show", "all", "majors", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are the different majors?
SELECT DISTINCT Major FROM Student
[ "SELECT", "DISTINCT", "Major", "FROM", "Student" ]
[ "select", "distinct", "major", "from", "student" ]
[ "What", "are", "the", "different", "majors", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all cities where students live.
SELECT DISTINCT city_code FROM Student
[ "SELECT", "DISTINCT", "city_code", "FROM", "Student" ]
[ "select", "distinct", "city_code", "from", "student" ]
[ "Show", "all", "cities", "where", "students", "live", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What cities do students live in?
SELECT DISTINCT city_code FROM Student
[ "SELECT", "DISTINCT", "city_code", "FROM", "Student" ]
[ "select", "distinct", "city_code", "from", "student" ]
[ "What", "cities", "do", "students", "live", "in", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show first name, last name, age for all female students. Their sex is F.
SELECT Fname , Lname , Age FROM Student WHERE Sex = 'F'
[ "SELECT", "Fname", ",", "Lname", ",", "Age", "FROM", "Student", "WHERE", "Sex", "=", "'F", "'" ]
[ "select", "fname", ",", "lname", ",", "age", "from", "student", "where", "sex", "=", "value" ]
[ "Show", "first", "name", ",", "last", "name", ",", "age", "for", "all", "female", "students", ".", "Their", "sex", "is", "F", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are the full names and ages for all female students whose sex is F?
SELECT Fname , Lname , Age FROM Student WHERE Sex = 'F'
[ "SELECT", "Fname", ",", "Lname", ",", "Age", "FROM", "Student", "WHERE", "Sex", "=", "'F", "'" ]
[ "select", "fname", ",", "lname", ",", "age", "from", "student", "where", "sex", "=", "value" ]
[ "What", "are", "the", "full", "names", "and", "ages", "for", "all", "female", "students", "whose", "sex", "is", "F", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show student ids for all male students.
SELECT StuID FROM Student WHERE Sex = 'M'
[ "SELECT", "StuID", "FROM", "Student", "WHERE", "Sex", "=", "'M", "'" ]
[ "select", "stuid", "from", "student", "where", "sex", "=", "value" ]
[ "Show", "student", "ids", "for", "all", "male", "students", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are the student ids for all male students?
SELECT StuID FROM Student WHERE Sex = 'M'
[ "SELECT", "StuID", "FROM", "Student", "WHERE", "Sex", "=", "'M", "'" ]
[ "select", "stuid", "from", "student", "where", "sex", "=", "value" ]
[ "What", "are", "the", "student", "ids", "for", "all", "male", "students", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many students are age 18?
SELECT count(*) FROM Student WHERE age = 18
[ "SELECT", "count", "(", "*", ")", "FROM", "Student", "WHERE", "age", "=", "18" ]
[ "select", "count", "(", "*", ")", "from", "student", "where", "age", "=", "value" ]
[ "How", "many", "students", "are", "age", "18", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many students are 18 years old?
SELECT count(*) FROM Student WHERE age = 18
[ "SELECT", "count", "(", "*", ")", "FROM", "Student", "WHERE", "age", "=", "18" ]
[ "select", "count", "(", "*", ")", "from", "student", "where", "age", "=", "value" ]
[ "How", "many", "students", "are", "18", "years", "old", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all student ids who are older than 20.
SELECT StuID FROM Student WHERE age > 20
[ "SELECT", "StuID", "FROM", "Student", "WHERE", "age", ">", "20" ]
[ "select", "stuid", "from", "student", "where", "age", ">", "value" ]
[ "Show", "all", "student", "ids", "who", "are", "older", "than", "20", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are the student ids for students over 20 years old?
SELECT StuID FROM Student WHERE age > 20
[ "SELECT", "StuID", "FROM", "Student", "WHERE", "age", ">", "20" ]
[ "select", "stuid", "from", "student", "where", "age", ">", "value" ]
[ "What", "are", "the", "student", "ids", "for", "students", "over", "20", "years", "old", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Which city does the student whose last name is "Kim" live in?
SELECT city_code FROM Student WHERE LName = "Kim"
[ "SELECT", "city_code", "FROM", "Student", "WHERE", "LName", "=", "``", "Kim", "''" ]
[ "select", "city_code", "from", "student", "where", "lname", "=", "value" ]
[ "Which", "city", "does", "the", "student", "whose", "last", "name", "is", "``", "Kim", "''", "live", "in", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Give the city that the student whose family name is Kim lives in.
SELECT city_code FROM Student WHERE LName = "Kim"
[ "SELECT", "city_code", "FROM", "Student", "WHERE", "LName", "=", "``", "Kim", "''" ]
[ "select", "city_code", "from", "student", "where", "lname", "=", "value" ]
[ "Give", "the", "city", "that", "the", "student", "whose", "family", "name", "is", "Kim", "lives", "in", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Who is the advisor of student with ID 1004?
SELECT Advisor FROM Student WHERE StuID = 1004
[ "SELECT", "Advisor", "FROM", "Student", "WHERE", "StuID", "=", "1004" ]
[ "select", "advisor", "from", "student", "where", "stuid", "=", "value" ]
[ "Who", "is", "the", "advisor", "of", "student", "with", "ID", "1004", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Who advises student 1004?
SELECT Advisor FROM Student WHERE StuID = 1004
[ "SELECT", "Advisor", "FROM", "Student", "WHERE", "StuID", "=", "1004" ]
[ "select", "advisor", "from", "student", "where", "stuid", "=", "value" ]
[ "Who", "advises", "student", "1004", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many students live in HKG or CHI?
SELECT count(*) FROM Student WHERE city_code = "HKG" OR city_code = "CHI"
[ "SELECT", "count", "(", "*", ")", "FROM", "Student", "WHERE", "city_code", "=", "``", "HKG", "''", "OR", "city_code", "=", "``", "CHI", "''" ]
[ "select", "count", "(", "*", ")", "from", "student", "where", "city_code", "=", "value", "or", "city_code", "=", "value" ]
[ "How", "many", "students", "live", "in", "HKG", "or", "CHI", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Give the number of students living in either HKG or CHI.
SELECT count(*) FROM Student WHERE city_code = "HKG" OR city_code = "CHI"
[ "SELECT", "count", "(", "*", ")", "FROM", "Student", "WHERE", "city_code", "=", "``", "HKG", "''", "OR", "city_code", "=", "``", "CHI", "''" ]
[ "select", "count", "(", "*", ")", "from", "student", "where", "city_code", "=", "value", "or", "city_code", "=", "value" ]
[ "Give", "the", "number", "of", "students", "living", "in", "either", "HKG", "or", "CHI", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show the minimum, average, and maximum age of all students.
SELECT min(age) , avg(age) , max(age) FROM Student
[ "SELECT", "min", "(", "age", ")", ",", "avg", "(", "age", ")", ",", "max", "(", "age", ")", "FROM", "Student" ]
[ "select", "min", "(", "age", ")", ",", "avg", "(", "age", ")", ",", "max", "(", "age", ")", "from", "student" ]
[ "Show", "the", "minimum", ",", "average", ",", "and", "maximum", "age", "of", "all", "students", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What is the minimum, mean, and maximum age across all students?
SELECT min(age) , avg(age) , max(age) FROM Student
[ "SELECT", "min", "(", "age", ")", ",", "avg", "(", "age", ")", ",", "max", "(", "age", ")", "FROM", "Student" ]
[ "select", "min", "(", "age", ")", ",", "avg", "(", "age", ")", ",", "max", "(", "age", ")", "from", "student" ]
[ "What", "is", "the", "minimum", ",", "mean", ",", "and", "maximum", "age", "across", "all", "students", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What is the last name of the youngest student?
SELECT LName FROM Student WHERE age = (SELECT min(age) FROM Student)
[ "SELECT", "LName", "FROM", "Student", "WHERE", "age", "=", "(", "SELECT", "min", "(", "age", ")", "FROM", "Student", ")" ]
[ "select", "lname", "from", "student", "where", "age", "=", "(", "select", "min", "(", "age", ")", "from", "student", ")" ]
[ "What", "is", "the", "last", "name", "of", "the", "youngest", "student", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Provide the last name of the youngest student.
SELECT LName FROM Student WHERE age = (SELECT min(age) FROM Student)
[ "SELECT", "LName", "FROM", "Student", "WHERE", "age", "=", "(", "SELECT", "min", "(", "age", ")", "FROM", "Student", ")" ]
[ "select", "lname", "from", "student", "where", "age", "=", "(", "select", "min", "(", "age", ")", "from", "student", ")" ]
[ "Provide", "the", "last", "name", "of", "the", "youngest", "student", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show the student id of the oldest student.
SELECT StuID FROM Student WHERE age = (SELECT max(age) FROM Student)
[ "SELECT", "StuID", "FROM", "Student", "WHERE", "age", "=", "(", "SELECT", "max", "(", "age", ")", "FROM", "Student", ")" ]
[ "select", "stuid", "from", "student", "where", "age", "=", "(", "select", "max", "(", "age", ")", "from", "student", ")" ]
[ "Show", "the", "student", "id", "of", "the", "oldest", "student", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What student id corresponds to the oldest student?
SELECT StuID FROM Student WHERE age = (SELECT max(age) FROM Student)
[ "SELECT", "StuID", "FROM", "Student", "WHERE", "age", "=", "(", "SELECT", "max", "(", "age", ")", "FROM", "Student", ")" ]
[ "select", "stuid", "from", "student", "where", "age", "=", "(", "select", "max", "(", "age", ")", "from", "student", ")" ]
[ "What", "student", "id", "corresponds", "to", "the", "oldest", "student", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all majors and corresponding number of students.
SELECT major , count(*) FROM Student GROUP BY major
[ "SELECT", "major", ",", "count", "(", "*", ")", "FROM", "Student", "GROUP", "BY", "major" ]
[ "select", "major", ",", "count", "(", "*", ")", "from", "student", "group", "by", "major" ]
[ "Show", "all", "majors", "and", "corresponding", "number", "of", "students", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many students are there for each major?
SELECT major , count(*) FROM Student GROUP BY major
[ "SELECT", "major", ",", "count", "(", "*", ")", "FROM", "Student", "GROUP", "BY", "major" ]
[ "select", "major", ",", "count", "(", "*", ")", "from", "student", "group", "by", "major" ]
[ "How", "many", "students", "are", "there", "for", "each", "major", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Which major has most number of students?
SELECT major FROM Student GROUP BY major ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "major", "FROM", "Student", "GROUP", "BY", "major", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "major", "from", "student", "group", "by", "major", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "major", "has", "most", "number", "of", "students", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What is the largest major?
SELECT major FROM Student GROUP BY major ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "major", "FROM", "Student", "GROUP", "BY", "major", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "major", "from", "student", "group", "by", "major", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "largest", "major", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all ages and corresponding number of students.
SELECT age , count(*) FROM Student GROUP BY age
[ "SELECT", "age", ",", "count", "(", "*", ")", "FROM", "Student", "GROUP", "BY", "age" ]
[ "select", "age", ",", "count", "(", "*", ")", "from", "student", "group", "by", "age" ]
[ "Show", "all", "ages", "and", "corresponding", "number", "of", "students", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How old is each student and how many students are each age?
SELECT age , count(*) FROM Student GROUP BY age
[ "SELECT", "age", ",", "count", "(", "*", ")", "FROM", "Student", "GROUP", "BY", "age" ]
[ "select", "age", ",", "count", "(", "*", ")", "from", "student", "group", "by", "age" ]
[ "How", "old", "is", "each", "student", "and", "how", "many", "students", "are", "each", "age", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show the average age for male and female students.
SELECT avg(age) , sex FROM Student GROUP BY sex
[ "SELECT", "avg", "(", "age", ")", ",", "sex", "FROM", "Student", "GROUP", "BY", "sex" ]
[ "select", "avg", "(", "age", ")", ",", "sex", "from", "student", "group", "by", "sex" ]
[ "Show", "the", "average", "age", "for", "male", "and", "female", "students", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
What are the average ages for male and female students?
SELECT avg(age) , sex FROM Student GROUP BY sex
[ "SELECT", "avg", "(", "age", ")", ",", "sex", "FROM", "Student", "GROUP", "BY", "sex" ]
[ "select", "avg", "(", "age", ")", ",", "sex", "from", "student", "group", "by", "sex" ]
[ "What", "are", "the", "average", "ages", "for", "male", "and", "female", "students", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all cities and corresponding number of students.
SELECT city_code , count(*) FROM Student GROUP BY city_code
[ "SELECT", "city_code", ",", "count", "(", "*", ")", "FROM", "Student", "GROUP", "BY", "city_code" ]
[ "select", "city_code", ",", "count", "(", "*", ")", "from", "student", "group", "by", "city_code" ]
[ "Show", "all", "cities", "and", "corresponding", "number", "of", "students", "." ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
How many students live in each city?
SELECT city_code , count(*) FROM Student GROUP BY city_code
[ "SELECT", "city_code", ",", "count", "(", "*", ")", "FROM", "Student", "GROUP", "BY", "city_code" ]
[ "select", "city_code", ",", "count", "(", "*", ")", "from", "student", "group", "by", "city_code" ]
[ "How", "many", "students", "live", "in", "each", "city", "?" ]
allergy_1
[ "create table Allergy_Type (\n Allergy \t\t VARCHAR(20) PRIMARY KEY,\n AllergyType \t VARCHAR(20)\n);", "create table Has_Allergy (\n StuID \t\t INTEGER,\n Allergy \t\t VARCHAR(20),\n FOREIGN KEY(StuID) REFERENCES Student(StuID),\n FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy)\n);", "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );" ]
Show all advisors and corresponding number of students.
SELECT advisor , count(*) FROM Student GROUP BY advisor
[ "SELECT", "advisor", ",", "count", "(", "*", ")", "FROM", "Student", "GROUP", "BY", "advisor" ]
[ "select", "advisor", ",", "count", "(", "*", ")", "from", "student", "group", "by", "advisor" ]
[ "Show", "all", "advisors", "and", "corresponding", "number", "of", "students", "." ]