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
coffee_shop
[ "CREATE TABLE \"shop\" (\n\"Shop_ID\" int,\n\"Address\" text,\n\"Num_of_staff\" text,\n\"Score\" real,\n\"Open_Year\" text,\nPRIMARY KEY (\"Shop_ID\")\n);", "CREATE TABLE \"member\" (\n\"Member_ID\" int,\n\"Name\" text,\n\"Membership_card\" text,\n\"Age\" int,\n\"Time_of_purchase\" int,\n\"Level_of_membership\" int,\n\"Address\" text,\nPRIMARY KEY (\"Member_ID\")\n);", "CREATE TABLE \"happy_hour\" (\n\"HH_ID\" int,\n\"Shop_ID\" int,\n\"Month\" text,\n\"Num_of_shaff_in_charge\" int,\nPRIMARY KEY (\"HH_ID\",\"Shop_ID\",\"Month\"),\nFOREIGN KEY (\"Shop_ID\") REFERENCES `shop`(\"Shop_ID\")\n);", "CREATE TABLE \"happy_hour_member\" (\n\"HH_ID\" int,\n\"Member_ID\" int,\n\"Total_amount\" real,\nPRIMARY KEY (\"HH_ID\",\"Member_ID\"),\nFOREIGN KEY (\"Member_ID\") REFERENCES `member`(\"Member_ID\")\n);" ]
What are the average score and average staff number of all shops?
SELECT avg(num_of_staff) , avg(score) FROM shop
[ "SELECT", "avg", "(", "num_of_staff", ")", ",", "avg", "(", "score", ")", "FROM", "shop" ]
[ "select", "avg", "(", "num_of_staff", ")", ",", "avg", "(", "score", ")", "from", "shop" ]
[ "What", "are", "the", "average", "score", "and", "average", "staff", "number", "of", "all", "shops", "?" ]
coffee_shop
[ "CREATE TABLE \"shop\" (\n\"Shop_ID\" int,\n\"Address\" text,\n\"Num_of_staff\" text,\n\"Score\" real,\n\"Open_Year\" text,\nPRIMARY KEY (\"Shop_ID\")\n);", "CREATE TABLE \"member\" (\n\"Member_ID\" int,\n\"Name\" text,\n\"Membership_card\" text,\n\"Age\" int,\n\"Time_of_purchase\" int,\n\"Level_of_membership\" int,\n\"Address\" text,\nPRIMARY KEY (\"Member_ID\")\n);", "CREATE TABLE \"happy_hour\" (\n\"HH_ID\" int,\n\"Shop_ID\" int,\n\"Month\" text,\n\"Num_of_shaff_in_charge\" int,\nPRIMARY KEY (\"HH_ID\",\"Shop_ID\",\"Month\"),\nFOREIGN KEY (\"Shop_ID\") REFERENCES `shop`(\"Shop_ID\")\n);", "CREATE TABLE \"happy_hour_member\" (\n\"HH_ID\" int,\n\"Member_ID\" int,\n\"Total_amount\" real,\nPRIMARY KEY (\"HH_ID\",\"Member_ID\"),\nFOREIGN KEY (\"Member_ID\") REFERENCES `member`(\"Member_ID\")\n);" ]
Find the id and address of the shops whose score is below the average score.
SELECT shop_id , address FROM shop WHERE score < (SELECT avg(score) FROM shop)
[ "SELECT", "shop_id", ",", "address", "FROM", "shop", "WHERE", "score", "<", "(", "SELECT", "avg", "(", "score", ")", "FROM", "shop", ")" ]
[ "select", "shop_id", ",", "address", "from", "shop", "where", "score", "<", "(", "select", "avg", "(", "score", ")", "from", "shop", ")" ]
[ "Find", "the", "id", "and", "address", "of", "the", "shops", "whose", "score", "is", "below", "the", "average", "score", "." ]
coffee_shop
[ "CREATE TABLE \"shop\" (\n\"Shop_ID\" int,\n\"Address\" text,\n\"Num_of_staff\" text,\n\"Score\" real,\n\"Open_Year\" text,\nPRIMARY KEY (\"Shop_ID\")\n);", "CREATE TABLE \"member\" (\n\"Member_ID\" int,\n\"Name\" text,\n\"Membership_card\" text,\n\"Age\" int,\n\"Time_of_purchase\" int,\n\"Level_of_membership\" int,\n\"Address\" text,\nPRIMARY KEY (\"Member_ID\")\n);", "CREATE TABLE \"happy_hour\" (\n\"HH_ID\" int,\n\"Shop_ID\" int,\n\"Month\" text,\n\"Num_of_shaff_in_charge\" int,\nPRIMARY KEY (\"HH_ID\",\"Shop_ID\",\"Month\"),\nFOREIGN KEY (\"Shop_ID\") REFERENCES `shop`(\"Shop_ID\")\n);", "CREATE TABLE \"happy_hour_member\" (\n\"HH_ID\" int,\n\"Member_ID\" int,\n\"Total_amount\" real,\nPRIMARY KEY (\"HH_ID\",\"Member_ID\"),\nFOREIGN KEY (\"Member_ID\") REFERENCES `member`(\"Member_ID\")\n);" ]
Find the address and staff number of the shops that do not have any happy hour.
SELECT address , num_of_staff FROM shop WHERE shop_id NOT IN (SELECT shop_id FROM happy_hour)
[ "SELECT", "address", ",", "num_of_staff", "FROM", "shop", "WHERE", "shop_id", "NOT", "IN", "(", "SELECT", "shop_id", "FROM", "happy_hour", ")" ]
[ "select", "address", ",", "num_of_staff", "from", "shop", "where", "shop_id", "not", "in", "(", "select", "shop_id", "from", "happy_hour", ")" ]
[ "Find", "the", "address", "and", "staff", "number", "of", "the", "shops", "that", "do", "not", "have", "any", "happy", "hour", "." ]
coffee_shop
[ "CREATE TABLE \"shop\" (\n\"Shop_ID\" int,\n\"Address\" text,\n\"Num_of_staff\" text,\n\"Score\" real,\n\"Open_Year\" text,\nPRIMARY KEY (\"Shop_ID\")\n);", "CREATE TABLE \"member\" (\n\"Member_ID\" int,\n\"Name\" text,\n\"Membership_card\" text,\n\"Age\" int,\n\"Time_of_purchase\" int,\n\"Level_of_membership\" int,\n\"Address\" text,\nPRIMARY KEY (\"Member_ID\")\n);", "CREATE TABLE \"happy_hour\" (\n\"HH_ID\" int,\n\"Shop_ID\" int,\n\"Month\" text,\n\"Num_of_shaff_in_charge\" int,\nPRIMARY KEY (\"HH_ID\",\"Shop_ID\",\"Month\"),\nFOREIGN KEY (\"Shop_ID\") REFERENCES `shop`(\"Shop_ID\")\n);", "CREATE TABLE \"happy_hour_member\" (\n\"HH_ID\" int,\n\"Member_ID\" int,\n\"Total_amount\" real,\nPRIMARY KEY (\"HH_ID\",\"Member_ID\"),\nFOREIGN KEY (\"Member_ID\") REFERENCES `member`(\"Member_ID\")\n);" ]
What are the id and address of the shops which have a happy hour in May?
SELECT t1.address , t1.shop_id FROM shop AS t1 JOIN happy_hour AS t2 ON t1.shop_id = t2.shop_id WHERE MONTH = 'May'
[ "SELECT", "t1.address", ",", "t1.shop_id", "FROM", "shop", "AS", "t1", "JOIN", "happy_hour", "AS", "t2", "ON", "t1.shop_id", "=", "t2.shop_id", "WHERE", "MONTH", "=", "'May", "'" ]
[ "select", "t1", ".", "address", ",", "t1", ".", "shop_id", "from", "shop", "as", "t1", "join", "happy_hour", "as", "t2", "on", "t1", ".", "shop_id", "=", "t2", ".", "shop_id", "where", "month", "=", "value" ]
[ "What", "are", "the", "id", "and", "address", "of", "the", "shops", "which", "have", "a", "happy", "hour", "in", "May", "?" ]
coffee_shop
[ "CREATE TABLE \"shop\" (\n\"Shop_ID\" int,\n\"Address\" text,\n\"Num_of_staff\" text,\n\"Score\" real,\n\"Open_Year\" text,\nPRIMARY KEY (\"Shop_ID\")\n);", "CREATE TABLE \"member\" (\n\"Member_ID\" int,\n\"Name\" text,\n\"Membership_card\" text,\n\"Age\" int,\n\"Time_of_purchase\" int,\n\"Level_of_membership\" int,\n\"Address\" text,\nPRIMARY KEY (\"Member_ID\")\n);", "CREATE TABLE \"happy_hour\" (\n\"HH_ID\" int,\n\"Shop_ID\" int,\n\"Month\" text,\n\"Num_of_shaff_in_charge\" int,\nPRIMARY KEY (\"HH_ID\",\"Shop_ID\",\"Month\"),\nFOREIGN KEY (\"Shop_ID\") REFERENCES `shop`(\"Shop_ID\")\n);", "CREATE TABLE \"happy_hour_member\" (\n\"HH_ID\" int,\n\"Member_ID\" int,\n\"Total_amount\" real,\nPRIMARY KEY (\"HH_ID\",\"Member_ID\"),\nFOREIGN KEY (\"Member_ID\") REFERENCES `member`(\"Member_ID\")\n);" ]
which shop has happy hour most frequently? List its id and number of happy hours.
SELECT shop_id , count(*) FROM happy_hour GROUP BY shop_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "shop_id", ",", "count", "(", "*", ")", "FROM", "happy_hour", "GROUP", "BY", "shop_id", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "shop_id", ",", "count", "(", "*", ")", "from", "happy_hour", "group", "by", "shop_id", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "which", "shop", "has", "happy", "hour", "most", "frequently", "?", "List", "its", "id", "and", "number", "of", "happy", "hours", "." ]
coffee_shop
[ "CREATE TABLE \"shop\" (\n\"Shop_ID\" int,\n\"Address\" text,\n\"Num_of_staff\" text,\n\"Score\" real,\n\"Open_Year\" text,\nPRIMARY KEY (\"Shop_ID\")\n);", "CREATE TABLE \"member\" (\n\"Member_ID\" int,\n\"Name\" text,\n\"Membership_card\" text,\n\"Age\" int,\n\"Time_of_purchase\" int,\n\"Level_of_membership\" int,\n\"Address\" text,\nPRIMARY KEY (\"Member_ID\")\n);", "CREATE TABLE \"happy_hour\" (\n\"HH_ID\" int,\n\"Shop_ID\" int,\n\"Month\" text,\n\"Num_of_shaff_in_charge\" int,\nPRIMARY KEY (\"HH_ID\",\"Shop_ID\",\"Month\"),\nFOREIGN KEY (\"Shop_ID\") REFERENCES `shop`(\"Shop_ID\")\n);", "CREATE TABLE \"happy_hour_member\" (\n\"HH_ID\" int,\n\"Member_ID\" int,\n\"Total_amount\" real,\nPRIMARY KEY (\"HH_ID\",\"Member_ID\"),\nFOREIGN KEY (\"Member_ID\") REFERENCES `member`(\"Member_ID\")\n);" ]
Which month has the most happy hours?
SELECT MONTH FROM happy_hour GROUP BY MONTH ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "MONTH", "FROM", "happy_hour", "GROUP", "BY", "MONTH", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "month", "from", "happy_hour", "group", "by", "month", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "month", "has", "the", "most", "happy", "hours", "?" ]
coffee_shop
[ "CREATE TABLE \"shop\" (\n\"Shop_ID\" int,\n\"Address\" text,\n\"Num_of_staff\" text,\n\"Score\" real,\n\"Open_Year\" text,\nPRIMARY KEY (\"Shop_ID\")\n);", "CREATE TABLE \"member\" (\n\"Member_ID\" int,\n\"Name\" text,\n\"Membership_card\" text,\n\"Age\" int,\n\"Time_of_purchase\" int,\n\"Level_of_membership\" int,\n\"Address\" text,\nPRIMARY KEY (\"Member_ID\")\n);", "CREATE TABLE \"happy_hour\" (\n\"HH_ID\" int,\n\"Shop_ID\" int,\n\"Month\" text,\n\"Num_of_shaff_in_charge\" int,\nPRIMARY KEY (\"HH_ID\",\"Shop_ID\",\"Month\"),\nFOREIGN KEY (\"Shop_ID\") REFERENCES `shop`(\"Shop_ID\")\n);", "CREATE TABLE \"happy_hour_member\" (\n\"HH_ID\" int,\n\"Member_ID\" int,\n\"Total_amount\" real,\nPRIMARY KEY (\"HH_ID\",\"Member_ID\"),\nFOREIGN KEY (\"Member_ID\") REFERENCES `member`(\"Member_ID\")\n);" ]
Which months have more than 2 happy hours?
SELECT MONTH FROM happy_hour GROUP BY MONTH HAVING count(*) > 2
[ "SELECT", "MONTH", "FROM", "happy_hour", "GROUP", "BY", "MONTH", "HAVING", "count", "(", "*", ")", ">", "2" ]
[ "select", "month", "from", "happy_hour", "group", "by", "month", "having", "count", "(", "*", ")", ">", "value" ]
[ "Which", "months", "have", "more", "than", "2", "happy", "hours", "?" ]
chinook_1
[]
How many albums are there?
SELECT count(*) FROM ALBUM
[ "SELECT", "count", "(", "*", ")", "FROM", "ALBUM" ]
[ "select", "count", "(", "*", ")", "from", "album" ]
[ "How", "many", "albums", "are", "there", "?" ]
chinook_1
[]
Find the number of albums.
SELECT count(*) FROM ALBUM
[ "SELECT", "count", "(", "*", ")", "FROM", "ALBUM" ]
[ "select", "count", "(", "*", ")", "from", "album" ]
[ "Find", "the", "number", "of", "albums", "." ]
chinook_1
[]
List the names of all music genres.
SELECT Name FROM GENRE
[ "SELECT", "Name", "FROM", "GENRE" ]
[ "select", "name", "from", "genre" ]
[ "List", "the", "names", "of", "all", "music", "genres", "." ]
chinook_1
[]
What are the names of different music genres?
SELECT Name FROM GENRE
[ "SELECT", "Name", "FROM", "GENRE" ]
[ "select", "name", "from", "genre" ]
[ "What", "are", "the", "names", "of", "different", "music", "genres", "?" ]
chinook_1
[]
Find all the customer information in state NY.
SELECT * FROM CUSTOMER WHERE State = "NY"
[ "SELECT", "*", "FROM", "CUSTOMER", "WHERE", "State", "=", "``", "NY", "''" ]
[ "select", "*", "from", "customer", "where", "state", "=", "value" ]
[ "Find", "all", "the", "customer", "information", "in", "state", "NY", "." ]
chinook_1
[]
What is all the customer information for customers in NY state?
SELECT * FROM CUSTOMER WHERE State = "NY"
[ "SELECT", "*", "FROM", "CUSTOMER", "WHERE", "State", "=", "``", "NY", "''" ]
[ "select", "*", "from", "customer", "where", "state", "=", "value" ]
[ "What", "is", "all", "the", "customer", "information", "for", "customers", "in", "NY", "state", "?" ]
chinook_1
[]
What are the first names and last names of the employees who live in Calgary city.
SELECT FirstName , LastName FROM EMPLOYEE WHERE City = "Calgary"
[ "SELECT", "FirstName", ",", "LastName", "FROM", "EMPLOYEE", "WHERE", "City", "=", "``", "Calgary", "''" ]
[ "select", "firstname", ",", "lastname", "from", "employee", "where", "city", "=", "value" ]
[ "What", "are", "the", "first", "names", "and", "last", "names", "of", "the", "employees", "who", "live", "in", "Calgary", "city", "." ]
chinook_1
[]
Find the full names of employees living in the city of Calgary.
SELECT FirstName , LastName FROM EMPLOYEE WHERE City = "Calgary"
[ "SELECT", "FirstName", ",", "LastName", "FROM", "EMPLOYEE", "WHERE", "City", "=", "``", "Calgary", "''" ]
[ "select", "firstname", ",", "lastname", "from", "employee", "where", "city", "=", "value" ]
[ "Find", "the", "full", "names", "of", "employees", "living", "in", "the", "city", "of", "Calgary", "." ]
chinook_1
[]
What are the distinct billing countries of the invoices?
SELECT distinct(BillingCountry) FROM INVOICE
[ "SELECT", "distinct", "(", "BillingCountry", ")", "FROM", "INVOICE" ]
[ "select", "distinct", "(", "billingcountry", ")", "from", "invoice" ]
[ "What", "are", "the", "distinct", "billing", "countries", "of", "the", "invoices", "?" ]
chinook_1
[]
Find the different billing countries for all invoices.
SELECT distinct(BillingCountry) FROM INVOICE
[ "SELECT", "distinct", "(", "BillingCountry", ")", "FROM", "INVOICE" ]
[ "select", "distinct", "(", "billingcountry", ")", "from", "invoice" ]
[ "Find", "the", "different", "billing", "countries", "for", "all", "invoices", "." ]
chinook_1
[]
Find the names of all artists that have "a" in their names.
SELECT Name FROM ARTIST WHERE Name LIKE "%a%"
[ "SELECT", "Name", "FROM", "ARTIST", "WHERE", "Name", "LIKE", "``", "%", "a", "%", "''" ]
[ "select", "name", "from", "artist", "where", "name", "like", "value" ]
[ "Find", "the", "names", "of", "all", "artists", "that", "have", "``", "a", "''", "in", "their", "names", "." ]
chinook_1
[]
What are the names of artist who have the letter 'a' in their names?
SELECT Name FROM ARTIST WHERE Name LIKE "%a%"
[ "SELECT", "Name", "FROM", "ARTIST", "WHERE", "Name", "LIKE", "``", "%", "a", "%", "''" ]
[ "select", "name", "from", "artist", "where", "name", "like", "value" ]
[ "What", "are", "the", "names", "of", "artist", "who", "have", "the", "letter", "'a", "'", "in", "their", "names", "?" ]
chinook_1
[]
Find the title of all the albums of the artist "AC/DC".
SELECT Title FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T2.Name = "AC/DC"
[ "SELECT", "Title", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId", "WHERE", "T2.Name", "=", "``", "AC/DC", "''" ]
[ "select", "title", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "where", "t2", ".", "name", "=", "value" ]
[ "Find", "the", "title", "of", "all", "the", "albums", "of", "the", "artist", "``", "AC/DC", "''", "." ]
chinook_1
[]
What are the titles of albums by the artist "AC/DC"?
SELECT Title FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T2.Name = "AC/DC"
[ "SELECT", "Title", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId", "WHERE", "T2.Name", "=", "``", "AC/DC", "''" ]
[ "select", "title", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "where", "t2", ".", "name", "=", "value" ]
[ "What", "are", "the", "titles", "of", "albums", "by", "the", "artist", "``", "AC/DC", "''", "?" ]
chinook_1
[]
Hom many albums does the artist "Metallica" have?
SELECT COUNT(*) FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T2.Name = "Metallica"
[ "SELECT", "COUNT", "(", "*", ")", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId", "WHERE", "T2.Name", "=", "``", "Metallica", "''" ]
[ "select", "count", "(", "*", ")", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "where", "t2", ".", "name", "=", "value" ]
[ "Hom", "many", "albums", "does", "the", "artist", "``", "Metallica", "''", "have", "?" ]
chinook_1
[]
Find the number of albums by the artist "Metallica".
SELECT COUNT(*) FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T2.Name = "Metallica"
[ "SELECT", "COUNT", "(", "*", ")", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId", "WHERE", "T2.Name", "=", "``", "Metallica", "''" ]
[ "select", "count", "(", "*", ")", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "where", "t2", ".", "name", "=", "value" ]
[ "Find", "the", "number", "of", "albums", "by", "the", "artist", "``", "Metallica", "''", "." ]
chinook_1
[]
Which artist does the album "Balls to the Wall" belong to?
SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T1.Title = "Balls to the Wall"
[ "SELECT", "T2.Name", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId", "WHERE", "T1.Title", "=", "``", "Balls", "to", "the", "Wall", "''" ]
[ "select", "t2", ".", "name", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "where", "t1", ".", "title", "=", "value" ]
[ "Which", "artist", "does", "the", "album", "``", "Balls", "to", "the", "Wall", "''", "belong", "to", "?" ]
chinook_1
[]
Find the name of the artist who made the album "Balls to the Wall".
SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T1.Title = "Balls to the Wall"
[ "SELECT", "T2.Name", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId", "WHERE", "T1.Title", "=", "``", "Balls", "to", "the", "Wall", "''" ]
[ "select", "t2", ".", "name", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "where", "t1", ".", "title", "=", "value" ]
[ "Find", "the", "name", "of", "the", "artist", "who", "made", "the", "album", "``", "Balls", "to", "the", "Wall", "''", "." ]
chinook_1
[]
Which artist has the most albums?
SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId GROUP BY T2.Name ORDER BY COUNT(*) DESC LIMIT 1
[ "SELECT", "T2.Name", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId", "GROUP", "BY", "T2.Name", "ORDER", "BY", "COUNT", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t2", ".", "name", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "group", "by", "t2", ".", "name", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "artist", "has", "the", "most", "albums", "?" ]
chinook_1
[]
What is the name of the artist with the greatest number of albums?
SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId GROUP BY T2.Name ORDER BY COUNT(*) DESC LIMIT 1
[ "SELECT", "T2.Name", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId", "GROUP", "BY", "T2.Name", "ORDER", "BY", "COUNT", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t2", ".", "name", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "group", "by", "t2", ".", "name", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "name", "of", "the", "artist", "with", "the", "greatest", "number", "of", "albums", "?" ]
chinook_1
[]
Find the names of all the tracks that contain the word "you".
SELECT Name FROM TRACK WHERE Name LIKE '%you%'
[ "SELECT", "Name", "FROM", "TRACK", "WHERE", "Name", "LIKE", "'", "%", "you", "%", "'" ]
[ "select", "name", "from", "track", "where", "name", "like", "value" ]
[ "Find", "the", "names", "of", "all", "the", "tracks", "that", "contain", "the", "word", "``", "you", "''", "." ]
chinook_1
[]
What are the names of tracks that contain the the word you in them?
SELECT Name FROM TRACK WHERE Name LIKE '%you%'
[ "SELECT", "Name", "FROM", "TRACK", "WHERE", "Name", "LIKE", "'", "%", "you", "%", "'" ]
[ "select", "name", "from", "track", "where", "name", "like", "value" ]
[ "What", "are", "the", "names", "of", "tracks", "that", "contain", "the", "the", "word", "you", "in", "them", "?" ]
chinook_1
[]
What is the average unit price of all the tracks?
SELECT AVG(UnitPrice) FROM TRACK
[ "SELECT", "AVG", "(", "UnitPrice", ")", "FROM", "TRACK" ]
[ "select", "avg", "(", "unitprice", ")", "from", "track" ]
[ "What", "is", "the", "average", "unit", "price", "of", "all", "the", "tracks", "?" ]
chinook_1
[]
Find the average unit price for a track.
SELECT AVG(UnitPrice) FROM TRACK
[ "SELECT", "AVG", "(", "UnitPrice", ")", "FROM", "TRACK" ]
[ "select", "avg", "(", "unitprice", ")", "from", "track" ]
[ "Find", "the", "average", "unit", "price", "for", "a", "track", "." ]
chinook_1
[]
What are the durations of the longest and the shortest tracks in milliseconds?
SELECT max(Milliseconds) , min(Milliseconds) FROM TRACK
[ "SELECT", "max", "(", "Milliseconds", ")", ",", "min", "(", "Milliseconds", ")", "FROM", "TRACK" ]
[ "select", "max", "(", "milliseconds", ")", ",", "min", "(", "milliseconds", ")", "from", "track" ]
[ "What", "are", "the", "durations", "of", "the", "longest", "and", "the", "shortest", "tracks", "in", "milliseconds", "?" ]
chinook_1
[]
Find the maximum and minimum durations of tracks in milliseconds.
SELECT max(Milliseconds) , min(Milliseconds) FROM TRACK
[ "SELECT", "max", "(", "Milliseconds", ")", ",", "min", "(", "Milliseconds", ")", "FROM", "TRACK" ]
[ "select", "max", "(", "milliseconds", ")", ",", "min", "(", "milliseconds", ")", "from", "track" ]
[ "Find", "the", "maximum", "and", "minimum", "durations", "of", "tracks", "in", "milliseconds", "." ]
chinook_1
[]
Show the album names, ids and the number of tracks for each album.
SELECT T1.Title , T2.AlbumID , COUNT(*) FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId GROUP BY T2.AlbumID
[ "SELECT", "T1.Title", ",", "T2.AlbumID", ",", "COUNT", "(", "*", ")", "FROM", "ALBUM", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.AlbumId", "=", "T2.AlbumId", "GROUP", "BY", "T2.AlbumID" ]
[ "select", "t1", ".", "title", ",", "t2", ".", "albumid", ",", "count", "(", "*", ")", "from", "album", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "albumid", "=", "t2", ".", "albumid", "group", "by", "t2", ".", "albumid" ]
[ "Show", "the", "album", "names", ",", "ids", "and", "the", "number", "of", "tracks", "for", "each", "album", "." ]
chinook_1
[]
What are the names and ids of the different albums, and how many tracks are on each?
SELECT T1.Title , T2.AlbumID , COUNT(*) FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId GROUP BY T2.AlbumID
[ "SELECT", "T1.Title", ",", "T2.AlbumID", ",", "COUNT", "(", "*", ")", "FROM", "ALBUM", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.AlbumId", "=", "T2.AlbumId", "GROUP", "BY", "T2.AlbumID" ]
[ "select", "t1", ".", "title", ",", "t2", ".", "albumid", ",", "count", "(", "*", ")", "from", "album", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "albumid", "=", "t2", ".", "albumid", "group", "by", "t2", ".", "albumid" ]
[ "What", "are", "the", "names", "and", "ids", "of", "the", "different", "albums", ",", "and", "how", "many", "tracks", "are", "on", "each", "?" ]
chinook_1
[]
What is the name of the most common genre in all tracks?
SELECT T1.Name FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId GROUP BY T2.GenreId ORDER BY COUNT(*) DESC LIMIT 1
[ "SELECT", "T1.Name", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "GROUP", "BY", "T2.GenreId", "ORDER", "BY", "COUNT", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t1", ".", "name", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "group", "by", "t2", ".", "genreid", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "name", "of", "the", "most", "common", "genre", "in", "all", "tracks", "?" ]
chinook_1
[]
Find the name of the genre that is most frequent across all tracks.
SELECT T1.Name FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId GROUP BY T2.GenreId ORDER BY COUNT(*) DESC LIMIT 1
[ "SELECT", "T1.Name", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "GROUP", "BY", "T2.GenreId", "ORDER", "BY", "COUNT", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "t1", ".", "name", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "group", "by", "t2", ".", "genreid", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Find", "the", "name", "of", "the", "genre", "that", "is", "most", "frequent", "across", "all", "tracks", "." ]
chinook_1
[]
What is the least common media type in all tracks?
SELECT T1.Name FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId GROUP BY T2.MediaTypeId ORDER BY COUNT(*) ASC LIMIT 1
[ "SELECT", "T1.Name", "FROM", "MEDIATYPE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.MediaTypeId", "=", "T2.MediaTypeId", "GROUP", "BY", "T2.MediaTypeId", "ORDER", "BY", "COUNT", "(", "*", ")", "ASC", "LIMIT", "1" ]
[ "select", "t1", ".", "name", "from", "mediatype", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "mediatypeid", "=", "t2", ".", "mediatypeid", "group", "by", "t2", ".", "mediatypeid", "order", "by", "count", "(", "*", ")", "asc", "limit", "value" ]
[ "What", "is", "the", "least", "common", "media", "type", "in", "all", "tracks", "?" ]
chinook_1
[]
What is the name of the media type that is least common across all tracks?
SELECT T1.Name FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId GROUP BY T2.MediaTypeId ORDER BY COUNT(*) ASC LIMIT 1
[ "SELECT", "T1.Name", "FROM", "MEDIATYPE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.MediaTypeId", "=", "T2.MediaTypeId", "GROUP", "BY", "T2.MediaTypeId", "ORDER", "BY", "COUNT", "(", "*", ")", "ASC", "LIMIT", "1" ]
[ "select", "t1", ".", "name", "from", "mediatype", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "mediatypeid", "=", "t2", ".", "mediatypeid", "group", "by", "t2", ".", "mediatypeid", "order", "by", "count", "(", "*", ")", "asc", "limit", "value" ]
[ "What", "is", "the", "name", "of", "the", "media", "type", "that", "is", "least", "common", "across", "all", "tracks", "?" ]
chinook_1
[]
Show the album names and ids for albums that contain tracks with unit price bigger than 1.
SELECT T1.Title , T2.AlbumID FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId WHERE T2.UnitPrice > 1 GROUP BY T2.AlbumID
[ "SELECT", "T1.Title", ",", "T2.AlbumID", "FROM", "ALBUM", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.AlbumId", "=", "T2.AlbumId", "WHERE", "T2.UnitPrice", ">", "1", "GROUP", "BY", "T2.AlbumID" ]
[ "select", "t1", ".", "title", ",", "t2", ".", "albumid", "from", "album", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "albumid", "=", "t2", ".", "albumid", "where", "t2", ".", "unitprice", ">", "value", "group", "by", "t2", ".", "albumid" ]
[ "Show", "the", "album", "names", "and", "ids", "for", "albums", "that", "contain", "tracks", "with", "unit", "price", "bigger", "than", "1", "." ]
chinook_1
[]
What are the titles and ids for albums containing tracks with unit price greater than 1?
SELECT T1.Title , T2.AlbumID FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId WHERE T2.UnitPrice > 1 GROUP BY T2.AlbumID
[ "SELECT", "T1.Title", ",", "T2.AlbumID", "FROM", "ALBUM", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.AlbumId", "=", "T2.AlbumId", "WHERE", "T2.UnitPrice", ">", "1", "GROUP", "BY", "T2.AlbumID" ]
[ "select", "t1", ".", "title", ",", "t2", ".", "albumid", "from", "album", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "albumid", "=", "t2", ".", "albumid", "where", "t2", ".", "unitprice", ">", "value", "group", "by", "t2", ".", "albumid" ]
[ "What", "are", "the", "titles", "and", "ids", "for", "albums", "containing", "tracks", "with", "unit", "price", "greater", "than", "1", "?" ]
chinook_1
[]
How many tracks belong to rock genre?
SELECT COUNT(*) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Rock"
[ "SELECT", "COUNT", "(", "*", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Rock", "''" ]
[ "select", "count", "(", "*", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value" ]
[ "How", "many", "tracks", "belong", "to", "rock", "genre", "?" ]
chinook_1
[]
Count the number of tracks that are part of the rock genre.
SELECT COUNT(*) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Rock"
[ "SELECT", "COUNT", "(", "*", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Rock", "''" ]
[ "select", "count", "(", "*", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value" ]
[ "Count", "the", "number", "of", "tracks", "that", "are", "part", "of", "the", "rock", "genre", "." ]
chinook_1
[]
What is the average unit price of tracks that belong to Jazz genre?
SELECT AVG(UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Jazz"
[ "SELECT", "AVG", "(", "UnitPrice", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Jazz", "''" ]
[ "select", "avg", "(", "unitprice", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value" ]
[ "What", "is", "the", "average", "unit", "price", "of", "tracks", "that", "belong", "to", "Jazz", "genre", "?" ]
chinook_1
[]
Find the average unit price of jazz tracks.
SELECT AVG(UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Jazz"
[ "SELECT", "AVG", "(", "UnitPrice", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Jazz", "''" ]
[ "select", "avg", "(", "unitprice", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value" ]
[ "Find", "the", "average", "unit", "price", "of", "jazz", "tracks", "." ]
chinook_1
[]
What is the first name and last name of the customer that has email "luisg@embraer.com.br"?
SELECT FirstName , LastName FROM CUSTOMER WHERE Email = "luisg@embraer.com.br"
[ "SELECT", "FirstName", ",", "LastName", "FROM", "CUSTOMER", "WHERE", "Email", "=", "``", "luisg", "@", "embraer.com.br", "''" ]
[ "select", "firstname", ",", "lastname", "from", "customer", "where", "email", "=", "value" ]
[ "What", "is", "the", "first", "name", "and", "last", "name", "of", "the", "customer", "that", "has", "email", "``", "luisg", "@", "embraer.com.br", "''", "?" ]
chinook_1
[]
Find the full name of the customer with the email "luisg@embraer.com.br".
SELECT FirstName , LastName FROM CUSTOMER WHERE Email = "luisg@embraer.com.br"
[ "SELECT", "FirstName", ",", "LastName", "FROM", "CUSTOMER", "WHERE", "Email", "=", "``", "luisg", "@", "embraer.com.br", "''" ]
[ "select", "firstname", ",", "lastname", "from", "customer", "where", "email", "=", "value" ]
[ "Find", "the", "full", "name", "of", "the", "customer", "with", "the", "email", "``", "luisg", "@", "embraer.com.br", "''", "." ]
chinook_1
[]
How many customers have email that contains "gmail.com"?
SELECT COUNT(*) FROM CUSTOMER WHERE Email LIKE "%gmail.com%"
[ "SELECT", "COUNT", "(", "*", ")", "FROM", "CUSTOMER", "WHERE", "Email", "LIKE", "``", "%", "gmail.com", "%", "''" ]
[ "select", "count", "(", "*", ")", "from", "customer", "where", "email", "like", "value" ]
[ "How", "many", "customers", "have", "email", "that", "contains", "``", "gmail.com", "''", "?" ]
chinook_1
[]
Count the number of customers that have an email containing "gmail.com".
SELECT COUNT(*) FROM CUSTOMER WHERE Email LIKE "%gmail.com%"
[ "SELECT", "COUNT", "(", "*", ")", "FROM", "CUSTOMER", "WHERE", "Email", "LIKE", "``", "%", "gmail.com", "%", "''" ]
[ "select", "count", "(", "*", ")", "from", "customer", "where", "email", "like", "value" ]
[ "Count", "the", "number", "of", "customers", "that", "have", "an", "email", "containing", "``", "gmail.com", "''", "." ]
chinook_1
[]
What is the first name and last name employee helps the customer with first name Leonie?
SELECT T2.FirstName , T2.LastName FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId WHERE T1.FirstName = "Leonie"
[ "SELECT", "T2.FirstName", ",", "T2.LastName", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "EMPLOYEE", "AS", "T2", "ON", "T1.SupportRepId", "=", "T2.EmployeeId", "WHERE", "T1.FirstName", "=", "``", "Leonie", "''" ]
[ "select", "t2", ".", "firstname", ",", "t2", ".", "lastname", "from", "customer", "as", "t1", "join", "employee", "as", "t2", "on", "t1", ".", "supportrepid", "=", "t2", ".", "employeeid", "where", "t1", ".", "firstname", "=", "value" ]
[ "What", "is", "the", "first", "name", "and", "last", "name", "employee", "helps", "the", "customer", "with", "first", "name", "Leonie", "?" ]
chinook_1
[]
Find the full names of employees who help customers with the first name Leonie.
SELECT T2.FirstName , T2.LastName FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId WHERE T1.FirstName = "Leonie"
[ "SELECT", "T2.FirstName", ",", "T2.LastName", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "EMPLOYEE", "AS", "T2", "ON", "T1.SupportRepId", "=", "T2.EmployeeId", "WHERE", "T1.FirstName", "=", "``", "Leonie", "''" ]
[ "select", "t2", ".", "firstname", ",", "t2", ".", "lastname", "from", "customer", "as", "t1", "join", "employee", "as", "t2", "on", "t1", ".", "supportrepid", "=", "t2", ".", "employeeid", "where", "t1", ".", "firstname", "=", "value" ]
[ "Find", "the", "full", "names", "of", "employees", "who", "help", "customers", "with", "the", "first", "name", "Leonie", "." ]
chinook_1
[]
What city does the employee who helps the customer with postal code 70174 live in?
SELECT T2.City FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId WHERE T1.PostalCode = "70174"
[ "SELECT", "T2.City", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "EMPLOYEE", "AS", "T2", "ON", "T1.SupportRepId", "=", "T2.EmployeeId", "WHERE", "T1.PostalCode", "=", "``", "70174", "''" ]
[ "select", "t2", ".", "city", "from", "customer", "as", "t1", "join", "employee", "as", "t2", "on", "t1", ".", "supportrepid", "=", "t2", ".", "employeeid", "where", "t1", ".", "postalcode", "=", "value" ]
[ "What", "city", "does", "the", "employee", "who", "helps", "the", "customer", "with", "postal", "code", "70174", "live", "in", "?" ]
chinook_1
[]
Find the cities corresponding to employees who help customers with the postal code 70174.
SELECT T2.City FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId WHERE T1.PostalCode = "70174"
[ "SELECT", "T2.City", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "EMPLOYEE", "AS", "T2", "ON", "T1.SupportRepId", "=", "T2.EmployeeId", "WHERE", "T1.PostalCode", "=", "``", "70174", "''" ]
[ "select", "t2", ".", "city", "from", "customer", "as", "t1", "join", "employee", "as", "t2", "on", "t1", ".", "supportrepid", "=", "t2", ".", "employeeid", "where", "t1", ".", "postalcode", "=", "value" ]
[ "Find", "the", "cities", "corresponding", "to", "employees", "who", "help", "customers", "with", "the", "postal", "code", "70174", "." ]
chinook_1
[]
How many distinct cities does the employees live in?
SELECT COUNT(DISTINCT city) FROM EMPLOYEE
[ "SELECT", "COUNT", "(", "DISTINCT", "city", ")", "FROM", "EMPLOYEE" ]
[ "select", "count", "(", "distinct", "city", ")", "from", "employee" ]
[ "How", "many", "distinct", "cities", "does", "the", "employees", "live", "in", "?" ]
chinook_1
[]
Find the number of different cities that employees live in.
SELECT COUNT(DISTINCT city) FROM EMPLOYEE
[ "SELECT", "COUNT", "(", "DISTINCT", "city", ")", "FROM", "EMPLOYEE" ]
[ "select", "count", "(", "distinct", "city", ")", "from", "employee" ]
[ "Find", "the", "number", "of", "different", "cities", "that", "employees", "live", "in", "." ]
chinook_1
[]
Find all invoice dates corresponding to customers with first name Astrid and last name Gruber.
SELECT T2.InvoiceDate FROM CUSTOMER AS T1 JOIN INVOICE AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.FirstName = "Astrid" AND LastName = "Gruber"
[ "SELECT", "T2.InvoiceDate", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "INVOICE", "AS", "T2", "ON", "T1.CustomerId", "=", "T2.CustomerId", "WHERE", "T1.FirstName", "=", "``", "Astrid", "''", "AND", "LastName", "=", "``", "Gruber", "''" ]
[ "select", "t2", ".", "invoicedate", "from", "customer", "as", "t1", "join", "invoice", "as", "t2", "on", "t1", ".", "customerid", "=", "t2", ".", "customerid", "where", "t1", ".", "firstname", "=", "value", "and", "lastname", "=", "value" ]
[ "Find", "all", "invoice", "dates", "corresponding", "to", "customers", "with", "first", "name", "Astrid", "and", "last", "name", "Gruber", "." ]
chinook_1
[]
What are the invoice dates for customers with the first name Astrid and the last name Gruber?
SELECT T2.InvoiceDate FROM CUSTOMER AS T1 JOIN INVOICE AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.FirstName = "Astrid" AND LastName = "Gruber"
[ "SELECT", "T2.InvoiceDate", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "INVOICE", "AS", "T2", "ON", "T1.CustomerId", "=", "T2.CustomerId", "WHERE", "T1.FirstName", "=", "``", "Astrid", "''", "AND", "LastName", "=", "``", "Gruber", "''" ]
[ "select", "t2", ".", "invoicedate", "from", "customer", "as", "t1", "join", "invoice", "as", "t2", "on", "t1", ".", "customerid", "=", "t2", ".", "customerid", "where", "t1", ".", "firstname", "=", "value", "and", "lastname", "=", "value" ]
[ "What", "are", "the", "invoice", "dates", "for", "customers", "with", "the", "first", "name", "Astrid", "and", "the", "last", "name", "Gruber", "?" ]
chinook_1
[]
Find all the customer last names that do not have invoice totals larger than 20.
SELECT LastName FROM CUSTOMER EXCEPT SELECT T1.LastName FROM CUSTOMER AS T1 JOIN Invoice AS T2 ON T1.CustomerId = T2.CustomerId WHERE T2.total > 20
[ "SELECT", "LastName", "FROM", "CUSTOMER", "EXCEPT", "SELECT", "T1.LastName", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "Invoice", "AS", "T2", "ON", "T1.CustomerId", "=", "T2.CustomerId", "WHERE", "T2.total", ">", "20" ]
[ "select", "lastname", "from", "customer", "except", "select", "t1", ".", "lastname", "from", "customer", "as", "t1", "join", "invoice", "as", "t2", "on", "t1", ".", "customerid", "=", "t2", ".", "customerid", "where", "t2", ".", "total", ">", "value" ]
[ "Find", "all", "the", "customer", "last", "names", "that", "do", "not", "have", "invoice", "totals", "larger", "than", "20", "." ]
chinook_1
[]
What are the last names of customers without invoice totals exceeding 20?
SELECT LastName FROM CUSTOMER EXCEPT SELECT T1.LastName FROM CUSTOMER AS T1 JOIN Invoice AS T2 ON T1.CustomerId = T2.CustomerId WHERE T2.total > 20
[ "SELECT", "LastName", "FROM", "CUSTOMER", "EXCEPT", "SELECT", "T1.LastName", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "Invoice", "AS", "T2", "ON", "T1.CustomerId", "=", "T2.CustomerId", "WHERE", "T2.total", ">", "20" ]
[ "select", "lastname", "from", "customer", "except", "select", "t1", ".", "lastname", "from", "customer", "as", "t1", "join", "invoice", "as", "t2", "on", "t1", ".", "customerid", "=", "t2", ".", "customerid", "where", "t2", ".", "total", ">", "value" ]
[ "What", "are", "the", "last", "names", "of", "customers", "without", "invoice", "totals", "exceeding", "20", "?" ]
chinook_1
[]
Find the first names of all customers that live in Brazil and have an invoice.
SELECT DISTINCT T1.FirstName FROM CUSTOMER AS T1 JOIN INVOICE AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.country = "Brazil"
[ "SELECT", "DISTINCT", "T1.FirstName", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "INVOICE", "AS", "T2", "ON", "T1.CustomerId", "=", "T2.CustomerId", "WHERE", "T1.country", "=", "``", "Brazil", "''" ]
[ "select", "distinct", "t1", ".", "firstname", "from", "customer", "as", "t1", "join", "invoice", "as", "t2", "on", "t1", ".", "customerid", "=", "t2", ".", "customerid", "where", "t1", ".", "country", "=", "value" ]
[ "Find", "the", "first", "names", "of", "all", "customers", "that", "live", "in", "Brazil", "and", "have", "an", "invoice", "." ]
chinook_1
[]
What are the different first names for customers from Brazil who have also had an invoice?
SELECT DISTINCT T1.FirstName FROM CUSTOMER AS T1 JOIN INVOICE AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.country = "Brazil"
[ "SELECT", "DISTINCT", "T1.FirstName", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "INVOICE", "AS", "T2", "ON", "T1.CustomerId", "=", "T2.CustomerId", "WHERE", "T1.country", "=", "``", "Brazil", "''" ]
[ "select", "distinct", "t1", ".", "firstname", "from", "customer", "as", "t1", "join", "invoice", "as", "t2", "on", "t1", ".", "customerid", "=", "t2", ".", "customerid", "where", "t1", ".", "country", "=", "value" ]
[ "What", "are", "the", "different", "first", "names", "for", "customers", "from", "Brazil", "who", "have", "also", "had", "an", "invoice", "?" ]
chinook_1
[]
Find the address of all customers that live in Germany and have invoice.
SELECT DISTINCT T1.Address FROM CUSTOMER AS T1 JOIN INVOICE AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.country = "Germany"
[ "SELECT", "DISTINCT", "T1.Address", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "INVOICE", "AS", "T2", "ON", "T1.CustomerId", "=", "T2.CustomerId", "WHERE", "T1.country", "=", "``", "Germany", "''" ]
[ "select", "distinct", "t1", ".", "address", "from", "customer", "as", "t1", "join", "invoice", "as", "t2", "on", "t1", ".", "customerid", "=", "t2", ".", "customerid", "where", "t1", ".", "country", "=", "value" ]
[ "Find", "the", "address", "of", "all", "customers", "that", "live", "in", "Germany", "and", "have", "invoice", "." ]
chinook_1
[]
What are the addresses of customers living in Germany who have had an invoice?
SELECT DISTINCT T1.Address FROM CUSTOMER AS T1 JOIN INVOICE AS T2 ON T1.CustomerId = T2.CustomerId WHERE T1.country = "Germany"
[ "SELECT", "DISTINCT", "T1.Address", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "INVOICE", "AS", "T2", "ON", "T1.CustomerId", "=", "T2.CustomerId", "WHERE", "T1.country", "=", "``", "Germany", "''" ]
[ "select", "distinct", "t1", ".", "address", "from", "customer", "as", "t1", "join", "invoice", "as", "t2", "on", "t1", ".", "customerid", "=", "t2", ".", "customerid", "where", "t1", ".", "country", "=", "value" ]
[ "What", "are", "the", "addresses", "of", "customers", "living", "in", "Germany", "who", "have", "had", "an", "invoice", "?" ]
chinook_1
[]
List the phone numbers of all employees.
SELECT Phone FROM EMPLOYEE
[ "SELECT", "Phone", "FROM", "EMPLOYEE" ]
[ "select", "phone", "from", "employee" ]
[ "List", "the", "phone", "numbers", "of", "all", "employees", "." ]
chinook_1
[]
What are the phone numbers for each employee?
SELECT Phone FROM EMPLOYEE
[ "SELECT", "Phone", "FROM", "EMPLOYEE" ]
[ "select", "phone", "from", "employee" ]
[ "What", "are", "the", "phone", "numbers", "for", "each", "employee", "?" ]
chinook_1
[]
How many tracks are in the AAC audio file media type?
SELECT COUNT(*) FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId WHERE T1.Name = "AAC audio file"
[ "SELECT", "COUNT", "(", "*", ")", "FROM", "MEDIATYPE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.MediaTypeId", "=", "T2.MediaTypeId", "WHERE", "T1.Name", "=", "``", "AAC", "audio", "file", "''" ]
[ "select", "count", "(", "*", ")", "from", "mediatype", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "mediatypeid", "=", "t2", ".", "mediatypeid", "where", "t1", ".", "name", "=", "value" ]
[ "How", "many", "tracks", "are", "in", "the", "AAC", "audio", "file", "media", "type", "?" ]
chinook_1
[]
Count the number of tracks that are of the media type "AAC audio file".
SELECT COUNT(*) FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId WHERE T1.Name = "AAC audio file"
[ "SELECT", "COUNT", "(", "*", ")", "FROM", "MEDIATYPE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.MediaTypeId", "=", "T2.MediaTypeId", "WHERE", "T1.Name", "=", "``", "AAC", "audio", "file", "''" ]
[ "select", "count", "(", "*", ")", "from", "mediatype", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "mediatypeid", "=", "t2", ".", "mediatypeid", "where", "t1", ".", "name", "=", "value" ]
[ "Count", "the", "number", "of", "tracks", "that", "are", "of", "the", "media", "type", "``", "AAC", "audio", "file", "''", "." ]
chinook_1
[]
What is the average duration in milliseconds of tracks that belong to Latin or Pop genre?
SELECT AVG(Milliseconds) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Latin" OR T1.Name = "Pop"
[ "SELECT", "AVG", "(", "Milliseconds", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Latin", "''", "OR", "T1.Name", "=", "``", "Pop", "''" ]
[ "select", "avg", "(", "milliseconds", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value", "or", "t1", ".", "name", "=", "value" ]
[ "What", "is", "the", "average", "duration", "in", "milliseconds", "of", "tracks", "that", "belong", "to", "Latin", "or", "Pop", "genre", "?" ]
chinook_1
[]
Find the average millisecond length of Latin and Pop tracks.
SELECT AVG(Milliseconds) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Latin" OR T1.Name = "Pop"
[ "SELECT", "AVG", "(", "Milliseconds", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Latin", "''", "OR", "T1.Name", "=", "``", "Pop", "''" ]
[ "select", "avg", "(", "milliseconds", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value", "or", "t1", ".", "name", "=", "value" ]
[ "Find", "the", "average", "millisecond", "length", "of", "Latin", "and", "Pop", "tracks", "." ]
chinook_1
[]
Please show the employee first names and ids of employees who serve at least 10 customers.
SELECT T1.FirstName , T1.SupportRepId FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId GROUP BY T1.SupportRepId HAVING COUNT(*) >= 10
[ "SELECT", "T1.FirstName", ",", "T1.SupportRepId", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "EMPLOYEE", "AS", "T2", "ON", "T1.SupportRepId", "=", "T2.EmployeeId", "GROUP", "BY", "T1.SupportRepId", "HAVING", "COUNT", "(", "*", ")", ">", "=", "10" ]
[ "select", "t1", ".", "firstname", ",", "t1", ".", "supportrepid", "from", "customer", "as", "t1", "join", "employee", "as", "t2", "on", "t1", ".", "supportrepid", "=", "t2", ".", "employeeid", "group", "by", "t1", ".", "supportrepid", "having", "count", "(", "*", ")", ">", "=", "value" ]
[ "Please", "show", "the", "employee", "first", "names", "and", "ids", "of", "employees", "who", "serve", "at", "least", "10", "customers", "." ]
chinook_1
[]
What are the first names and support rep ids for employees serving 10 or more customers?
SELECT T1.FirstName , T1.SupportRepId FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId GROUP BY T1.SupportRepId HAVING COUNT(*) >= 10
[ "SELECT", "T1.FirstName", ",", "T1.SupportRepId", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "EMPLOYEE", "AS", "T2", "ON", "T1.SupportRepId", "=", "T2.EmployeeId", "GROUP", "BY", "T1.SupportRepId", "HAVING", "COUNT", "(", "*", ")", ">", "=", "10" ]
[ "select", "t1", ".", "firstname", ",", "t1", ".", "supportrepid", "from", "customer", "as", "t1", "join", "employee", "as", "t2", "on", "t1", ".", "supportrepid", "=", "t2", ".", "employeeid", "group", "by", "t1", ".", "supportrepid", "having", "count", "(", "*", ")", ">", "=", "value" ]
[ "What", "are", "the", "first", "names", "and", "support", "rep", "ids", "for", "employees", "serving", "10", "or", "more", "customers", "?" ]
chinook_1
[]
Please show the employee last names that serves no more than 20 customers.
SELECT T1.LastName FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId GROUP BY T1.SupportRepId HAVING COUNT(*) <= 20
[ "SELECT", "T1.LastName", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "EMPLOYEE", "AS", "T2", "ON", "T1.SupportRepId", "=", "T2.EmployeeId", "GROUP", "BY", "T1.SupportRepId", "HAVING", "COUNT", "(", "*", ")", "<", "=", "20" ]
[ "select", "t1", ".", "lastname", "from", "customer", "as", "t1", "join", "employee", "as", "t2", "on", "t1", ".", "supportrepid", "=", "t2", ".", "employeeid", "group", "by", "t1", ".", "supportrepid", "having", "count", "(", "*", ")", "<", "=", "value" ]
[ "Please", "show", "the", "employee", "last", "names", "that", "serves", "no", "more", "than", "20", "customers", "." ]
chinook_1
[]
What are the last names of employees who serve at most 20 customers?
SELECT T1.LastName FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId GROUP BY T1.SupportRepId HAVING COUNT(*) <= 20
[ "SELECT", "T1.LastName", "FROM", "CUSTOMER", "AS", "T1", "JOIN", "EMPLOYEE", "AS", "T2", "ON", "T1.SupportRepId", "=", "T2.EmployeeId", "GROUP", "BY", "T1.SupportRepId", "HAVING", "COUNT", "(", "*", ")", "<", "=", "20" ]
[ "select", "t1", ".", "lastname", "from", "customer", "as", "t1", "join", "employee", "as", "t2", "on", "t1", ".", "supportrepid", "=", "t2", ".", "employeeid", "group", "by", "t1", ".", "supportrepid", "having", "count", "(", "*", ")", "<", "=", "value" ]
[ "What", "are", "the", "last", "names", "of", "employees", "who", "serve", "at", "most", "20", "customers", "?" ]
chinook_1
[]
Please list all album titles in alphabetical order.
SELECT Title FROM ALBUM ORDER BY Title
[ "SELECT", "Title", "FROM", "ALBUM", "ORDER", "BY", "Title" ]
[ "select", "title", "from", "album", "order", "by", "title" ]
[ "Please", "list", "all", "album", "titles", "in", "alphabetical", "order", "." ]
chinook_1
[]
What are all the album titles, in alphabetical order?
SELECT Title FROM ALBUM ORDER BY Title
[ "SELECT", "Title", "FROM", "ALBUM", "ORDER", "BY", "Title" ]
[ "select", "title", "from", "album", "order", "by", "title" ]
[ "What", "are", "all", "the", "album", "titles", ",", "in", "alphabetical", "order", "?" ]
chinook_1
[]
Please list the name and id of all artists that have at least 3 albums in alphabetical order.
SELECT T2.Name , T1.ArtistId FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistID GROUP BY T1.ArtistId HAVING COUNT(*) >= 3 ORDER BY T2.Name
[ "SELECT", "T2.Name", ",", "T1.ArtistId", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistID", "GROUP", "BY", "T1.ArtistId", "HAVING", "COUNT", "(", "*", ")", ">", "=", "3", "ORDER", "BY", "T2.Name" ]
[ "select", "t2", ".", "name", ",", "t1", ".", "artistid", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "group", "by", "t1", ".", "artistid", "having", "count", "(", "*", ")", ">", "=", "value", "order", "by", "t2", ".", "name" ]
[ "Please", "list", "the", "name", "and", "id", "of", "all", "artists", "that", "have", "at", "least", "3", "albums", "in", "alphabetical", "order", "." ]
chinook_1
[]
What are the names and ids of artists with 3 or more albums, listed in alphabetical order?
SELECT T2.Name , T1.ArtistId FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistID GROUP BY T1.ArtistId HAVING COUNT(*) >= 3 ORDER BY T2.Name
[ "SELECT", "T2.Name", ",", "T1.ArtistId", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistID", "GROUP", "BY", "T1.ArtistId", "HAVING", "COUNT", "(", "*", ")", ">", "=", "3", "ORDER", "BY", "T2.Name" ]
[ "select", "t2", ".", "name", ",", "t1", ".", "artistid", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid", "group", "by", "t1", ".", "artistid", "having", "count", "(", "*", ")", ">", "=", "value", "order", "by", "t2", ".", "name" ]
[ "What", "are", "the", "names", "and", "ids", "of", "artists", "with", "3", "or", "more", "albums", ",", "listed", "in", "alphabetical", "order", "?" ]
chinook_1
[]
Find the names of artists that do not have any albums.
SELECT Name FROM ARTIST EXCEPT SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId
[ "SELECT", "Name", "FROM", "ARTIST", "EXCEPT", "SELECT", "T2.Name", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId" ]
[ "select", "name", "from", "artist", "except", "select", "t2", ".", "name", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid" ]
[ "Find", "the", "names", "of", "artists", "that", "do", "not", "have", "any", "albums", "." ]
chinook_1
[]
What are the names of artists who have not released any albums?
SELECT Name FROM ARTIST EXCEPT SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId
[ "SELECT", "Name", "FROM", "ARTIST", "EXCEPT", "SELECT", "T2.Name", "FROM", "ALBUM", "AS", "T1", "JOIN", "ARTIST", "AS", "T2", "ON", "T1.ArtistId", "=", "T2.ArtistId" ]
[ "select", "name", "from", "artist", "except", "select", "t2", ".", "name", "from", "album", "as", "t1", "join", "artist", "as", "t2", "on", "t1", ".", "artistid", "=", "t2", ".", "artistid" ]
[ "What", "are", "the", "names", "of", "artists", "who", "have", "not", "released", "any", "albums", "?" ]
chinook_1
[]
What is the average unit price of rock tracks?
SELECT AVG(T2.UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Rock"
[ "SELECT", "AVG", "(", "T2.UnitPrice", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Rock", "''" ]
[ "select", "avg", "(", "t2", ".", "unitprice", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value" ]
[ "What", "is", "the", "average", "unit", "price", "of", "rock", "tracks", "?" ]
chinook_1
[]
Find the average unit price of tracks from the Rock genre.
SELECT AVG(T2.UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Rock"
[ "SELECT", "AVG", "(", "T2.UnitPrice", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Rock", "''" ]
[ "select", "avg", "(", "t2", ".", "unitprice", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value" ]
[ "Find", "the", "average", "unit", "price", "of", "tracks", "from", "the", "Rock", "genre", "." ]
chinook_1
[]
What are the duration of the longest and shortest pop tracks in milliseconds?
SELECT max(Milliseconds) , min(Milliseconds) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Pop"
[ "SELECT", "max", "(", "Milliseconds", ")", ",", "min", "(", "Milliseconds", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Pop", "''" ]
[ "select", "max", "(", "milliseconds", ")", ",", "min", "(", "milliseconds", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value" ]
[ "What", "are", "the", "duration", "of", "the", "longest", "and", "shortest", "pop", "tracks", "in", "milliseconds", "?" ]
chinook_1
[]
Find the maximum and minimum millisecond lengths of pop tracks.
SELECT max(Milliseconds) , min(Milliseconds) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Pop"
[ "SELECT", "max", "(", "Milliseconds", ")", ",", "min", "(", "Milliseconds", ")", "FROM", "GENRE", "AS", "T1", "JOIN", "TRACK", "AS", "T2", "ON", "T1.GenreId", "=", "T2.GenreId", "WHERE", "T1.Name", "=", "``", "Pop", "''" ]
[ "select", "max", "(", "milliseconds", ")", ",", "min", "(", "milliseconds", ")", "from", "genre", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "genreid", "=", "t2", ".", "genreid", "where", "t1", ".", "name", "=", "value" ]
[ "Find", "the", "maximum", "and", "minimum", "millisecond", "lengths", "of", "pop", "tracks", "." ]
chinook_1
[]
What are the birth dates of employees living in Edmonton?
SELECT BirthDate FROM EMPLOYEE WHERE City = "Edmonton"
[ "SELECT", "BirthDate", "FROM", "EMPLOYEE", "WHERE", "City", "=", "``", "Edmonton", "''" ]
[ "select", "birthdate", "from", "employee", "where", "city", "=", "value" ]
[ "What", "are", "the", "birth", "dates", "of", "employees", "living", "in", "Edmonton", "?" ]
chinook_1
[]
Find the birth dates corresponding to employees who live in the city of Edmonton.
SELECT BirthDate FROM EMPLOYEE WHERE City = "Edmonton"
[ "SELECT", "BirthDate", "FROM", "EMPLOYEE", "WHERE", "City", "=", "``", "Edmonton", "''" ]
[ "select", "birthdate", "from", "employee", "where", "city", "=", "value" ]
[ "Find", "the", "birth", "dates", "corresponding", "to", "employees", "who", "live", "in", "the", "city", "of", "Edmonton", "." ]
chinook_1
[]
What are the distinct unit prices of all tracks?
SELECT distinct(UnitPrice) FROM TRACK
[ "SELECT", "distinct", "(", "UnitPrice", ")", "FROM", "TRACK" ]
[ "select", "distinct", "(", "unitprice", ")", "from", "track" ]
[ "What", "are", "the", "distinct", "unit", "prices", "of", "all", "tracks", "?" ]
chinook_1
[]
Find the distinct unit prices for tracks.
SELECT distinct(UnitPrice) FROM TRACK
[ "SELECT", "distinct", "(", "UnitPrice", ")", "FROM", "TRACK" ]
[ "select", "distinct", "(", "unitprice", ")", "from", "track" ]
[ "Find", "the", "distinct", "unit", "prices", "for", "tracks", "." ]
chinook_1
[]
How many artists do not have any album?
SELECT count(*) FROM ARTIST WHERE artistid NOT IN(SELECT artistid FROM ALBUM)
[ "SELECT", "count", "(", "*", ")", "FROM", "ARTIST", "WHERE", "artistid", "NOT", "IN", "(", "SELECT", "artistid", "FROM", "ALBUM", ")" ]
[ "select", "count", "(", "*", ")", "from", "artist", "where", "artistid", "not", "in", "(", "select", "artistid", "from", "album", ")" ]
[ "How", "many", "artists", "do", "not", "have", "any", "album", "?" ]
chinook_1
[]
Cound the number of artists who have not released an album.
SELECT count(*) FROM ARTIST WHERE artistid NOT IN(SELECT artistid FROM ALBUM)
[ "SELECT", "count", "(", "*", ")", "FROM", "ARTIST", "WHERE", "artistid", "NOT", "IN", "(", "SELECT", "artistid", "FROM", "ALBUM", ")" ]
[ "select", "count", "(", "*", ")", "from", "artist", "where", "artistid", "not", "in", "(", "select", "artistid", "from", "album", ")" ]
[ "Cound", "the", "number", "of", "artists", "who", "have", "not", "released", "an", "album", "." ]
chinook_1
[]
What are the album titles for albums containing both 'Reggae' and 'Rock' genre tracks?
SELECT T1.Title FROM Album AS T1 JOIN Track AS T2 ON T1.AlbumId = T2.AlbumId JOIN Genre AS T3 ON T2.GenreID = T3.GenreID WHERE T3.Name = 'Reggae' INTERSECT SELECT T1.Title FROM Album AS T1 JOIN Track AS T2 ON T1.AlbumId = T2.AlbumId JOIN Genre AS T3 ON T2.GenreID = T3.GenreID WHERE T3.Name = 'Rock'
[ "SELECT", "T1.Title", "FROM", "Album", "AS", "T1", "JOIN", "Track", "AS", "T2", "ON", "T1.AlbumId", "=", "T2.AlbumId", "JOIN", "Genre", "AS", "T3", "ON", "T2.GenreID", "=", "T3.GenreID", "WHERE", "T3.Name", "=", "'Reggae", "'", "INTERSECT", "SELECT", "T1.Title", "FROM", "Album", "AS", "T1", "JOIN", "Track", "AS", "T2", "ON", "T1.AlbumId", "=", "T2.AlbumId", "JOIN", "Genre", "AS", "T3", "ON", "T2.GenreID", "=", "T3.GenreID", "WHERE", "T3.Name", "=", "'Rock", "'" ]
[ "select", "t1", ".", "title", "from", "album", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "albumid", "=", "t2", ".", "albumid", "join", "genre", "as", "t3", "on", "t2", ".", "genreid", "=", "t3", ".", "genreid", "where", "t3", ".", "name", "=", "value", "intersect", "select", "t1", ".", "title", "from", "album", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "albumid", "=", "t2", ".", "albumid", "join", "genre", "as", "t3", "on", "t2", ".", "genreid", "=", "t3", ".", "genreid", "where", "t3", ".", "name", "=", "value" ]
[ "What", "are", "the", "album", "titles", "for", "albums", "containing", "both", "'Reggae", "'", "and", "'Rock", "'", "genre", "tracks", "?" ]
chinook_1
[]
Find the titles of albums that contain tracks of both the Reggae and Rock genres.
SELECT T1.Title FROM Album AS T1 JOIN Track AS T2 ON T1.AlbumId = T2.AlbumId JOIN Genre AS T3 ON T2.GenreID = T3.GenreID WHERE T3.Name = 'Reggae' INTERSECT SELECT T1.Title FROM Album AS T1 JOIN Track AS T2 ON T1.AlbumId = T2.AlbumId JOIN Genre AS T3 ON T2.GenreID = T3.GenreID WHERE T3.Name = 'Rock'
[ "SELECT", "T1.Title", "FROM", "Album", "AS", "T1", "JOIN", "Track", "AS", "T2", "ON", "T1.AlbumId", "=", "T2.AlbumId", "JOIN", "Genre", "AS", "T3", "ON", "T2.GenreID", "=", "T3.GenreID", "WHERE", "T3.Name", "=", "'Reggae", "'", "INTERSECT", "SELECT", "T1.Title", "FROM", "Album", "AS", "T1", "JOIN", "Track", "AS", "T2", "ON", "T1.AlbumId", "=", "T2.AlbumId", "JOIN", "Genre", "AS", "T3", "ON", "T2.GenreID", "=", "T3.GenreID", "WHERE", "T3.Name", "=", "'Rock", "'" ]
[ "select", "t1", ".", "title", "from", "album", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "albumid", "=", "t2", ".", "albumid", "join", "genre", "as", "t3", "on", "t2", ".", "genreid", "=", "t3", ".", "genreid", "where", "t3", ".", "name", "=", "value", "intersect", "select", "t1", ".", "title", "from", "album", "as", "t1", "join", "track", "as", "t2", "on", "t1", ".", "albumid", "=", "t2", ".", "albumid", "join", "genre", "as", "t3", "on", "t2", ".", "genreid", "=", "t3", ".", "genreid", "where", "t3", ".", "name", "=", "value" ]
[ "Find", "the", "titles", "of", "albums", "that", "contain", "tracks", "of", "both", "the", "Reggae", "and", "Rock", "genres", "." ]
insurance_fnol
[ "CREATE TABLE Customers (\nCustomer_ID INTEGER NOT NULL,\nCustomer_name VARCHAR(40),\nPRIMARY KEY (Customer_ID)\n);", "CREATE TABLE Services (\nService_ID INTEGER NOT NULL,\nService_name VARCHAR(40),\nPRIMARY KEY (Service_ID)\n);", "CREATE TABLE Available_Policies (\nPolicy_ID INTEGER NOT NULL,\npolicy_type_code CHAR(15),\nCustomer_Phone VARCHAR(255),\nPRIMARY KEY (Policy_ID),\nUNIQUE (Policy_ID)\n);", "CREATE TABLE Customers_Policies (\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nDate_Opened DATE,\nDate_Closed DATE,\nPRIMARY KEY (Customer_ID, Policy_ID),\nFOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID),\nFOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID)\n);", "CREATE TABLE First_Notification_of_Loss (\nFNOL_ID INTEGER NOT NULL,\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nService_ID INTEGER NOT NULL,\nPRIMARY KEY (FNOL_ID),\nUNIQUE (FNOL_ID),\nFOREIGN KEY (Service_ID) REFERENCES Services (Service_ID),\nFOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID)\n);", "CREATE TABLE Claims (\nClaim_ID INTEGER NOT NULL,\nFNOL_ID INTEGER NOT NULL,\nEffective_Date DATE,\nPRIMARY KEY (Claim_ID),\nUNIQUE (Claim_ID),\nFOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID)\n);", "CREATE TABLE Settlements (\nSettlement_ID INTEGER NOT NULL,\nClaim_ID INTEGER,\nEffective_Date DATE,\nSettlement_Amount REAL,\nPRIMARY KEY (Settlement_ID),\nUNIQUE (Settlement_ID),\nFOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID)\n);" ]
Find all the phone numbers.
SELECT customer_phone FROM available_policies
[ "SELECT", "customer_phone", "FROM", "available_policies" ]
[ "select", "customer_phone", "from", "available_policies" ]
[ "Find", "all", "the", "phone", "numbers", "." ]
insurance_fnol
[ "CREATE TABLE Customers (\nCustomer_ID INTEGER NOT NULL,\nCustomer_name VARCHAR(40),\nPRIMARY KEY (Customer_ID)\n);", "CREATE TABLE Services (\nService_ID INTEGER NOT NULL,\nService_name VARCHAR(40),\nPRIMARY KEY (Service_ID)\n);", "CREATE TABLE Available_Policies (\nPolicy_ID INTEGER NOT NULL,\npolicy_type_code CHAR(15),\nCustomer_Phone VARCHAR(255),\nPRIMARY KEY (Policy_ID),\nUNIQUE (Policy_ID)\n);", "CREATE TABLE Customers_Policies (\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nDate_Opened DATE,\nDate_Closed DATE,\nPRIMARY KEY (Customer_ID, Policy_ID),\nFOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID),\nFOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID)\n);", "CREATE TABLE First_Notification_of_Loss (\nFNOL_ID INTEGER NOT NULL,\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nService_ID INTEGER NOT NULL,\nPRIMARY KEY (FNOL_ID),\nUNIQUE (FNOL_ID),\nFOREIGN KEY (Service_ID) REFERENCES Services (Service_ID),\nFOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID)\n);", "CREATE TABLE Claims (\nClaim_ID INTEGER NOT NULL,\nFNOL_ID INTEGER NOT NULL,\nEffective_Date DATE,\nPRIMARY KEY (Claim_ID),\nUNIQUE (Claim_ID),\nFOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID)\n);", "CREATE TABLE Settlements (\nSettlement_ID INTEGER NOT NULL,\nClaim_ID INTEGER,\nEffective_Date DATE,\nSettlement_Amount REAL,\nPRIMARY KEY (Settlement_ID),\nUNIQUE (Settlement_ID),\nFOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID)\n);" ]
What are all the phone numbers?
SELECT customer_phone FROM available_policies
[ "SELECT", "customer_phone", "FROM", "available_policies" ]
[ "select", "customer_phone", "from", "available_policies" ]
[ "What", "are", "all", "the", "phone", "numbers", "?" ]
insurance_fnol
[ "CREATE TABLE Customers (\nCustomer_ID INTEGER NOT NULL,\nCustomer_name VARCHAR(40),\nPRIMARY KEY (Customer_ID)\n);", "CREATE TABLE Services (\nService_ID INTEGER NOT NULL,\nService_name VARCHAR(40),\nPRIMARY KEY (Service_ID)\n);", "CREATE TABLE Available_Policies (\nPolicy_ID INTEGER NOT NULL,\npolicy_type_code CHAR(15),\nCustomer_Phone VARCHAR(255),\nPRIMARY KEY (Policy_ID),\nUNIQUE (Policy_ID)\n);", "CREATE TABLE Customers_Policies (\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nDate_Opened DATE,\nDate_Closed DATE,\nPRIMARY KEY (Customer_ID, Policy_ID),\nFOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID),\nFOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID)\n);", "CREATE TABLE First_Notification_of_Loss (\nFNOL_ID INTEGER NOT NULL,\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nService_ID INTEGER NOT NULL,\nPRIMARY KEY (FNOL_ID),\nUNIQUE (FNOL_ID),\nFOREIGN KEY (Service_ID) REFERENCES Services (Service_ID),\nFOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID)\n);", "CREATE TABLE Claims (\nClaim_ID INTEGER NOT NULL,\nFNOL_ID INTEGER NOT NULL,\nEffective_Date DATE,\nPRIMARY KEY (Claim_ID),\nUNIQUE (Claim_ID),\nFOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID)\n);", "CREATE TABLE Settlements (\nSettlement_ID INTEGER NOT NULL,\nClaim_ID INTEGER,\nEffective_Date DATE,\nSettlement_Amount REAL,\nPRIMARY KEY (Settlement_ID),\nUNIQUE (Settlement_ID),\nFOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID)\n);" ]
What are the customer phone numbers under the policy "Life Insurance"?
SELECT customer_phone FROM available_policies WHERE policy_type_code = "Life Insurance"
[ "SELECT", "customer_phone", "FROM", "available_policies", "WHERE", "policy_type_code", "=", "``", "Life", "Insurance", "''" ]
[ "select", "customer_phone", "from", "available_policies", "where", "policy_type_code", "=", "value" ]
[ "What", "are", "the", "customer", "phone", "numbers", "under", "the", "policy", "``", "Life", "Insurance", "''", "?" ]
insurance_fnol
[ "CREATE TABLE Customers (\nCustomer_ID INTEGER NOT NULL,\nCustomer_name VARCHAR(40),\nPRIMARY KEY (Customer_ID)\n);", "CREATE TABLE Services (\nService_ID INTEGER NOT NULL,\nService_name VARCHAR(40),\nPRIMARY KEY (Service_ID)\n);", "CREATE TABLE Available_Policies (\nPolicy_ID INTEGER NOT NULL,\npolicy_type_code CHAR(15),\nCustomer_Phone VARCHAR(255),\nPRIMARY KEY (Policy_ID),\nUNIQUE (Policy_ID)\n);", "CREATE TABLE Customers_Policies (\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nDate_Opened DATE,\nDate_Closed DATE,\nPRIMARY KEY (Customer_ID, Policy_ID),\nFOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID),\nFOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID)\n);", "CREATE TABLE First_Notification_of_Loss (\nFNOL_ID INTEGER NOT NULL,\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nService_ID INTEGER NOT NULL,\nPRIMARY KEY (FNOL_ID),\nUNIQUE (FNOL_ID),\nFOREIGN KEY (Service_ID) REFERENCES Services (Service_ID),\nFOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID)\n);", "CREATE TABLE Claims (\nClaim_ID INTEGER NOT NULL,\nFNOL_ID INTEGER NOT NULL,\nEffective_Date DATE,\nPRIMARY KEY (Claim_ID),\nUNIQUE (Claim_ID),\nFOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID)\n);", "CREATE TABLE Settlements (\nSettlement_ID INTEGER NOT NULL,\nClaim_ID INTEGER,\nEffective_Date DATE,\nSettlement_Amount REAL,\nPRIMARY KEY (Settlement_ID),\nUNIQUE (Settlement_ID),\nFOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID)\n);" ]
What are the phone numbers of customers using the policy with the code "Life Insurance"?
SELECT customer_phone FROM available_policies WHERE policy_type_code = "Life Insurance"
[ "SELECT", "customer_phone", "FROM", "available_policies", "WHERE", "policy_type_code", "=", "``", "Life", "Insurance", "''" ]
[ "select", "customer_phone", "from", "available_policies", "where", "policy_type_code", "=", "value" ]
[ "What", "are", "the", "phone", "numbers", "of", "customers", "using", "the", "policy", "with", "the", "code", "``", "Life", "Insurance", "''", "?" ]
insurance_fnol
[ "CREATE TABLE Customers (\nCustomer_ID INTEGER NOT NULL,\nCustomer_name VARCHAR(40),\nPRIMARY KEY (Customer_ID)\n);", "CREATE TABLE Services (\nService_ID INTEGER NOT NULL,\nService_name VARCHAR(40),\nPRIMARY KEY (Service_ID)\n);", "CREATE TABLE Available_Policies (\nPolicy_ID INTEGER NOT NULL,\npolicy_type_code CHAR(15),\nCustomer_Phone VARCHAR(255),\nPRIMARY KEY (Policy_ID),\nUNIQUE (Policy_ID)\n);", "CREATE TABLE Customers_Policies (\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nDate_Opened DATE,\nDate_Closed DATE,\nPRIMARY KEY (Customer_ID, Policy_ID),\nFOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID),\nFOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID)\n);", "CREATE TABLE First_Notification_of_Loss (\nFNOL_ID INTEGER NOT NULL,\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nService_ID INTEGER NOT NULL,\nPRIMARY KEY (FNOL_ID),\nUNIQUE (FNOL_ID),\nFOREIGN KEY (Service_ID) REFERENCES Services (Service_ID),\nFOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID)\n);", "CREATE TABLE Claims (\nClaim_ID INTEGER NOT NULL,\nFNOL_ID INTEGER NOT NULL,\nEffective_Date DATE,\nPRIMARY KEY (Claim_ID),\nUNIQUE (Claim_ID),\nFOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID)\n);", "CREATE TABLE Settlements (\nSettlement_ID INTEGER NOT NULL,\nClaim_ID INTEGER,\nEffective_Date DATE,\nSettlement_Amount REAL,\nPRIMARY KEY (Settlement_ID),\nUNIQUE (Settlement_ID),\nFOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID)\n);" ]
Which policy type has the most records in the database?
SELECT policy_type_code FROM available_policies GROUP BY policy_type_code ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "policy_type_code", "FROM", "available_policies", "GROUP", "BY", "policy_type_code", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "policy_type_code", "from", "available_policies", "group", "by", "policy_type_code", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "policy", "type", "has", "the", "most", "records", "in", "the", "database", "?" ]
insurance_fnol
[ "CREATE TABLE Customers (\nCustomer_ID INTEGER NOT NULL,\nCustomer_name VARCHAR(40),\nPRIMARY KEY (Customer_ID)\n);", "CREATE TABLE Services (\nService_ID INTEGER NOT NULL,\nService_name VARCHAR(40),\nPRIMARY KEY (Service_ID)\n);", "CREATE TABLE Available_Policies (\nPolicy_ID INTEGER NOT NULL,\npolicy_type_code CHAR(15),\nCustomer_Phone VARCHAR(255),\nPRIMARY KEY (Policy_ID),\nUNIQUE (Policy_ID)\n);", "CREATE TABLE Customers_Policies (\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nDate_Opened DATE,\nDate_Closed DATE,\nPRIMARY KEY (Customer_ID, Policy_ID),\nFOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID),\nFOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID)\n);", "CREATE TABLE First_Notification_of_Loss (\nFNOL_ID INTEGER NOT NULL,\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nService_ID INTEGER NOT NULL,\nPRIMARY KEY (FNOL_ID),\nUNIQUE (FNOL_ID),\nFOREIGN KEY (Service_ID) REFERENCES Services (Service_ID),\nFOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID)\n);", "CREATE TABLE Claims (\nClaim_ID INTEGER NOT NULL,\nFNOL_ID INTEGER NOT NULL,\nEffective_Date DATE,\nPRIMARY KEY (Claim_ID),\nUNIQUE (Claim_ID),\nFOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID)\n);", "CREATE TABLE Settlements (\nSettlement_ID INTEGER NOT NULL,\nClaim_ID INTEGER,\nEffective_Date DATE,\nSettlement_Amount REAL,\nPRIMARY KEY (Settlement_ID),\nUNIQUE (Settlement_ID),\nFOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID)\n);" ]
Which policy type appears most frequently in the available policies?
SELECT policy_type_code FROM available_policies GROUP BY policy_type_code ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "policy_type_code", "FROM", "available_policies", "GROUP", "BY", "policy_type_code", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "policy_type_code", "from", "available_policies", "group", "by", "policy_type_code", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "policy", "type", "appears", "most", "frequently", "in", "the", "available", "policies", "?" ]
insurance_fnol
[ "CREATE TABLE Customers (\nCustomer_ID INTEGER NOT NULL,\nCustomer_name VARCHAR(40),\nPRIMARY KEY (Customer_ID)\n);", "CREATE TABLE Services (\nService_ID INTEGER NOT NULL,\nService_name VARCHAR(40),\nPRIMARY KEY (Service_ID)\n);", "CREATE TABLE Available_Policies (\nPolicy_ID INTEGER NOT NULL,\npolicy_type_code CHAR(15),\nCustomer_Phone VARCHAR(255),\nPRIMARY KEY (Policy_ID),\nUNIQUE (Policy_ID)\n);", "CREATE TABLE Customers_Policies (\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nDate_Opened DATE,\nDate_Closed DATE,\nPRIMARY KEY (Customer_ID, Policy_ID),\nFOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID),\nFOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID)\n);", "CREATE TABLE First_Notification_of_Loss (\nFNOL_ID INTEGER NOT NULL,\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nService_ID INTEGER NOT NULL,\nPRIMARY KEY (FNOL_ID),\nUNIQUE (FNOL_ID),\nFOREIGN KEY (Service_ID) REFERENCES Services (Service_ID),\nFOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID)\n);", "CREATE TABLE Claims (\nClaim_ID INTEGER NOT NULL,\nFNOL_ID INTEGER NOT NULL,\nEffective_Date DATE,\nPRIMARY KEY (Claim_ID),\nUNIQUE (Claim_ID),\nFOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID)\n);", "CREATE TABLE Settlements (\nSettlement_ID INTEGER NOT NULL,\nClaim_ID INTEGER,\nEffective_Date DATE,\nSettlement_Amount REAL,\nPRIMARY KEY (Settlement_ID),\nUNIQUE (Settlement_ID),\nFOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID)\n);" ]
What are all the customer phone numbers under the most popular policy type?
SELECT customer_phone FROM available_policies WHERE policy_type_code = (SELECT policy_type_code FROM available_policies GROUP BY policy_type_code ORDER BY count(*) DESC LIMIT 1)
[ "SELECT", "customer_phone", "FROM", "available_policies", "WHERE", "policy_type_code", "=", "(", "SELECT", "policy_type_code", "FROM", "available_policies", "GROUP", "BY", "policy_type_code", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1", ")" ]
[ "select", "customer_phone", "from", "available_policies", "where", "policy_type_code", "=", "(", "select", "policy_type_code", "from", "available_policies", "group", "by", "policy_type_code", "order", "by", "count", "(", "*", ")", "desc", "limit", "value", ")" ]
[ "What", "are", "all", "the", "customer", "phone", "numbers", "under", "the", "most", "popular", "policy", "type", "?" ]
insurance_fnol
[ "CREATE TABLE Customers (\nCustomer_ID INTEGER NOT NULL,\nCustomer_name VARCHAR(40),\nPRIMARY KEY (Customer_ID)\n);", "CREATE TABLE Services (\nService_ID INTEGER NOT NULL,\nService_name VARCHAR(40),\nPRIMARY KEY (Service_ID)\n);", "CREATE TABLE Available_Policies (\nPolicy_ID INTEGER NOT NULL,\npolicy_type_code CHAR(15),\nCustomer_Phone VARCHAR(255),\nPRIMARY KEY (Policy_ID),\nUNIQUE (Policy_ID)\n);", "CREATE TABLE Customers_Policies (\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nDate_Opened DATE,\nDate_Closed DATE,\nPRIMARY KEY (Customer_ID, Policy_ID),\nFOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID),\nFOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID)\n);", "CREATE TABLE First_Notification_of_Loss (\nFNOL_ID INTEGER NOT NULL,\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nService_ID INTEGER NOT NULL,\nPRIMARY KEY (FNOL_ID),\nUNIQUE (FNOL_ID),\nFOREIGN KEY (Service_ID) REFERENCES Services (Service_ID),\nFOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID)\n);", "CREATE TABLE Claims (\nClaim_ID INTEGER NOT NULL,\nFNOL_ID INTEGER NOT NULL,\nEffective_Date DATE,\nPRIMARY KEY (Claim_ID),\nUNIQUE (Claim_ID),\nFOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID)\n);", "CREATE TABLE Settlements (\nSettlement_ID INTEGER NOT NULL,\nClaim_ID INTEGER,\nEffective_Date DATE,\nSettlement_Amount REAL,\nPRIMARY KEY (Settlement_ID),\nUNIQUE (Settlement_ID),\nFOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID)\n);" ]
Find the phone numbers of customers using the most common policy type among the available policies.
SELECT customer_phone FROM available_policies WHERE policy_type_code = (SELECT policy_type_code FROM available_policies GROUP BY policy_type_code ORDER BY count(*) DESC LIMIT 1)
[ "SELECT", "customer_phone", "FROM", "available_policies", "WHERE", "policy_type_code", "=", "(", "SELECT", "policy_type_code", "FROM", "available_policies", "GROUP", "BY", "policy_type_code", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1", ")" ]
[ "select", "customer_phone", "from", "available_policies", "where", "policy_type_code", "=", "(", "select", "policy_type_code", "from", "available_policies", "group", "by", "policy_type_code", "order", "by", "count", "(", "*", ")", "desc", "limit", "value", ")" ]
[ "Find", "the", "phone", "numbers", "of", "customers", "using", "the", "most", "common", "policy", "type", "among", "the", "available", "policies", "." ]
insurance_fnol
[ "CREATE TABLE Customers (\nCustomer_ID INTEGER NOT NULL,\nCustomer_name VARCHAR(40),\nPRIMARY KEY (Customer_ID)\n);", "CREATE TABLE Services (\nService_ID INTEGER NOT NULL,\nService_name VARCHAR(40),\nPRIMARY KEY (Service_ID)\n);", "CREATE TABLE Available_Policies (\nPolicy_ID INTEGER NOT NULL,\npolicy_type_code CHAR(15),\nCustomer_Phone VARCHAR(255),\nPRIMARY KEY (Policy_ID),\nUNIQUE (Policy_ID)\n);", "CREATE TABLE Customers_Policies (\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nDate_Opened DATE,\nDate_Closed DATE,\nPRIMARY KEY (Customer_ID, Policy_ID),\nFOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID),\nFOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID)\n);", "CREATE TABLE First_Notification_of_Loss (\nFNOL_ID INTEGER NOT NULL,\nCustomer_ID INTEGER NOT NULL,\nPolicy_ID INTEGER NOT NULL,\nService_ID INTEGER NOT NULL,\nPRIMARY KEY (FNOL_ID),\nUNIQUE (FNOL_ID),\nFOREIGN KEY (Service_ID) REFERENCES Services (Service_ID),\nFOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID)\n);", "CREATE TABLE Claims (\nClaim_ID INTEGER NOT NULL,\nFNOL_ID INTEGER NOT NULL,\nEffective_Date DATE,\nPRIMARY KEY (Claim_ID),\nUNIQUE (Claim_ID),\nFOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID)\n);", "CREATE TABLE Settlements (\nSettlement_ID INTEGER NOT NULL,\nClaim_ID INTEGER,\nEffective_Date DATE,\nSettlement_Amount REAL,\nPRIMARY KEY (Settlement_ID),\nUNIQUE (Settlement_ID),\nFOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID)\n);" ]
Find the policy type used by more than 4 customers.
SELECT policy_type_code FROM available_policies GROUP BY policy_type_code HAVING count(*) > 4
[ "SELECT", "policy_type_code", "FROM", "available_policies", "GROUP", "BY", "policy_type_code", "HAVING", "count", "(", "*", ")", ">", "4" ]
[ "select", "policy_type_code", "from", "available_policies", "group", "by", "policy_type_code", "having", "count", "(", "*", ")", ">", "value" ]
[ "Find", "the", "policy", "type", "used", "by", "more", "than", "4", "customers", "." ]