| db_id
				 stringlengths 4 31 | query
				 stringlengths 18 577 | question
				 stringlengths 19 228 | query_toks
				 list | query_toks_no_value
				 list | question_toks
				 list | 
|---|---|---|---|---|---|
| 
	bike_1 | 
	SELECT date FROM weather WHERE mean_sea_level_pressure_inches BETWEEN 30.3 AND 31 | 
	What-all are the dates that have an average sea level pressure between 30.3 and 31? | 
	[
  "SELECT",
  "date",
  "FROM",
  "weather",
  "WHERE",
  "mean_sea_level_pressure_inches",
  "BETWEEN",
  "30.3",
  "AND",
  "31"
] | 
	[
  "select",
  "date",
  "from",
  "weather",
  "where",
  "mean_sea_level_pressure_inches",
  "between",
  "value",
  "and",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "dates",
  "that",
  "have",
  "an",
  "average",
  "sea",
  "level",
  "pressure",
  "between",
  "30.3",
  "and",
  "31?"
] | 
| 
	bike_1 | 
	SELECT date ,  max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 | 
	Find the day in which the differences between the max temperature and min temperature were the smallest. Also report the differences. | 
	[
  "SELECT",
  "date",
  ",",
  "max_temperature_f",
  "-",
  "min_temperature_f",
  "FROM",
  "weather",
  "ORDER",
  "BY",
  "max_temperature_f",
  "-",
  "min_temperature_f",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "date",
  ",",
  "max_temperature_f",
  "-",
  "min_temperature_f",
  "from",
  "weather",
  "order",
  "by",
  "max_temperature_f",
  "-",
  "min_temperature_f",
  "limit",
  "value"
] | 
	[
  "Find",
  "the",
  "day",
  "in",
  "which",
  "the",
  "differences",
  "between",
  "the",
  "max",
  "temperature",
  "and",
  "min",
  "temperature",
  "were",
  "the",
  "smallest.",
  "Also",
  "report",
  "the",
  "differences."
] | 
| 
	bike_1 | 
	SELECT date ,  max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 | 
	What-all are the days had the smallest temperature range, and so what-all was that range? | 
	[
  "SELECT",
  "date",
  ",",
  "max_temperature_f",
  "-",
  "min_temperature_f",
  "FROM",
  "weather",
  "ORDER",
  "BY",
  "max_temperature_f",
  "-",
  "min_temperature_f",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "date",
  ",",
  "max_temperature_f",
  "-",
  "min_temperature_f",
  "from",
  "weather",
  "order",
  "by",
  "max_temperature_f",
  "-",
  "min_temperature_f",
  "limit",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "days",
  "had",
  "the",
  "smallest",
  "temperature",
  "range,",
  "and",
  "so",
  "what-all",
  "was",
  "that",
  "range?"
] | 
| 
	bike_1 | 
	SELECT DISTINCT T1.id ,  T1.name FROM station AS T1 JOIN status AS T2 ON T1.id  =  T2.station_id WHERE T2.bikes_available  >  12 | 
	What-all are the id and name of the stations that ever had more than 12 bike available? | 
	[
  "SELECT",
  "DISTINCT",
  "T1.id",
  ",",
  "T1.name",
  "FROM",
  "station",
  "AS",
  "T1",
  "JOIN",
  "status",
  "AS",
  "T2",
  "ON",
  "T1.id",
  "=",
  "T2.station_id",
  "WHERE",
  "T2.bikes_available",
  ">",
  "12"
] | 
	[
  "select",
  "distinct",
  "t1",
  ".",
  "id",
  ",",
  "t1",
  ".",
  "name",
  "from",
  "station",
  "as",
  "t1",
  "join",
  "status",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "id",
  "=",
  "t2",
  ".",
  "station_id",
  "where",
  "t2",
  ".",
  "bikes_available",
  ">",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "id",
  "and",
  "name",
  "of",
  "the",
  "stations",
  "that",
  "ever",
  "had",
  "more",
  "than",
  "12",
  "bike",
  "available?"
] | 
| 
	bike_1 | 
	SELECT DISTINCT T1.id ,  T1.name FROM station AS T1 JOIN status AS T2 ON T1.id  =  T2.station_id WHERE T2.bikes_available  >  12 | 
	What-all are the different ids and names of the stations done had more than 12 bike available? | 
	[
  "SELECT",
  "DISTINCT",
  "T1.id",
  ",",
  "T1.name",
  "FROM",
  "station",
  "AS",
  "T1",
  "JOIN",
  "status",
  "AS",
  "T2",
  "ON",
  "T1.id",
  "=",
  "T2.station_id",
  "WHERE",
  "T2.bikes_available",
  ">",
  "12"
] | 
	[
  "select",
  "distinct",
  "t1",
  ".",
  "id",
  ",",
  "t1",
  ".",
  "name",
  "from",
  "station",
  "as",
  "t1",
  "join",
  "status",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "id",
  "=",
  "t2",
  ".",
  "station_id",
  "where",
  "t2",
  ".",
  "bikes_available",
  ">",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "different",
  "ids",
  "and",
  "names",
  "of",
  "the",
  "stations",
  "done",
  "had",
  "more",
  "than",
  "12",
  "bike",
  "available?"
] | 
| 
	bike_1 | 
	SELECT zip_code FROM weather GROUP BY zip_code HAVING avg(mean_humidity)  <  70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING count(*)  >=  100 | 
	Give us the zip codes where the average mean humidity is below 70 and at least 100 trips taked place. | 
	[
  "SELECT",
  "zip_code",
  "FROM",
  "weather",
  "GROUP",
  "BY",
  "zip_code",
  "HAVING",
  "avg",
  "(",
  "mean_humidity",
  ")",
  "<",
  "70",
  "INTERSECT",
  "SELECT",
  "zip_code",
  "FROM",
  "trip",
  "GROUP",
  "BY",
  "zip_code",
  "HAVING",
  "count",
  "(",
  "*",
  ")",
  ">",
  "=",
  "100"
] | 
	[
  "select",
  "zip_code",
  "from",
  "weather",
  "group",
  "by",
  "zip_code",
  "having",
  "avg",
  "(",
  "mean_humidity",
  ")",
  "<",
  "value",
  "intersect",
  "select",
  "zip_code",
  "from",
  "trip",
  "group",
  "by",
  "zip_code",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "=",
  "value"
] | 
	[
  "Give",
  "us",
  "the",
  "zip",
  "codes",
  "where",
  "the",
  "average",
  "mean",
  "humidity",
  "is",
  "below",
  "70",
  "and",
  "at",
  "least",
  "100",
  "trips",
  "taked",
  "place."
] | 
| 
	bike_1 | 
	SELECT zip_code FROM weather GROUP BY zip_code HAVING avg(mean_humidity)  <  70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING count(*)  >=  100 | 
	What are the zip codes have an average mean 70 humidity and had at least 100 trip come through there? | 
	[
  "SELECT",
  "zip_code",
  "FROM",
  "weather",
  "GROUP",
  "BY",
  "zip_code",
  "HAVING",
  "avg",
  "(",
  "mean_humidity",
  ")",
  "<",
  "70",
  "INTERSECT",
  "SELECT",
  "zip_code",
  "FROM",
  "trip",
  "GROUP",
  "BY",
  "zip_code",
  "HAVING",
  "count",
  "(",
  "*",
  ")",
  ">",
  "=",
  "100"
] | 
	[
  "select",
  "zip_code",
  "from",
  "weather",
  "group",
  "by",
  "zip_code",
  "having",
  "avg",
  "(",
  "mean_humidity",
  ")",
  "<",
  "value",
  "intersect",
  "select",
  "zip_code",
  "from",
  "trip",
  "group",
  "by",
  "zip_code",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "=",
  "value"
] | 
	[
  "What",
  "are",
  "the",
  "zip",
  "codes",
  "have",
  "an",
  "average",
  "mean",
  "70",
  "humidity",
  "and",
  "had",
  "at",
  "least",
  "100",
  "trip",
  "come",
  "through",
  "there?"
] | 
| 
	bike_1 | 
	SELECT name FROM station WHERE city  =  "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING count(*)  >  100 | 
	What-all are the names of stations that are located in Palo Alto city but never was the a-ending point of trips more than 100 times? | 
	[
  "SELECT",
  "name",
  "FROM",
  "station",
  "WHERE",
  "city",
  "=",
  "``",
  "Palo",
  "Alto",
  "''",
  "EXCEPT",
  "SELECT",
  "end_station_name",
  "FROM",
  "trip",
  "GROUP",
  "BY",
  "end_station_name",
  "HAVING",
  "count",
  "(",
  "*",
  ")",
  ">",
  "100"
] | 
	[
  "select",
  "name",
  "from",
  "station",
  "where",
  "city",
  "=",
  "value",
  "except",
  "select",
  "end_station_name",
  "from",
  "trip",
  "group",
  "by",
  "end_station_name",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "names",
  "of",
  "stations",
  "that",
  "are",
  "located",
  "in",
  "Palo",
  "Alto",
  "city",
  "but",
  "never",
  "was",
  "the",
  "a-ending",
  "point",
  "of",
  "trips",
  "more",
  "than",
  "100",
  "times?"
] | 
| 
	bike_1 | 
	SELECT name FROM station WHERE city  =  "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING count(*)  >  100 | 
	What-all are the names of the stations that are located in Palo Alto but have never ain't the ending point of the trips | 
	[
  "SELECT",
  "name",
  "FROM",
  "station",
  "WHERE",
  "city",
  "=",
  "``",
  "Palo",
  "Alto",
  "''",
  "EXCEPT",
  "SELECT",
  "end_station_name",
  "FROM",
  "trip",
  "GROUP",
  "BY",
  "end_station_name",
  "HAVING",
  "count",
  "(",
  "*",
  ")",
  ">",
  "100"
] | 
	[
  "select",
  "name",
  "from",
  "station",
  "where",
  "city",
  "=",
  "value",
  "except",
  "select",
  "end_station_name",
  "from",
  "trip",
  "group",
  "by",
  "end_station_name",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "names",
  "of",
  "the",
  "stations",
  "that",
  "are",
  "located",
  "in",
  "Palo",
  "Alto",
  "but",
  "have",
  "never",
  "ain't",
  "the",
  "ending",
  "point",
  "of",
  "the",
  "trips"
] | 
| 
	bike_1 | 
	SELECT count(*) FROM station AS T1 JOIN trip AS T2 JOIN station AS T3 JOIN trip AS T4 ON T1.id  =  T2.start_station_id AND T2.id  =  T4.id AND T3.id  =  T4.end_station_id WHERE T1.city  =  "Mountain View" AND T3.city  =  "Palo Alto" | 
	How many trips start from Mountain View city and end at Palo Alto city? | 
	[
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "station",
  "AS",
  "T1",
  "JOIN",
  "trip",
  "AS",
  "T2",
  "JOIN",
  "station",
  "AS",
  "T3",
  "JOIN",
  "trip",
  "AS",
  "T4",
  "ON",
  "T1.id",
  "=",
  "T2.start_station_id",
  "AND",
  "T2.id",
  "=",
  "T4.id",
  "AND",
  "T3.id",
  "=",
  "T4.end_station_id",
  "WHERE",
  "T1.city",
  "=",
  "``",
  "Mountain",
  "View",
  "''",
  "AND",
  "T3.city",
  "=",
  "``",
  "Palo",
  "Alto",
  "''"
] | 
	[
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "station",
  "as",
  "t1",
  "join",
  "trip",
  "as",
  "t2",
  "join",
  "station",
  "as",
  "t3",
  "join",
  "trip",
  "as",
  "t4",
  "on",
  "t1",
  ".",
  "id",
  "=",
  "t2",
  ".",
  "start_station_id",
  "and",
  "t2",
  ".",
  "id",
  "=",
  "t4",
  ".",
  "id",
  "and",
  "t3",
  ".",
  "id",
  "=",
  "t4",
  ".",
  "end_station_id",
  "where",
  "t1",
  ".",
  "city",
  "=",
  "value",
  "and",
  "t3",
  ".",
  "city",
  "=",
  "value"
] | 
	[
  "How",
  "many",
  "trips",
  "start",
  "from",
  "Mountain",
  "View",
  "city",
  "and",
  "end",
  "at",
  "Palo",
  "Alto",
  "city?"
] | 
| 
	bike_1 | 
	SELECT count(*) FROM station AS T1 JOIN trip AS T2 JOIN station AS T3 JOIN trip AS T4 ON T1.id  =  T2.start_station_id AND T2.id  =  T4.id AND T3.id  =  T4.end_station_id WHERE T1.city  =  "Mountain View" AND T3.city  =  "Palo Alto" | 
	How many trips stated from  a station in Mountain View and end at one in Palo Alto? | 
	[
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "station",
  "AS",
  "T1",
  "JOIN",
  "trip",
  "AS",
  "T2",
  "JOIN",
  "station",
  "AS",
  "T3",
  "JOIN",
  "trip",
  "AS",
  "T4",
  "ON",
  "T1.id",
  "=",
  "T2.start_station_id",
  "AND",
  "T2.id",
  "=",
  "T4.id",
  "AND",
  "T3.id",
  "=",
  "T4.end_station_id",
  "WHERE",
  "T1.city",
  "=",
  "``",
  "Mountain",
  "View",
  "''",
  "AND",
  "T3.city",
  "=",
  "``",
  "Palo",
  "Alto",
  "''"
] | 
	[
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "station",
  "as",
  "t1",
  "join",
  "trip",
  "as",
  "t2",
  "join",
  "station",
  "as",
  "t3",
  "join",
  "trip",
  "as",
  "t4",
  "on",
  "t1",
  ".",
  "id",
  "=",
  "t2",
  ".",
  "start_station_id",
  "and",
  "t2",
  ".",
  "id",
  "=",
  "t4",
  ".",
  "id",
  "and",
  "t3",
  ".",
  "id",
  "=",
  "t4",
  ".",
  "end_station_id",
  "where",
  "t1",
  ".",
  "city",
  "=",
  "value",
  "and",
  "t3",
  ".",
  "city",
  "=",
  "value"
] | 
	[
  "How",
  "many",
  "trips",
  "stated",
  "from",
  "",
  "a",
  "station",
  "in",
  "Mountain",
  "View",
  "and",
  "end",
  "at",
  "one",
  "in",
  "Palo",
  "Alto?"
] | 
| 
	bike_1 | 
	SELECT avg(T1.lat) ,  avg(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id  =  T2.start_station_id | 
	What-all is the average latitude and longitude of the a-starting points of all trips? | 
	[
  "SELECT",
  "avg",
  "(",
  "T1.lat",
  ")",
  ",",
  "avg",
  "(",
  "T1.long",
  ")",
  "FROM",
  "station",
  "AS",
  "T1",
  "JOIN",
  "trip",
  "AS",
  "T2",
  "ON",
  "T1.id",
  "=",
  "T2.start_station_id"
] | 
	[
  "select",
  "avg",
  "(",
  "t1",
  ".",
  "lat",
  ")",
  ",",
  "avg",
  "(",
  "t1",
  ".",
  "long",
  ")",
  "from",
  "station",
  "as",
  "t1",
  "join",
  "trip",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "id",
  "=",
  "t2",
  ".",
  "start_station_id"
] | 
	[
  "What-all",
  "is",
  "the",
  "average",
  "latitude",
  "and",
  "longitude",
  "of",
  "the",
  "a-starting",
  "points",
  "of",
  "all",
  "trips?"
] | 
| 
	bike_1 | 
	SELECT avg(T1.lat) ,  avg(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id  =  T2.start_station_id | 
	What-all is the average latitude and longitude of all a-starting stations for the trips? | 
	[
  "SELECT",
  "avg",
  "(",
  "T1.lat",
  ")",
  ",",
  "avg",
  "(",
  "T1.long",
  ")",
  "FROM",
  "station",
  "AS",
  "T1",
  "JOIN",
  "trip",
  "AS",
  "T2",
  "ON",
  "T1.id",
  "=",
  "T2.start_station_id"
] | 
	[
  "select",
  "avg",
  "(",
  "t1",
  ".",
  "lat",
  ")",
  ",",
  "avg",
  "(",
  "t1",
  ".",
  "long",
  ")",
  "from",
  "station",
  "as",
  "t1",
  "join",
  "trip",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "id",
  "=",
  "t2",
  ".",
  "start_station_id"
] | 
	[
  "What-all",
  "is",
  "the",
  "average",
  "latitude",
  "and",
  "longitude",
  "of",
  "all",
  "a-starting",
  "stations",
  "for",
  "the",
  "trips?"
] | 
| 
	book_2 | 
	SELECT count(*) FROM book | 
	How many books are there? | 
	[
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "book"
] | 
	[
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "book"
] | 
	[
  "How",
  "many",
  "books",
  "are",
  "there?"
] | 
| 
	book_2 | 
	SELECT Writer FROM book ORDER BY Writer ASC | 
	List the writers of the books in ascending alphabetical order. | 
	[
  "SELECT",
  "Writer",
  "FROM",
  "book",
  "ORDER",
  "BY",
  "Writer",
  "ASC"
] | 
	[
  "select",
  "writer",
  "from",
  "book",
  "order",
  "by",
  "writer",
  "asc"
] | 
	[
  "List",
  "the",
  "writers",
  "of",
  "the",
  "books",
  "in",
  "ascending",
  "alphabetical",
  "order."
] | 
| 
	book_2 | 
	SELECT Title FROM book ORDER BY Issues ASC | 
	Are Listing the titles of the books in a-ascending orders of issues. | 
	[
  "SELECT",
  "Title",
  "FROM",
  "book",
  "ORDER",
  "BY",
  "Issues",
  "ASC"
] | 
	[
  "select",
  "title",
  "from",
  "book",
  "order",
  "by",
  "issues",
  "asc"
] | 
	[
  "Are",
  "Listing",
  "the",
  "titles",
  "of",
  "the",
  "books",
  "in",
  "a-ascending",
  "orders",
  "of",
  "issues."
] | 
| 
	book_2 | 
	SELECT Title FROM book WHERE Writer != "Elaine Lee" | 
	What-all are the titles of the books that's writer ain't "Elaine Lee"? | 
	[
  "SELECT",
  "Title",
  "FROM",
  "book",
  "WHERE",
  "Writer",
  "!",
  "=",
  "``",
  "Elaine",
  "Lee",
  "''"
] | 
	[
  "select",
  "title",
  "from",
  "book",
  "where",
  "writer",
  "!",
  "=",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "titles",
  "of",
  "the",
  "books",
  "that's",
  "writer",
  "ain't",
  "\"Elaine",
  "Lee\"?"
] | 
| 
	book_2 | 
	SELECT Title ,  Issues FROM book | 
	What-all are the title and issues of the books? | 
	[
  "SELECT",
  "Title",
  ",",
  "Issues",
  "FROM",
  "book"
] | 
	[
  "select",
  "title",
  ",",
  "issues",
  "from",
  "book"
] | 
	[
  "What-all",
  "are",
  "the",
  "title",
  "and",
  "issues",
  "of",
  "the",
  "books?"
] | 
| 
	book_2 | 
	SELECT Publication_Date FROM publication ORDER BY Price DESC | 
	What-all are the dates of publications in a-descending order of price? | 
	[
  "SELECT",
  "Publication_Date",
  "FROM",
  "publication",
  "ORDER",
  "BY",
  "Price",
  "DESC"
] | 
	[
  "select",
  "publication_date",
  "from",
  "publication",
  "order",
  "by",
  "price",
  "desc"
] | 
	[
  "What-all",
  "are",
  "the",
  "dates",
  "of",
  "publications",
  "in",
  "a-descending",
  "order",
  "of",
  "price?"
] | 
| 
	book_2 | 
	SELECT DISTINCT Publisher FROM publication WHERE Price  >  5000000 | 
	What-all are the distinct publishers of publications with price higher than 5000000? | 
	[
  "SELECT",
  "DISTINCT",
  "Publisher",
  "FROM",
  "publication",
  "WHERE",
  "Price",
  ">",
  "5000000"
] | 
	[
  "select",
  "distinct",
  "publisher",
  "from",
  "publication",
  "where",
  "price",
  ">",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "distinct",
  "publishers",
  "of",
  "publications",
  "with",
  "price",
  "higher",
  "than",
  "5000000?"
] | 
| 
	book_2 | 
	SELECT Publisher FROM publication ORDER BY Price DESC LIMIT 1 | 
	List the publisher of the publications with the highest price. | 
	[
  "SELECT",
  "Publisher",
  "FROM",
  "publication",
  "ORDER",
  "BY",
  "Price",
  "DESC",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "publisher",
  "from",
  "publication",
  "order",
  "by",
  "price",
  "desc",
  "limit",
  "value"
] | 
	[
  "List",
  "the",
  "publisher",
  "of",
  "the",
  "publications",
  "with",
  "the",
  "highest",
  "price."
] | 
| 
	book_2 | 
	SELECT Publication_Date FROM publication ORDER BY Price ASC LIMIT 3 | 
	Are Listing the publication dates of publications with 3 lowest prices. | 
	[
  "SELECT",
  "Publication_Date",
  "FROM",
  "publication",
  "ORDER",
  "BY",
  "Price",
  "ASC",
  "LIMIT",
  "3"
] | 
	[
  "select",
  "publication_date",
  "from",
  "publication",
  "order",
  "by",
  "price",
  "asc",
  "limit",
  "value"
] | 
	[
  "Are",
  "Listing",
  "the",
  "publication",
  "dates",
  "of",
  "publications",
  "with",
  "3",
  "lowest",
  "prices."
] | 
| 
	book_2 | 
	SELECT T1.Title ,  T2.Publication_Date FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID  =  T2.Book_ID | 
	Are Showing the title and publications dates of books. | 
	[
  "SELECT",
  "T1.Title",
  ",",
  "T2.Publication_Date",
  "FROM",
  "book",
  "AS",
  "T1",
  "JOIN",
  "publication",
  "AS",
  "T2",
  "ON",
  "T1.Book_ID",
  "=",
  "T2.Book_ID"
] | 
	[
  "select",
  "t1",
  ".",
  "title",
  ",",
  "t2",
  ".",
  "publication_date",
  "from",
  "book",
  "as",
  "t1",
  "join",
  "publication",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "book_id",
  "=",
  "t2",
  ".",
  "book_id"
] | 
	[
  "Are",
  "Showing",
  "the",
  "title",
  "and",
  "publications",
  "dates",
  "of",
  "books."
] | 
| 
	book_2 | 
	SELECT T1.Writer FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID  =  T2.Book_ID WHERE T2.Price  >  4000000 | 
	Show writers as published a book with price more than 4000000. | 
	[
  "SELECT",
  "T1.Writer",
  "FROM",
  "book",
  "AS",
  "T1",
  "JOIN",
  "publication",
  "AS",
  "T2",
  "ON",
  "T1.Book_ID",
  "=",
  "T2.Book_ID",
  "WHERE",
  "T2.Price",
  ">",
  "4000000"
] | 
	[
  "select",
  "t1",
  ".",
  "writer",
  "from",
  "book",
  "as",
  "t1",
  "join",
  "publication",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "book_id",
  "=",
  "t2",
  ".",
  "book_id",
  "where",
  "t2",
  ".",
  "price",
  ">",
  "value"
] | 
	[
  "Show",
  "writers",
  "as",
  "published",
  "a",
  "book",
  "with",
  "price",
  "more",
  "than",
  "4000000."
] | 
| 
	book_2 | 
	SELECT T1.Title FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID  =  T2.Book_ID ORDER BY T2.Price DESC | 
	Show the titles of books in a-descending orders of publications price. | 
	[
  "SELECT",
  "T1.Title",
  "FROM",
  "book",
  "AS",
  "T1",
  "JOIN",
  "publication",
  "AS",
  "T2",
  "ON",
  "T1.Book_ID",
  "=",
  "T2.Book_ID",
  "ORDER",
  "BY",
  "T2.Price",
  "DESC"
] | 
	[
  "select",
  "t1",
  ".",
  "title",
  "from",
  "book",
  "as",
  "t1",
  "join",
  "publication",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "book_id",
  "=",
  "t2",
  ".",
  "book_id",
  "order",
  "by",
  "t2",
  ".",
  "price",
  "desc"
] | 
	[
  "Show",
  "the",
  "titles",
  "of",
  "books",
  "in",
  "a-descending",
  "orders",
  "of",
  "publications",
  "price."
] | 
| 
	book_2 | 
	SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*)  >  1 | 
	Show publishers have more than one publication. | 
	[
  "SELECT",
  "Publisher",
  "FROM",
  "publication",
  "GROUP",
  "BY",
  "Publisher",
  "HAVING",
  "COUNT",
  "(",
  "*",
  ")",
  ">",
  "1"
] | 
	[
  "select",
  "publisher",
  "from",
  "publication",
  "group",
  "by",
  "publisher",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "value"
] | 
	[
  "Show",
  "publishers",
  "have",
  "more",
  "than",
  "one",
  "publication."
] | 
| 
	book_2 | 
	SELECT Publisher ,  COUNT(*) FROM publication GROUP BY Publisher | 
	Are Showing different publishers together with the number of publications they have. | 
	[
  "SELECT",
  "Publisher",
  ",",
  "COUNT",
  "(",
  "*",
  ")",
  "FROM",
  "publication",
  "GROUP",
  "BY",
  "Publisher"
] | 
	[
  "select",
  "publisher",
  ",",
  "count",
  "(",
  "*",
  ")",
  "from",
  "publication",
  "group",
  "by",
  "publisher"
] | 
	[
  "Are",
  "Showing",
  "different",
  "publishers",
  "together",
  "with",
  "the",
  "number",
  "of",
  "publications",
  "they",
  "have."
] | 
| 
	book_2 | 
	SELECT Publication_Date FROM publication GROUP BY Publication_Date ORDER BY COUNT(*) DESC LIMIT 1 | 
	Please are showing the most common publication date. | 
	[
  "SELECT",
  "Publication_Date",
  "FROM",
  "publication",
  "GROUP",
  "BY",
  "Publication_Date",
  "ORDER",
  "BY",
  "COUNT",
  "(",
  "*",
  ")",
  "DESC",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "publication_date",
  "from",
  "publication",
  "group",
  "by",
  "publication_date",
  "order",
  "by",
  "count",
  "(",
  "*",
  ")",
  "desc",
  "limit",
  "value"
] | 
	[
  "Please",
  "are",
  "showing",
  "the",
  "most",
  "common",
  "publication",
  "date."
] | 
| 
	book_2 | 
	SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*)  >  1 | 
	Are Listing the writers at wrote more than one book. | 
	[
  "SELECT",
  "Writer",
  "FROM",
  "book",
  "GROUP",
  "BY",
  "Writer",
  "HAVING",
  "COUNT",
  "(",
  "*",
  ")",
  ">",
  "1"
] | 
	[
  "select",
  "writer",
  "from",
  "book",
  "group",
  "by",
  "writer",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "value"
] | 
	[
  "Are",
  "Listing",
  "the",
  "writers",
  "at",
  "wrote",
  "more",
  "than",
  "one",
  "book."
] | 
| 
	book_2 | 
	SELECT Title FROM book WHERE Book_ID NOT IN (SELECT Book_ID FROM publication) | 
	Are Listing the titles of books that ain't published. | 
	[
  "SELECT",
  "Title",
  "FROM",
  "book",
  "WHERE",
  "Book_ID",
  "NOT",
  "IN",
  "(",
  "SELECT",
  "Book_ID",
  "FROM",
  "publication",
  ")"
] | 
	[
  "select",
  "title",
  "from",
  "book",
  "where",
  "book_id",
  "not",
  "in",
  "(",
  "select",
  "book_id",
  "from",
  "publication",
  ")"
] | 
	[
  "Are",
  "Listing",
  "the",
  "titles",
  "of",
  "books",
  "that",
  "ain't",
  "published."
] | 
| 
	book_2 | 
	SELECT Publisher FROM publication WHERE Price  >  10000000 INTERSECT SELECT Publisher FROM publication WHERE Price  <  5000000 | 
	Show the publishers that have publications with price higher to 10000000 and publications with price lower to 5000000. | 
	[
  "SELECT",
  "Publisher",
  "FROM",
  "publication",
  "WHERE",
  "Price",
  ">",
  "10000000",
  "INTERSECT",
  "SELECT",
  "Publisher",
  "FROM",
  "publication",
  "WHERE",
  "Price",
  "<",
  "5000000"
] | 
	[
  "select",
  "publisher",
  "from",
  "publication",
  "where",
  "price",
  ">",
  "value",
  "intersect",
  "select",
  "publisher",
  "from",
  "publication",
  "where",
  "price",
  "<",
  "value"
] | 
	[
  "Show",
  "the",
  "publishers",
  "that",
  "have",
  "publications",
  "with",
  "price",
  "higher",
  "to",
  "10000000",
  "and",
  "publications",
  "with",
  "price",
  "lower",
  "to",
  "5000000."
] | 
| 
	book_2 | 
	SELECT COUNT (DISTINCT Publication_Date) FROM publication | 
	What-all is the number of distinct publication dates? | 
	[
  "SELECT",
  "COUNT",
  "(",
  "DISTINCT",
  "Publication_Date",
  ")",
  "FROM",
  "publication"
] | 
	[
  "select",
  "count",
  "(",
  "distinct",
  "publication_date",
  ")",
  "from",
  "publication"
] | 
	[
  "What-all",
  "is",
  "the",
  "number",
  "of",
  "distinct",
  "publication",
  "dates?"
] | 
| 
	book_2 | 
	SELECT COUNT (DISTINCT Publication_Date) FROM publication | 
	How many distinct publications dates are there in ourn record? | 
	[
  "SELECT",
  "COUNT",
  "(",
  "DISTINCT",
  "Publication_Date",
  ")",
  "FROM",
  "publication"
] | 
	[
  "select",
  "count",
  "(",
  "distinct",
  "publication_date",
  ")",
  "from",
  "publication"
] | 
	[
  "How",
  "many",
  "distinct",
  "publications",
  "dates",
  "are",
  "there",
  "in",
  "ourn",
  "record?"
] | 
| 
	book_2 | 
	SELECT Price FROM publication WHERE Publisher  =  "Person" OR Publisher  =  "Wiley" | 
	Are Showing the publications prices whose publisher is either "Person" or "Wiley" | 
	[
  "SELECT",
  "Price",
  "FROM",
  "publication",
  "WHERE",
  "Publisher",
  "=",
  "``",
  "Person",
  "''",
  "OR",
  "Publisher",
  "=",
  "``",
  "Wiley",
  "''"
] | 
	[
  "select",
  "price",
  "from",
  "publication",
  "where",
  "publisher",
  "=",
  "value",
  "or",
  "publisher",
  "=",
  "value"
] | 
	[
  "Are",
  "Showing",
  "the",
  "publications",
  "prices",
  "whose",
  "publisher",
  "is",
  "either",
  "\"Person\"",
  "or",
  "\"Wiley\""
] | 
| 
	musical | 
	SELECT count(*) FROM actor | 
	How many actors are there? | 
	[
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "actor"
] | 
	[
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "actor"
] | 
	[
  "How",
  "many",
  "actors",
  "are",
  "there?"
] | 
| 
	musical | 
	SELECT count(*) FROM actor | 
	Count the number of actors. | 
	[
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "actor"
] | 
	[
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "actor"
] | 
	[
  "Count",
  "the",
  "number",
  "of",
  "actors."
] | 
| 
	musical | 
	SELECT Name FROM actor ORDER BY Name ASC | 
	Are Listing the name of actors in ascending alphabetical orders. | 
	[
  "SELECT",
  "Name",
  "FROM",
  "actor",
  "ORDER",
  "BY",
  "Name",
  "ASC"
] | 
	[
  "select",
  "name",
  "from",
  "actor",
  "order",
  "by",
  "name",
  "asc"
] | 
	[
  "Are",
  "Listing",
  "the",
  "name",
  "of",
  "actors",
  "in",
  "ascending",
  "alphabetical",
  "orders."
] | 
| 
	musical | 
	SELECT Name FROM actor ORDER BY Name ASC | 
	What are the names of actors, a-ordered alphabetically? | 
	[
  "SELECT",
  "Name",
  "FROM",
  "actor",
  "ORDER",
  "BY",
  "Name",
  "ASC"
] | 
	[
  "select",
  "name",
  "from",
  "actor",
  "order",
  "by",
  "name",
  "asc"
] | 
	[
  "What",
  "are",
  "the",
  "names",
  "of",
  "actors,",
  "a-ordered",
  "alphabetically?"
] | 
| 
	musical | 
	SELECT Character ,  Duration FROM actor | 
	What-all are the characters and duration of actors? | 
	[
  "SELECT",
  "Character",
  ",",
  "Duration",
  "FROM",
  "actor"
] | 
	[
  "select",
  "character",
  ",",
  "duration",
  "from",
  "actor"
] | 
	[
  "What-all",
  "are",
  "the",
  "characters",
  "and",
  "duration",
  "of",
  "actors?"
] | 
| 
	musical | 
	SELECT Character ,  Duration FROM actor | 
	Return the and durations each actor characters. | 
	[
  "SELECT",
  "Character",
  ",",
  "Duration",
  "FROM",
  "actor"
] | 
	[
  "select",
  "character",
  ",",
  "duration",
  "from",
  "actor"
] | 
	[
  "Return",
  "the",
  "and",
  "durations",
  "each",
  "actor",
  "characters."
] | 
| 
	musical | 
	SELECT Name FROM actor WHERE Age != 20 | 
	List the actors name whose ain't 20. | 
	[
  "SELECT",
  "Name",
  "FROM",
  "actor",
  "WHERE",
  "Age",
  "!",
  "=",
  "20"
] | 
	[
  "select",
  "name",
  "from",
  "actor",
  "where",
  "age",
  "!",
  "=",
  "value"
] | 
	[
  "List",
  "the",
  "actors",
  "name",
  "whose",
  "ain't",
  "20."
] | 
| 
	musical | 
	SELECT Name FROM actor WHERE Age != 20 | 
	What-all are the names of actors ain't 20 year old? | 
	[
  "SELECT",
  "Name",
  "FROM",
  "actor",
  "WHERE",
  "Age",
  "!",
  "=",
  "20"
] | 
	[
  "select",
  "name",
  "from",
  "actor",
  "where",
  "age",
  "!",
  "=",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "names",
  "of",
  "actors",
  "ain't",
  "20",
  "year",
  "old?"
] | 
| 
	musical | 
	SELECT Character FROM actor ORDER BY age DESC | 
	What-all are the characters of actors in a-descending order of age? | 
	[
  "SELECT",
  "Character",
  "FROM",
  "actor",
  "ORDER",
  "BY",
  "age",
  "DESC"
] | 
	[
  "select",
  "character",
  "from",
  "actor",
  "order",
  "by",
  "age",
  "desc"
] | 
	[
  "What-all",
  "are",
  "the",
  "characters",
  "of",
  "actors",
  "in",
  "a-descending",
  "order",
  "of",
  "age?"
] | 
| 
	musical | 
	SELECT Character FROM actor ORDER BY age DESC | 
	Return the characters for actors, ordered by age descending. | 
	[
  "SELECT",
  "Character",
  "FROM",
  "actor",
  "ORDER",
  "BY",
  "age",
  "DESC"
] | 
	[
  "select",
  "character",
  "from",
  "actor",
  "order",
  "by",
  "age",
  "desc"
] | 
	[
  "Return",
  "the",
  "characters",
  "for",
  "actors,",
  "ordered",
  "by",
  "age",
  "descending."
] | 
| 
	musical | 
	SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 | 
	What-all is the duration of the oldest actor? | 
	[
  "SELECT",
  "Duration",
  "FROM",
  "actor",
  "ORDER",
  "BY",
  "Age",
  "DESC",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "duration",
  "from",
  "actor",
  "order",
  "by",
  "age",
  "desc",
  "limit",
  "value"
] | 
	[
  "What-all",
  "is",
  "the",
  "duration",
  "of",
  "the",
  "oldest",
  "actor?"
] | 
| 
	musical | 
	SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 | 
	Return the duration of the actor with the most greatest age. | 
	[
  "SELECT",
  "Duration",
  "FROM",
  "actor",
  "ORDER",
  "BY",
  "Age",
  "DESC",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "duration",
  "from",
  "actor",
  "order",
  "by",
  "age",
  "desc",
  "limit",
  "value"
] | 
	[
  "Return",
  "the",
  "duration",
  "of",
  "the",
  "actor",
  "with",
  "the",
  "most",
  "greatest",
  "age."
] | 
| 
	musical | 
	SELECT Name FROM musical WHERE Nominee  =  "Bob Fosse" | 
	What-all are the names of musicals with nominee "Bob Fosse"? | 
	[
  "SELECT",
  "Name",
  "FROM",
  "musical",
  "WHERE",
  "Nominee",
  "=",
  "``",
  "Bob",
  "Fosse",
  "''"
] | 
	[
  "select",
  "name",
  "from",
  "musical",
  "where",
  "nominee",
  "=",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "names",
  "of",
  "musicals",
  "with",
  "nominee",
  "\"Bob",
  "Fosse\"?"
] | 
| 
	musical | 
	SELECT Name FROM musical WHERE Nominee  =  "Bob Fosse" | 
	Are Returning the names of musicals which have the nominee Bob Fosse. | 
	[
  "SELECT",
  "Name",
  "FROM",
  "musical",
  "WHERE",
  "Nominee",
  "=",
  "``",
  "Bob",
  "Fosse",
  "''"
] | 
	[
  "select",
  "name",
  "from",
  "musical",
  "where",
  "nominee",
  "=",
  "value"
] | 
	[
  "Are",
  "Returning",
  "the",
  "names",
  "of",
  "musicals",
  "which",
  "have",
  "the",
  "nominee",
  "Bob",
  "Fosse."
] | 
| 
	musical | 
	SELECT DISTINCT Nominee FROM musical WHERE Award != "Tony Award" | 
	What-all are the distinct nominees of the musicals with the award that ain't "Tony Award"? | 
	[
  "SELECT",
  "DISTINCT",
  "Nominee",
  "FROM",
  "musical",
  "WHERE",
  "Award",
  "!",
  "=",
  "``",
  "Tony",
  "Award",
  "''"
] | 
	[
  "select",
  "distinct",
  "nominee",
  "from",
  "musical",
  "where",
  "award",
  "!",
  "=",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "distinct",
  "nominees",
  "of",
  "the",
  "musicals",
  "with",
  "the",
  "award",
  "that",
  "ain't",
  "\"Tony",
  "Award\"?"
] | 
| 
	musical | 
	SELECT DISTINCT Nominee FROM musical WHERE Award != "Tony Award" | 
	Return the different nominees of musicals have an award ain't the Tony Award. | 
	[
  "SELECT",
  "DISTINCT",
  "Nominee",
  "FROM",
  "musical",
  "WHERE",
  "Award",
  "!",
  "=",
  "``",
  "Tony",
  "Award",
  "''"
] | 
	[
  "select",
  "distinct",
  "nominee",
  "from",
  "musical",
  "where",
  "award",
  "!",
  "=",
  "value"
] | 
	[
  "Return",
  "the",
  "different",
  "nominees",
  "of",
  "musicals",
  "have",
  "an",
  "award",
  "ain't",
  "the",
  "Tony",
  "Award."
] | 
| 
	musical | 
	SELECT T1.Name ,  T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID | 
	Show names of actors and names of musicals they are in. | 
	[
  "SELECT",
  "T1.Name",
  ",",
  "T2.Name",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  ",",
  "t2",
  ".",
  "name",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id"
] | 
	[
  "Show",
  "names",
  "of",
  "actors",
  "and",
  "names",
  "of",
  "musicals",
  "they",
  "are",
  "in."
] | 
| 
	musical | 
	SELECT T1.Name ,  T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID | 
	What-all are the names of actors and the musicals that are in? | 
	[
  "SELECT",
  "T1.Name",
  ",",
  "T2.Name",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  ",",
  "t2",
  ".",
  "name",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id"
] | 
	[
  "What-all",
  "are",
  "the",
  "names",
  "of",
  "actors",
  "and",
  "the",
  "musicals",
  "that",
  "are",
  "in?"
] | 
| 
	musical | 
	SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID WHERE T2.Name  =  "The Phantom of the Opera" | 
	Show names of actors done a-appeared in musical with name "The Phantom of the Opera". | 
	[
  "SELECT",
  "T1.Name",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID",
  "WHERE",
  "T2.Name",
  "=",
  "``",
  "The",
  "Phantom",
  "of",
  "the",
  "Opera",
  "''"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id",
  "where",
  "t2",
  ".",
  "name",
  "=",
  "value"
] | 
	[
  "Show",
  "names",
  "of",
  "actors",
  "done",
  "a-appeared",
  "in",
  "musical",
  "with",
  "name",
  "\"The",
  "Phantom",
  "of",
  "the",
  "Opera\"."
] | 
| 
	musical | 
	SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID WHERE T2.Name  =  "The Phantom of the Opera" | 
	What-all are the names of actors as were in the musical titled The Phantom of the Opera? | 
	[
  "SELECT",
  "T1.Name",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID",
  "WHERE",
  "T2.Name",
  "=",
  "``",
  "The",
  "Phantom",
  "of",
  "the",
  "Opera",
  "''"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id",
  "where",
  "t2",
  ".",
  "name",
  "=",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "names",
  "of",
  "actors",
  "as",
  "were",
  "in",
  "the",
  "musical",
  "titled",
  "The",
  "Phantom",
  "of",
  "the",
  "Opera?"
] | 
| 
	musical | 
	SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID ORDER BY T2.Year DESC | 
	Show names of actors in descending order of the year theirn musical is awarded. | 
	[
  "SELECT",
  "T1.Name",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID",
  "ORDER",
  "BY",
  "T2.Year",
  "DESC"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id",
  "order",
  "by",
  "t2",
  ".",
  "year",
  "desc"
] | 
	[
  "Show",
  "names",
  "of",
  "actors",
  "in",
  "descending",
  "order",
  "of",
  "the",
  "year",
  "theirn",
  "musical",
  "is",
  "awarded."
] | 
| 
	musical | 
	SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID ORDER BY T2.Year DESC | 
	What-all are the names of actors ordered descending by the year in which their musical have been awarded? | 
	[
  "SELECT",
  "T1.Name",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID",
  "ORDER",
  "BY",
  "T2.Year",
  "DESC"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id",
  "order",
  "by",
  "t2",
  ".",
  "year",
  "desc"
] | 
	[
  "What-all",
  "are",
  "the",
  "names",
  "of",
  "actors",
  "ordered",
  "descending",
  "by",
  "the",
  "year",
  "in",
  "which",
  "their",
  "musical",
  "have",
  "been",
  "awarded?"
] | 
| 
	musical | 
	SELECT T2.Name ,  COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID GROUP BY T1.Musical_ID | 
	Are Showing names of musicals and the number of actors which appeared in the musicals. | 
	[
  "SELECT",
  "T2.Name",
  ",",
  "COUNT",
  "(",
  "*",
  ")",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID",
  "GROUP",
  "BY",
  "T1.Musical_ID"
] | 
	[
  "select",
  "t2",
  ".",
  "name",
  ",",
  "count",
  "(",
  "*",
  ")",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id",
  "group",
  "by",
  "t1",
  ".",
  "musical_id"
] | 
	[
  "Are",
  "Showing",
  "names",
  "of",
  "musicals",
  "and",
  "the",
  "number",
  "of",
  "actors",
  "which",
  "appeared",
  "in",
  "the",
  "musicals."
] | 
| 
	musical | 
	SELECT T2.Name ,  COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID GROUP BY T1.Musical_ID | 
	How many actors have done appeared in each musical? | 
	[
  "SELECT",
  "T2.Name",
  ",",
  "COUNT",
  "(",
  "*",
  ")",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID",
  "GROUP",
  "BY",
  "T1.Musical_ID"
] | 
	[
  "select",
  "t2",
  ".",
  "name",
  ",",
  "count",
  "(",
  "*",
  ")",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id",
  "group",
  "by",
  "t1",
  ".",
  "musical_id"
] | 
	[
  "How",
  "many",
  "actors",
  "have",
  "done",
  "appeared",
  "in",
  "each",
  "musical?"
] | 
| 
	musical | 
	SELECT T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID GROUP BY T1.Musical_ID HAVING COUNT(*)  >=  3 | 
	Are Showing names of musicals have at least three actor. | 
	[
  "SELECT",
  "T2.Name",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID",
  "GROUP",
  "BY",
  "T1.Musical_ID",
  "HAVING",
  "COUNT",
  "(",
  "*",
  ")",
  ">",
  "=",
  "3"
] | 
	[
  "select",
  "t2",
  ".",
  "name",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id",
  "group",
  "by",
  "t1",
  ".",
  "musical_id",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "=",
  "value"
] | 
	[
  "Are",
  "Showing",
  "names",
  "of",
  "musicals",
  "have",
  "at",
  "least",
  "three",
  "actor."
] | 
| 
	musical | 
	SELECT T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID  =  T2.Musical_ID GROUP BY T1.Musical_ID HAVING COUNT(*)  >=  3 | 
	What-all are the names of musicals have at 3 or more actors? | 
	[
  "SELECT",
  "T2.Name",
  "FROM",
  "actor",
  "AS",
  "T1",
  "JOIN",
  "musical",
  "AS",
  "T2",
  "ON",
  "T1.Musical_ID",
  "=",
  "T2.Musical_ID",
  "GROUP",
  "BY",
  "T1.Musical_ID",
  "HAVING",
  "COUNT",
  "(",
  "*",
  ")",
  ">",
  "=",
  "3"
] | 
	[
  "select",
  "t2",
  ".",
  "name",
  "from",
  "actor",
  "as",
  "t1",
  "join",
  "musical",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "musical_id",
  "=",
  "t2",
  ".",
  "musical_id",
  "group",
  "by",
  "t1",
  ".",
  "musical_id",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "=",
  "value"
] | 
	[
  "What-all",
  "are",
  "the",
  "names",
  "of",
  "musicals",
  "have",
  "at",
  "3",
  "or",
  "more",
  "actors?"
] | 
| 
	musical | 
	SELECT Nominee ,  COUNT(*) FROM musical GROUP BY Nominee | 
	Are Showing different nominees and the number of musicals they done a-been a-nominated. | 
	[
  "SELECT",
  "Nominee",
  ",",
  "COUNT",
  "(",
  "*",
  ")",
  "FROM",
  "musical",
  "GROUP",
  "BY",
  "Nominee"
] | 
	[
  "select",
  "nominee",
  ",",
  "count",
  "(",
  "*",
  ")",
  "from",
  "musical",
  "group",
  "by",
  "nominee"
] | 
	[
  "Are",
  "Showing",
  "different",
  "nominees",
  "and",
  "the",
  "number",
  "of",
  "musicals",
  "they",
  "done",
  "a-been",
  "a-nominated."
] | 
| 
	musical | 
	SELECT Nominee ,  COUNT(*) FROM musical GROUP BY Nominee | 
	How many musicals has done each nominee been nominated for? | 
	[
  "SELECT",
  "Nominee",
  ",",
  "COUNT",
  "(",
  "*",
  ")",
  "FROM",
  "musical",
  "GROUP",
  "BY",
  "Nominee"
] | 
	[
  "select",
  "nominee",
  ",",
  "count",
  "(",
  "*",
  ")",
  "from",
  "musical",
  "group",
  "by",
  "nominee"
] | 
	[
  "How",
  "many",
  "musicals",
  "has",
  "done",
  "each",
  "nominee",
  "been",
  "nominated",
  "for?"
] | 
| 
	musical | 
	SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 | 
	Please show the nominee as has been nominated the greatest number of times. | 
	[
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "GROUP",
  "BY",
  "Nominee",
  "ORDER",
  "BY",
  "COUNT",
  "(",
  "*",
  ")",
  "DESC",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "nominee",
  "from",
  "musical",
  "group",
  "by",
  "nominee",
  "order",
  "by",
  "count",
  "(",
  "*",
  ")",
  "desc",
  "limit",
  "value"
] | 
	[
  "Please",
  "show",
  "the",
  "nominee",
  "as",
  "has",
  "been",
  "nominated",
  "the",
  "greatest",
  "number",
  "of",
  "times."
] | 
| 
	musical | 
	SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 | 
	Who-all is the nominee which has done been nominated them for the most musicals? | 
	[
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "GROUP",
  "BY",
  "Nominee",
  "ORDER",
  "BY",
  "COUNT",
  "(",
  "*",
  ")",
  "DESC",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "nominee",
  "from",
  "musical",
  "group",
  "by",
  "nominee",
  "order",
  "by",
  "count",
  "(",
  "*",
  ")",
  "desc",
  "limit",
  "value"
] | 
	[
  "Who-all",
  "is",
  "the",
  "nominee",
  "which",
  "has",
  "done",
  "been",
  "nominated",
  "them",
  "for",
  "the",
  "most",
  "musicals?"
] | 
| 
	musical | 
	SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 | 
	Are Listing the most common result of the musicals. | 
	[
  "SELECT",
  "RESULT",
  "FROM",
  "musical",
  "GROUP",
  "BY",
  "RESULT",
  "ORDER",
  "BY",
  "COUNT",
  "(",
  "*",
  ")",
  "DESC",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "result",
  "from",
  "musical",
  "group",
  "by",
  "result",
  "order",
  "by",
  "count",
  "(",
  "*",
  ")",
  "desc",
  "limit",
  "value"
] | 
	[
  "Are",
  "Listing",
  "the",
  "most",
  "common",
  "result",
  "of",
  "the",
  "musicals."
] | 
| 
	musical | 
	SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 | 
	Are Returning the most frequent result across all musicals. | 
	[
  "SELECT",
  "RESULT",
  "FROM",
  "musical",
  "GROUP",
  "BY",
  "RESULT",
  "ORDER",
  "BY",
  "COUNT",
  "(",
  "*",
  ")",
  "DESC",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "result",
  "from",
  "musical",
  "group",
  "by",
  "result",
  "order",
  "by",
  "count",
  "(",
  "*",
  ")",
  "desc",
  "limit",
  "value"
] | 
	[
  "Are",
  "Returning",
  "the",
  "most",
  "frequent",
  "result",
  "across",
  "all",
  "musicals."
] | 
| 
	musical | 
	SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*)  >  2 | 
	Are Listing the nominees that done been nominated more than two musical. | 
	[
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "GROUP",
  "BY",
  "Nominee",
  "HAVING",
  "COUNT",
  "(",
  "*",
  ")",
  ">",
  "2"
] | 
	[
  "select",
  "nominee",
  "from",
  "musical",
  "group",
  "by",
  "nominee",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "value"
] | 
	[
  "Are",
  "Listing",
  "the",
  "nominees",
  "that",
  "done",
  "been",
  "nominated",
  "more",
  "than",
  "two",
  "musical."
] | 
| 
	musical | 
	SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*)  >  2 | 
	Who-all are the nominees which have done been nominated more than two times? | 
	[
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "GROUP",
  "BY",
  "Nominee",
  "HAVING",
  "COUNT",
  "(",
  "*",
  ")",
  ">",
  "2"
] | 
	[
  "select",
  "nominee",
  "from",
  "musical",
  "group",
  "by",
  "nominee",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "value"
] | 
	[
  "Who-all",
  "are",
  "the",
  "nominees",
  "which",
  "have",
  "done",
  "been",
  "nominated",
  "more",
  "than",
  "two",
  "times?"
] | 
| 
	musical | 
	SELECT Name FROM musical WHERE Musical_ID NOT IN (SELECT Musical_ID FROM actor) | 
	Are Listing the name of musicals that do ain't no actors. | 
	[
  "SELECT",
  "Name",
  "FROM",
  "musical",
  "WHERE",
  "Musical_ID",
  "NOT",
  "IN",
  "(",
  "SELECT",
  "Musical_ID",
  "FROM",
  "actor",
  ")"
] | 
	[
  "select",
  "name",
  "from",
  "musical",
  "where",
  "musical_id",
  "not",
  "in",
  "(",
  "select",
  "musical_id",
  "from",
  "actor",
  ")"
] | 
	[
  "Are",
  "Listing",
  "the",
  "name",
  "of",
  "musicals",
  "that",
  "do",
  "ain't",
  "no",
  "actors."
] | 
| 
	musical | 
	SELECT Name FROM musical WHERE Musical_ID NOT IN (SELECT Musical_ID FROM actor) | 
	What-all are the names of musicals have no actors? | 
	[
  "SELECT",
  "Name",
  "FROM",
  "musical",
  "WHERE",
  "Musical_ID",
  "NOT",
  "IN",
  "(",
  "SELECT",
  "Musical_ID",
  "FROM",
  "actor",
  ")"
] | 
	[
  "select",
  "name",
  "from",
  "musical",
  "where",
  "musical_id",
  "not",
  "in",
  "(",
  "select",
  "musical_id",
  "from",
  "actor",
  ")"
] | 
	[
  "What-all",
  "are",
  "the",
  "names",
  "of",
  "musicals",
  "have",
  "no",
  "actors?"
] | 
| 
	musical | 
	SELECT Nominee FROM musical WHERE Award  =  "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award  =  "Drama Desk Award" | 
	Are Showing the nominees nominated musicals for both "Tony Award" and "Drama Desk Award". | 
	[
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "WHERE",
  "Award",
  "=",
  "``",
  "Tony",
  "Award",
  "''",
  "INTERSECT",
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "WHERE",
  "Award",
  "=",
  "``",
  "Drama",
  "Desk",
  "Award",
  "''"
] | 
	[
  "select",
  "nominee",
  "from",
  "musical",
  "where",
  "award",
  "=",
  "value",
  "intersect",
  "select",
  "nominee",
  "from",
  "musical",
  "where",
  "award",
  "=",
  "value"
] | 
	[
  "Are",
  "Showing",
  "the",
  "nominees",
  "nominated",
  "musicals",
  "for",
  "both",
  "\"Tony",
  "Award\"",
  "and",
  "\"Drama",
  "Desk",
  "Award\"."
] | 
| 
	musical | 
	SELECT Nominee FROM musical WHERE Award  =  "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award  =  "Drama Desk Award" | 
	Who-all are the nominees which have been nominated for both a Tony Award and a Drama Desk Award? | 
	[
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "WHERE",
  "Award",
  "=",
  "``",
  "Tony",
  "Award",
  "''",
  "INTERSECT",
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "WHERE",
  "Award",
  "=",
  "``",
  "Drama",
  "Desk",
  "Award",
  "''"
] | 
	[
  "select",
  "nominee",
  "from",
  "musical",
  "where",
  "award",
  "=",
  "value",
  "intersect",
  "select",
  "nominee",
  "from",
  "musical",
  "where",
  "award",
  "=",
  "value"
] | 
	[
  "Who-all",
  "are",
  "the",
  "nominees",
  "which",
  "have",
  "been",
  "nominated",
  "for",
  "both",
  "a",
  "Tony",
  "Award",
  "and",
  "a",
  "Drama",
  "Desk",
  "Award?"
] | 
| 
	musical | 
	SELECT Nominee FROM musical WHERE Award  =  "Tony Award" OR Award  =  "Cleavant Derricks" | 
	Show the musical award nominee "Bob Fosse" or "Cleavant Derricks". | 
	[
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "WHERE",
  "Award",
  "=",
  "``",
  "Tony",
  "Award",
  "''",
  "OR",
  "Award",
  "=",
  "``",
  "Cleavant",
  "Derricks",
  "''"
] | 
	[
  "select",
  "nominee",
  "from",
  "musical",
  "where",
  "award",
  "=",
  "value",
  "or",
  "award",
  "=",
  "value"
] | 
	[
  "Show",
  "the",
  "musical",
  "award",
  "nominee",
  "\"Bob",
  "Fosse\"",
  "or",
  "\"Cleavant",
  "Derricks\"."
] | 
| 
	musical | 
	SELECT Nominee FROM musical WHERE Award  =  "Tony Award" OR Award  =  "Cleavant Derricks" | 
	Who-all are the nominees as was a-nominated for either of the Bob Fosse or Cleavant Derricks awards? | 
	[
  "SELECT",
  "Nominee",
  "FROM",
  "musical",
  "WHERE",
  "Award",
  "=",
  "``",
  "Tony",
  "Award",
  "''",
  "OR",
  "Award",
  "=",
  "``",
  "Cleavant",
  "Derricks",
  "''"
] | 
	[
  "select",
  "nominee",
  "from",
  "musical",
  "where",
  "award",
  "=",
  "value",
  "or",
  "award",
  "=",
  "value"
] | 
	[
  "Who-all",
  "are",
  "the",
  "nominees",
  "as",
  "was",
  "a-nominated",
  "for",
  "either",
  "of",
  "the",
  "Bob",
  "Fosse",
  "or",
  "Cleavant",
  "Derricks",
  "awards?"
] | 
| 
	twitter_1 | 
	SELECT email FROM user_profiles WHERE name  =  'Mary' | 
	Are Finding the emails of the user named "Mary". | 
	[
  "SELECT",
  "email",
  "FROM",
  "user_profiles",
  "WHERE",
  "name",
  "=",
  "'Mary",
  "'"
] | 
	[
  "select",
  "email",
  "from",
  "user_profiles",
  "where",
  "name",
  "=",
  "value"
] | 
	[
  "Are",
  "Finding",
  "the",
  "emails",
  "of",
  "the",
  "user",
  "named",
  "\"Mary\"."
] | 
| 
	twitter_1 | 
	SELECT partitionid FROM user_profiles WHERE name  =  'Iron Man' | 
	What-all is the partition id of the user a-named "Iron Man". | 
	[
  "SELECT",
  "partitionid",
  "FROM",
  "user_profiles",
  "WHERE",
  "name",
  "=",
  "'Iron",
  "Man",
  "'"
] | 
	[
  "select",
  "partitionid",
  "from",
  "user_profiles",
  "where",
  "name",
  "=",
  "value"
] | 
	[
  "What-all",
  "is",
  "the",
  "partition",
  "id",
  "of",
  "the",
  "user",
  "a-named",
  "\"Iron",
  "Man\"."
] | 
| 
	twitter_1 | 
	SELECT count(*) FROM user_profiles | 
	How many users are there? | 
	[
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "user_profiles"
] | 
	[
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "user_profiles"
] | 
	[
  "How",
  "many",
  "users",
  "are",
  "there?"
] | 
| 
	twitter_1 | 
	SELECT count(*) FROM follows | 
	How many followers does each user have? | 
	[
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "follows"
] | 
	[
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "follows"
] | 
	[
  "How",
  "many",
  "followers",
  "does",
  "each",
  "user",
  "have?"
] | 
| 
	twitter_1 | 
	SELECT count(*) FROM follows GROUP BY f1 | 
	Are Finding the number of followers for each user. | 
	[
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "follows",
  "GROUP",
  "BY",
  "f1"
] | 
	[
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "follows",
  "group",
  "by",
  "value"
] | 
	[
  "Are",
  "Finding",
  "the",
  "number",
  "of",
  "followers",
  "for",
  "each",
  "user."
] | 
| 
	twitter_1 | 
	SELECT count(*) FROM tweets | 
	Are Finding the number of tweets in record. | 
	[
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "tweets"
] | 
	[
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "tweets"
] | 
	[
  "Are",
  "Finding",
  "the",
  "number",
  "of",
  "tweets",
  "in",
  "record."
] | 
| 
	twitter_1 | 
	SELECT count(DISTINCT UID) FROM tweets | 
	Find the number of users had posted some tweets. | 
	[
  "SELECT",
  "count",
  "(",
  "DISTINCT",
  "UID",
  ")",
  "FROM",
  "tweets"
] | 
	[
  "select",
  "count",
  "(",
  "distinct",
  "uid",
  ")",
  "from",
  "tweets"
] | 
	[
  "Find",
  "the",
  "number",
  "of",
  "users",
  "had",
  "posted",
  "some",
  "tweets."
] | 
| 
	twitter_1 | 
	SELECT name ,  email FROM user_profiles WHERE name LIKE '%Swift%' | 
	Find the name and emails of the user whose contains the word ‘Swift’. | 
	[
  "SELECT",
  "name",
  ",",
  "email",
  "FROM",
  "user_profiles",
  "WHERE",
  "name",
  "LIKE",
  "'",
  "%",
  "Swift",
  "%",
  "'"
] | 
	[
  "select",
  "name",
  ",",
  "email",
  "from",
  "user_profiles",
  "where",
  "name",
  "like",
  "value"
] | 
	[
  "Find",
  "the",
  "name",
  "and",
  "emails",
  "of",
  "the",
  "user",
  "whose",
  "contains",
  "the",
  "word",
  "‘Swift’."
] | 
| 
	twitter_1 | 
	SELECT name FROM user_profiles WHERE email LIKE '%superstar%' OR email LIKE '%edu%' | 
	Find the names of users what's emails contain ‘nsuperstar’ or ‘edu’. | 
	[
  "SELECT",
  "name",
  "FROM",
  "user_profiles",
  "WHERE",
  "email",
  "LIKE",
  "'",
  "%",
  "superstar",
  "%",
  "'",
  "OR",
  "email",
  "LIKE",
  "'",
  "%",
  "edu",
  "%",
  "'"
] | 
	[
  "select",
  "name",
  "from",
  "user_profiles",
  "where",
  "email",
  "like",
  "value",
  "or",
  "email",
  "like",
  "value"
] | 
	[
  "Find",
  "the",
  "names",
  "of",
  "users",
  "what's",
  "emails",
  "contain",
  "‘nsuperstar’",
  "or",
  "‘edu’."
] | 
| 
	twitter_1 | 
	SELECT text FROM tweets WHERE text LIKE '%intern%' | 
	Are Returning the text of tweets about the topic 'intern'. | 
	[
  "SELECT",
  "text",
  "FROM",
  "tweets",
  "WHERE",
  "text",
  "LIKE",
  "'",
  "%",
  "intern",
  "%",
  "'"
] | 
	[
  "select",
  "text",
  "from",
  "tweets",
  "where",
  "text",
  "like",
  "value"
] | 
	[
  "Are",
  "Returning",
  "the",
  "text",
  "of",
  "tweets",
  "about",
  "the",
  "topic",
  "'intern'."
] | 
| 
	twitter_1 | 
	SELECT name ,  email FROM user_profiles WHERE followers  >  1000 | 
	Find the name and email of the users which have more than 1000 follower. | 
	[
  "SELECT",
  "name",
  ",",
  "email",
  "FROM",
  "user_profiles",
  "WHERE",
  "followers",
  ">",
  "1000"
] | 
	[
  "select",
  "name",
  ",",
  "email",
  "from",
  "user_profiles",
  "where",
  "followers",
  ">",
  "value"
] | 
	[
  "Find",
  "the",
  "name",
  "and",
  "email",
  "of",
  "the",
  "users",
  "which",
  "have",
  "more",
  "than",
  "1000",
  "follower."
] | 
| 
	twitter_1 | 
	SELECT T1.name FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid  =  T2.f1 GROUP BY T2.f1 HAVING count(*)  >  (SELECT count(*) FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid  =  T2.f1 WHERE T1.name  =  'Tyler Swift') | 
	Find the names of the users what's of followers is greater than that of the user named "Tyler Swift". | 
	[
  "SELECT",
  "T1.name",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "follows",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.f1",
  "GROUP",
  "BY",
  "T2.f1",
  "HAVING",
  "count",
  "(",
  "*",
  ")",
  ">",
  "(",
  "SELECT",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "follows",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.f1",
  "WHERE",
  "T1.name",
  "=",
  "'Tyler",
  "Swift",
  "'",
  ")"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "follows",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "f1",
  "group",
  "by",
  "t2",
  ".",
  "f1",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "(",
  "select",
  "count",
  "(",
  "*",
  ")",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "follows",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "f1",
  "where",
  "t1",
  ".",
  "name",
  "=",
  "value",
  ")"
] | 
	[
  "Find",
  "the",
  "names",
  "of",
  "the",
  "users",
  "what's",
  "of",
  "followers",
  "is",
  "greater",
  "than",
  "that",
  "of",
  "the",
  "user",
  "named",
  "\"Tyler",
  "Swift\"."
] | 
| 
	twitter_1 | 
	SELECT T1.name ,  T1.email FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid  =  T2.f1 GROUP BY T2.f1 HAVING count(*)  >  1 | 
	Are Finding the name and email for the users as have more than one follower. | 
	[
  "SELECT",
  "T1.name",
  ",",
  "T1.email",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "follows",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.f1",
  "GROUP",
  "BY",
  "T2.f1",
  "HAVING",
  "count",
  "(",
  "*",
  ")",
  ">",
  "1"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  ",",
  "t1",
  ".",
  "email",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "follows",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "f1",
  "group",
  "by",
  "t2",
  ".",
  "f1",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "value"
] | 
	[
  "Are",
  "Finding",
  "the",
  "name",
  "and",
  "email",
  "for",
  "the",
  "users",
  "as",
  "have",
  "more",
  "than",
  "one",
  "follower."
] | 
| 
	twitter_1 | 
	SELECT T1.name FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid  =  T2.uid GROUP BY T2.uid HAVING count(*)  >  1 | 
	Find the names of users have more than one tweet. | 
	[
  "SELECT",
  "T1.name",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "tweets",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.uid",
  "GROUP",
  "BY",
  "T2.uid",
  "HAVING",
  "count",
  "(",
  "*",
  ")",
  ">",
  "1"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "tweets",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "uid",
  "group",
  "by",
  "t2",
  ".",
  "uid",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "value"
] | 
	[
  "Find",
  "the",
  "names",
  "of",
  "users",
  "have",
  "more",
  "than",
  "one",
  "tweet."
] | 
| 
	twitter_1 | 
	SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid  =  T2.f2 WHERE T1.name  =  "Mary" INTERSECT SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid  =  T2.f2 WHERE T1.name  =  "Susan" | 
	Find the imight would of users which are followed it by Mary and Susan. | 
	[
  "SELECT",
  "T2.f1",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "follows",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.f2",
  "WHERE",
  "T1.name",
  "=",
  "``",
  "Mary",
  "''",
  "INTERSECT",
  "SELECT",
  "T2.f1",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "follows",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.f2",
  "WHERE",
  "T1.name",
  "=",
  "``",
  "Susan",
  "''"
] | 
	[
  "select",
  "t2",
  ".",
  "f1",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "follows",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "f2",
  "where",
  "t1",
  ".",
  "name",
  "=",
  "value",
  "intersect",
  "select",
  "t2",
  ".",
  "f1",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "follows",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "f2",
  "where",
  "t1",
  ".",
  "name",
  "=",
  "value"
] | 
	[
  "Find",
  "the",
  "imight",
  "would",
  "of",
  "users",
  "which",
  "are",
  "followed",
  "it",
  "by",
  "Mary",
  "and",
  "Susan."
] | 
| 
	twitter_1 | 
	SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid  =  T2.f2 WHERE T1.name  =  "Mary" OR T1.name  =  "Susan" | 
	Are Finding the imight would of users which are followed by Mary or Susan. | 
	[
  "SELECT",
  "T2.f1",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "follows",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.f2",
  "WHERE",
  "T1.name",
  "=",
  "``",
  "Mary",
  "''",
  "OR",
  "T1.name",
  "=",
  "``",
  "Susan",
  "''"
] | 
	[
  "select",
  "t2",
  ".",
  "f1",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "follows",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "f2",
  "where",
  "t1",
  ".",
  "name",
  "=",
  "value",
  "or",
  "t1",
  ".",
  "name",
  "=",
  "value"
] | 
	[
  "Are",
  "Finding",
  "the",
  "imight",
  "would",
  "of",
  "users",
  "which",
  "are",
  "followed",
  "by",
  "Mary",
  "or",
  "Susan."
] | 
| 
	twitter_1 | 
	SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 1 | 
	Find the name of the user which has the largest number of followers. | 
	[
  "SELECT",
  "name",
  "FROM",
  "user_profiles",
  "ORDER",
  "BY",
  "followers",
  "DESC",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "name",
  "from",
  "user_profiles",
  "order",
  "by",
  "followers",
  "desc",
  "limit",
  "value"
] | 
	[
  "Find",
  "the",
  "name",
  "of",
  "the",
  "user",
  "which",
  "has",
  "the",
  "largest",
  "number",
  "of",
  "followers."
] | 
| 
	twitter_1 | 
	SELECT name ,  email FROM user_profiles ORDER BY followers LIMIT 1 | 
	Are Finding the name and email of the user a-followed by the least number of people. | 
	[
  "SELECT",
  "name",
  ",",
  "email",
  "FROM",
  "user_profiles",
  "ORDER",
  "BY",
  "followers",
  "LIMIT",
  "1"
] | 
	[
  "select",
  "name",
  ",",
  "email",
  "from",
  "user_profiles",
  "order",
  "by",
  "followers",
  "limit",
  "value"
] | 
	[
  "Are",
  "Finding",
  "the",
  "name",
  "and",
  "email",
  "of",
  "the",
  "user",
  "a-followed",
  "by",
  "the",
  "least",
  "number",
  "of",
  "people."
] | 
| 
	twitter_1 | 
	SELECT name ,  followers FROM user_profiles ORDER BY followers DESC | 
	Are Listing the name and number of followers for each user, and are sorting the results by the number of followers in a-descending order. | 
	[
  "SELECT",
  "name",
  ",",
  "followers",
  "FROM",
  "user_profiles",
  "ORDER",
  "BY",
  "followers",
  "DESC"
] | 
	[
  "select",
  "name",
  ",",
  "followers",
  "from",
  "user_profiles",
  "order",
  "by",
  "followers",
  "desc"
] | 
	[
  "Are",
  "Listing",
  "the",
  "name",
  "and",
  "number",
  "of",
  "followers",
  "for",
  "each",
  "user,",
  "and",
  "are",
  "sorting",
  "the",
  "results",
  "by",
  "the",
  "number",
  "of",
  "followers",
  "in",
  "a-descending",
  "order."
] | 
| 
	twitter_1 | 
	SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 5 | 
	Are Listing the names of 5 user followed by the largest number of other users. | 
	[
  "SELECT",
  "name",
  "FROM",
  "user_profiles",
  "ORDER",
  "BY",
  "followers",
  "DESC",
  "LIMIT",
  "5"
] | 
	[
  "select",
  "name",
  "from",
  "user_profiles",
  "order",
  "by",
  "followers",
  "desc",
  "limit",
  "value"
] | 
	[
  "Are",
  "Listing",
  "the",
  "names",
  "of",
  "5",
  "user",
  "followed",
  "by",
  "the",
  "largest",
  "number",
  "of",
  "other",
  "users."
] | 
| 
	twitter_1 | 
	SELECT text FROM tweets ORDER BY createdate | 
	Are Listing the text of all tweets in the order of date. | 
	[
  "SELECT",
  "text",
  "FROM",
  "tweets",
  "ORDER",
  "BY",
  "createdate"
] | 
	[
  "select",
  "text",
  "from",
  "tweets",
  "order",
  "by",
  "createdate"
] | 
	[
  "Are",
  "Listing",
  "the",
  "text",
  "of",
  "all",
  "tweets",
  "in",
  "the",
  "order",
  "of",
  "date."
] | 
| 
	twitter_1 | 
	SELECT T1.name ,  count(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid  =  T2.uid GROUP BY T2.uid | 
	Find the name of each user and number of tweets tweeted by each of them. | 
	[
  "SELECT",
  "T1.name",
  ",",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "tweets",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.uid",
  "GROUP",
  "BY",
  "T2.uid"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  ",",
  "count",
  "(",
  "*",
  ")",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "tweets",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "uid",
  "group",
  "by",
  "t2",
  ".",
  "uid"
] | 
	[
  "Find",
  "the",
  "name",
  "of",
  "each",
  "user",
  "and",
  "number",
  "of",
  "tweets",
  "tweeted",
  "by",
  "each",
  "of",
  "them."
] | 
| 
	twitter_1 | 
	SELECT T1.name ,  T1.partitionid FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid  =  T2.uid GROUP BY T2.uid HAVING count(*)  <  2 | 
	Find the name and partition imight would for users had tweeted less than twice. | 
	[
  "SELECT",
  "T1.name",
  ",",
  "T1.partitionid",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "tweets",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.uid",
  "GROUP",
  "BY",
  "T2.uid",
  "HAVING",
  "count",
  "(",
  "*",
  ")",
  "<",
  "2"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  ",",
  "t1",
  ".",
  "partitionid",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "tweets",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "uid",
  "group",
  "by",
  "t2",
  ".",
  "uid",
  "having",
  "count",
  "(",
  "*",
  ")",
  "<",
  "value"
] | 
	[
  "Find",
  "the",
  "name",
  "and",
  "partition",
  "imight",
  "would",
  "for",
  "users",
  "had",
  "tweeted",
  "less",
  "than",
  "twice."
] | 
| 
	twitter_1 | 
	SELECT T1.name ,  count(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid  =  T2.uid GROUP BY T2.uid HAVING count(*)  >  1 | 
	Are Finding the name of the user tweet more than once, and number of tweets tweeted by them. | 
	[
  "SELECT",
  "T1.name",
  ",",
  "count",
  "(",
  "*",
  ")",
  "FROM",
  "user_profiles",
  "AS",
  "T1",
  "JOIN",
  "tweets",
  "AS",
  "T2",
  "ON",
  "T1.uid",
  "=",
  "T2.uid",
  "GROUP",
  "BY",
  "T2.uid",
  "HAVING",
  "count",
  "(",
  "*",
  ")",
  ">",
  "1"
] | 
	[
  "select",
  "t1",
  ".",
  "name",
  ",",
  "count",
  "(",
  "*",
  ")",
  "from",
  "user_profiles",
  "as",
  "t1",
  "join",
  "tweets",
  "as",
  "t2",
  "on",
  "t1",
  ".",
  "uid",
  "=",
  "t2",
  ".",
  "uid",
  "group",
  "by",
  "t2",
  ".",
  "uid",
  "having",
  "count",
  "(",
  "*",
  ")",
  ">",
  "value"
] | 
	[
  "Are",
  "Finding",
  "the",
  "name",
  "of",
  "the",
  "user",
  "tweet",
  "more",
  "than",
  "once,",
  "and",
  "number",
  "of",
  "tweets",
  "tweeted",
  "by",
  "them."
] | 
| 
	twitter_1 | 
	SELECT avg(followers) FROM user_profiles WHERE UID NOT IN (SELECT UID FROM tweets) | 
	Find the average number of followers for the users at do ain't no tweet. | 
	[
  "SELECT",
  "avg",
  "(",
  "followers",
  ")",
  "FROM",
  "user_profiles",
  "WHERE",
  "UID",
  "NOT",
  "IN",
  "(",
  "SELECT",
  "UID",
  "FROM",
  "tweets",
  ")"
] | 
	[
  "select",
  "avg",
  "(",
  "followers",
  ")",
  "from",
  "user_profiles",
  "where",
  "uid",
  "not",
  "in",
  "(",
  "select",
  "uid",
  "from",
  "tweets",
  ")"
] | 
	[
  "Find",
  "the",
  "average",
  "number",
  "of",
  "followers",
  "for",
  "the",
  "users",
  "at",
  "do",
  "ain't",
  "no",
  "tweet."
] | 
| 
	twitter_1 | 
	SELECT avg(followers) FROM user_profiles WHERE UID IN (SELECT UID FROM tweets) | 
	Find the average number of followers for the users which had had some tweets. | 
	[
  "SELECT",
  "avg",
  "(",
  "followers",
  ")",
  "FROM",
  "user_profiles",
  "WHERE",
  "UID",
  "IN",
  "(",
  "SELECT",
  "UID",
  "FROM",
  "tweets",
  ")"
] | 
	[
  "select",
  "avg",
  "(",
  "followers",
  ")",
  "from",
  "user_profiles",
  "where",
  "uid",
  "in",
  "(",
  "select",
  "uid",
  "from",
  "tweets",
  ")"
] | 
	[
  "Find",
  "the",
  "average",
  "number",
  "of",
  "followers",
  "for",
  "the",
  "users",
  "which",
  "had",
  "had",
  "some",
  "tweets."
] | 
			Subsets and Splits
				
	
				
			
				
No community queries yet
The top public SQL queries from the community will appear here once available.
