text
stringlengths
146
1.06k
source
dict
### QUESTION Which service id and type has the least number of participants? ### CONTEXT CREATE TABLE Participants_in_Events (Participant_ID VARCHAR, Event_ID VARCHAR); CREATE TABLE services (Service_Type_Code VARCHAR, service_id VARCHAR); CREATE TABLE EVENTS (service_id VARCHAR, Event_ID VARCHAR); CREATE TABLE participants (Participant_ID VARCHAR) ### ANSWER SELECT T3.service_id, T4.Service_Type_Code FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID JOIN EVENTS AS T3 ON T2.Event_ID = T3.Event_ID JOIN services AS T4 ON T3.service_id = T4.service_id GROUP BY T3.service_id ORDER BY COUNT(*) LIMIT 1
{ "answer": "SELECT T3.service_id, T4.Service_Type_Code FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID JOIN EVENTS AS T3 ON T2.Event_ID = T3.Event_ID JOIN services AS T4 ON T3.service_id = T4.service_id GROUP BY T3.service_id ORDER BY COUNT(*) LIMIT 1", "context": "CREATE TABLE Participants_in_Events (Participant_ID VARCHAR, Event_ID VARCHAR); CREATE TABLE services (Service_Type_Code VARCHAR, service_id VARCHAR); CREATE TABLE EVENTS (service_id VARCHAR, Event_ID VARCHAR); CREATE TABLE participants (Participant_ID VARCHAR)", "question": "Which service id and type has the least number of participants?" }
### QUESTION What was the number of music directors where the suresh wadkar co singer of bhayanak? ### CONTEXT CREATE TABLE table_11827596_4 (music_director VARCHAR, co_singer VARCHAR, film_name VARCHAR) ### ANSWER SELECT COUNT(music_director) FROM table_11827596_4 WHERE co_singer = "Suresh Wadkar" AND film_name = "Bhayanak"
{ "answer": "SELECT COUNT(music_director) FROM table_11827596_4 WHERE co_singer = \"Suresh Wadkar\" AND film_name = \"Bhayanak\"", "context": "CREATE TABLE table_11827596_4 (music_director VARCHAR, co_singer VARCHAR, film_name VARCHAR)", "question": "What was the number of music directors where the suresh wadkar co singer of bhayanak?" }
### QUESTION Name the won for played being 22 and points against 511 and lost being 15 ### CONTEXT CREATE TABLE table_27293285_4 (won VARCHAR, points_against VARCHAR, played VARCHAR, lost VARCHAR) ### ANSWER SELECT won FROM table_27293285_4 WHERE played = "22" AND lost = "15" AND points_against = "511"
{ "answer": "SELECT won FROM table_27293285_4 WHERE played = \"22\" AND lost = \"15\" AND points_against = \"511\"", "context": "CREATE TABLE table_27293285_4 (won VARCHAR, points_against VARCHAR, played VARCHAR, lost VARCHAR)", "question": "Name the won for played being 22 and points against 511 and lost being 15" }
### QUESTION Which professionals live in the state of Indiana or have done treatment on more than 2 treatments? List his or her id, last name and cell phone. ### CONTEXT CREATE TABLE Treatments (professional_id VARCHAR); CREATE TABLE Professionals (professional_id VARCHAR, last_name VARCHAR, cell_number VARCHAR); CREATE TABLE Professionals (professional_id VARCHAR, last_name VARCHAR, cell_number VARCHAR, state VARCHAR) ### ANSWER SELECT professional_id, last_name, cell_number FROM Professionals WHERE state = 'Indiana' UNION SELECT T1.professional_id, T1.last_name, T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING COUNT(*) > 2
{ "answer": "SELECT professional_id, last_name, cell_number FROM Professionals WHERE state = 'Indiana' UNION SELECT T1.professional_id, T1.last_name, T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING COUNT(*) > 2", "context": "CREATE TABLE Treatments (professional_id VARCHAR); CREATE TABLE Professionals (professional_id VARCHAR, last_name VARCHAR, cell_number VARCHAR); CREATE TABLE Professionals (professional_id VARCHAR, last_name VARCHAR, cell_number VARCHAR, state VARCHAR)", "question": "Which professionals live in the state of Indiana or have done treatment on more than 2 treatments? List his or her id, last name and cell phone." }
### QUESTION What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points? ### CONTEXT CREATE TABLE table_name_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_96 WHERE team = "yamaha" AND wins = 0 AND rank = "8th" AND points > 22
{ "answer": "SELECT COUNT(year) FROM table_name_96 WHERE team = \"yamaha\" AND wins = 0 AND rank = \"8th\" AND points > 22", "context": "CREATE TABLE table_name_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCHAR)", "question": "What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points?" }
### QUESTION What is the Chinese name of the Eliminated player from Singapore in Index f9? ### CONTEXT CREATE TABLE table_name_51 (Chinese VARCHAR, index VARCHAR, status VARCHAR, country VARCHAR) ### ANSWER SELECT Chinese AS name FROM table_name_51 WHERE status = "eliminated" AND country = "singapore" AND index = "f9"
{ "answer": "SELECT Chinese AS name FROM table_name_51 WHERE status = \"eliminated\" AND country = \"singapore\" AND index = \"f9\"", "context": "CREATE TABLE table_name_51 (Chinese VARCHAR, index VARCHAR, status VARCHAR, country VARCHAR)", "question": "What is the Chinese name of the Eliminated player from Singapore in Index f9?" }
### QUESTION How many countries does each continent have? List the continent id, continent name and the number of countries. ### CONTEXT CREATE TABLE COUNTRIES (Continent VARCHAR); CREATE TABLE CONTINENTS (ContId VARCHAR, Continent VARCHAR) ### ANSWER SELECT T1.ContId, T1.Continent, COUNT(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.Continent GROUP BY T1.ContId
{ "answer": "SELECT T1.ContId, T1.Continent, COUNT(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.Continent GROUP BY T1.ContId", "context": "CREATE TABLE COUNTRIES (Continent VARCHAR); CREATE TABLE CONTINENTS (ContId VARCHAR, Continent VARCHAR)", "question": "How many countries does each continent have? List the continent id, continent name and the number of countries." }
### QUESTION What was the total prize money where John Tabatabai was the runner-up? ### CONTEXT CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR) ### ANSWER SELECT prize_money FROM table_12454156_1 WHERE runner_up = "John Tabatabai"
{ "answer": "SELECT prize_money FROM table_12454156_1 WHERE runner_up = \"John Tabatabai\"", "context": "CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)", "question": "What was the total prize money where John Tabatabai was the runner-up?" }
### QUESTION Name the lead for institute of election results and social democratic of 31.7% 8 seats ### CONTEXT CREATE TABLE table_name_95 (lead VARCHAR, institute VARCHAR, social_democratic VARCHAR) ### ANSWER SELECT lead FROM table_name_95 WHERE institute = "election results" AND social_democratic = "31.7% 8 seats"
{ "answer": "SELECT lead FROM table_name_95 WHERE institute = \"election results\" AND social_democratic = \"31.7% 8 seats\"", "context": "CREATE TABLE table_name_95 (lead VARCHAR, institute VARCHAR, social_democratic VARCHAR)", "question": "Name the lead for institute of election results and social democratic of 31.7% 8 seats" }
### QUESTION What is the first broadcast date of the episode in which Dave's team is made up of Dave Johns and Sally Lindsay? ### CONTEXT CREATE TABLE table_23292220_3 (first_broadcast VARCHAR, daves_team VARCHAR) ### ANSWER SELECT first_broadcast FROM table_23292220_3 WHERE daves_team = "Dave Johns and Sally Lindsay"
{ "answer": "SELECT first_broadcast FROM table_23292220_3 WHERE daves_team = \"Dave Johns and Sally Lindsay\"", "context": "CREATE TABLE table_23292220_3 (first_broadcast VARCHAR, daves_team VARCHAR)", "question": "What is the first broadcast date of the episode in which Dave's team is made up of Dave Johns and Sally Lindsay?" }
### QUESTION How much did the the player with first name Len and last name Barker earn between 1985 to 1990 in total? ### CONTEXT CREATE TABLE salary (salary INTEGER, player_id VARCHAR, year VARCHAR); CREATE TABLE player (player_id VARCHAR, name_first VARCHAR, name_last VARCHAR) ### ANSWER SELECT SUM(T1.salary) FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id WHERE T2.name_first = 'Len' AND T2.name_last = 'Barker' AND T1.year BETWEEN 1985 AND 1990
{ "answer": "SELECT SUM(T1.salary) FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id WHERE T2.name_first = 'Len' AND T2.name_last = 'Barker' AND T1.year BETWEEN 1985 AND 1990", "context": "CREATE TABLE salary (salary INTEGER, player_id VARCHAR, year VARCHAR); CREATE TABLE player (player_id VARCHAR, name_first VARCHAR, name_last VARCHAR)", "question": "How much did the the player with first name Len and last name Barker earn between 1985 to 1990 in total?" }
### QUESTION for the name of jamar jackson what is the total of Number? ### CONTEXT CREATE TABLE table_name_99 (number VARCHAR, name VARCHAR) ### ANSWER SELECT COUNT(number) FROM table_name_99 WHERE name = "jamar jackson"
{ "answer": "SELECT COUNT(number) FROM table_name_99 WHERE name = \"jamar jackson\"", "context": "CREATE TABLE table_name_99 (number VARCHAR, name VARCHAR)", "question": "for the name of jamar jackson what is the total of Number?" }
### QUESTION What is the lowest Postion, when Bike No is greater than 10, when Driver / Passenger is Nicky Pulinx / Ondrej Cermak, and when Points is greater than 244? ### CONTEXT CREATE TABLE table_name_6 (position INTEGER, points VARCHAR, bike_no VARCHAR, driver___passenger VARCHAR) ### ANSWER SELECT MIN(position) FROM table_name_6 WHERE bike_no > 10 AND driver___passenger = "nicky pulinx / ondrej cermak" AND points > 244
{ "answer": "SELECT MIN(position) FROM table_name_6 WHERE bike_no > 10 AND driver___passenger = \"nicky pulinx / ondrej cermak\" AND points > 244", "context": "CREATE TABLE table_name_6 (position INTEGER, points VARCHAR, bike_no VARCHAR, driver___passenger VARCHAR)", "question": "What is the lowest Postion, when Bike No is greater than 10, when Driver / Passenger is Nicky Pulinx / Ondrej Cermak, and when Points is greater than 244?" }
### QUESTION What is Lenth Feet, when Mi From Kingston is greater than 84.5, when Length Meters is greater than 55.5, and when Name is Unnamed? ### CONTEXT CREATE TABLE table_name_28 (length_feet VARCHAR, name VARCHAR, mi_from_kingston VARCHAR, length_meters VARCHAR) ### ANSWER SELECT length_feet FROM table_name_28 WHERE mi_from_kingston > 84.5 AND length_meters > 55.5 AND name = "unnamed"
{ "answer": "SELECT length_feet FROM table_name_28 WHERE mi_from_kingston > 84.5 AND length_meters > 55.5 AND name = \"unnamed\"", "context": "CREATE TABLE table_name_28 (length_feet VARCHAR, name VARCHAR, mi_from_kingston VARCHAR, length_meters VARCHAR)", "question": "What is Lenth Feet, when Mi From Kingston is greater than 84.5, when Length Meters is greater than 55.5, and when Name is Unnamed?" }
### QUESTION List all artists with choreographer Marcos Aguirre and a simple rating. ### CONTEXT CREATE TABLE table_27711947_1 (artist VARCHAR, choreographer VARCHAR, rating VARCHAR) ### ANSWER SELECT artist FROM table_27711947_1 WHERE choreographer = "Marcos Aguirre" AND rating = "Simple"
{ "answer": "SELECT artist FROM table_27711947_1 WHERE choreographer = \"Marcos Aguirre\" AND rating = \"Simple\"", "context": "CREATE TABLE table_27711947_1 (artist VARCHAR, choreographer VARCHAR, rating VARCHAR)", "question": "List all artists with choreographer Marcos Aguirre and a simple rating." }
### QUESTION How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv? ### CONTEXT CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, unix_shell VARCHAR) ### ANSWER SELECT COUNT(powershell__cmdlet_) FROM table_14465871_1 WHERE unix_shell = "env, export, set, setenv"
{ "answer": "SELECT COUNT(powershell__cmdlet_) FROM table_14465871_1 WHERE unix_shell = \"env, export, set, setenv\"", "context": "CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, unix_shell VARCHAR)", "question": "How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv?" }
### QUESTION What is the high lap total for cards with a grid larger than 21, and a Time/Retired of +2 laps? ### CONTEXT CREATE TABLE table_name_91 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) ### ANSWER SELECT MAX(laps) FROM table_name_91 WHERE grid > 21 AND time_retired = "+2 laps"
{ "answer": "SELECT MAX(laps) FROM table_name_91 WHERE grid > 21 AND time_retired = \"+2 laps\"", "context": "CREATE TABLE table_name_91 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)", "question": "What is the high lap total for cards with a grid larger than 21, and a Time/Retired of +2 laps?" }
### QUESTION What date was Millwall the home team? ### CONTEXT CREATE TABLE table_name_29 (date VARCHAR, home_team VARCHAR) ### ANSWER SELECT date FROM table_name_29 WHERE home_team = "millwall"
{ "answer": "SELECT date FROM table_name_29 WHERE home_team = \"millwall\"", "context": "CREATE TABLE table_name_29 (date VARCHAR, home_team VARCHAR)", "question": "What date was Millwall the home team?" }
### QUESTION What is the partial thromboplastin time when the condition factor x deficiency as seen in amyloid purpura? ### CONTEXT CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR) ### ANSWER SELECT partial_thromboplastin_time FROM table_221653_1 WHERE condition = "Factor X deficiency as seen in amyloid purpura"
{ "answer": "SELECT partial_thromboplastin_time FROM table_221653_1 WHERE condition = \"Factor X deficiency as seen in amyloid purpura\"", "context": "CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR)", "question": "What is the partial thromboplastin time when the condition factor x deficiency as seen in amyloid purpura?" }
### QUESTION Who was the writer for the episode with 2.15 million u.s.viewers? ### CONTEXT CREATE TABLE table_22380270_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) ### ANSWER SELECT written_by FROM table_22380270_1 WHERE us_viewers__millions_ = "2.15"
{ "answer": "SELECT written_by FROM table_22380270_1 WHERE us_viewers__millions_ = \"2.15\"", "context": "CREATE TABLE table_22380270_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)", "question": "Who was the writer for the episode with 2.15 million u.s.viewers?" }
### QUESTION Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner? ### CONTEXT CREATE TABLE table_23157997_13 (youth_classification VARCHAR, mountains_classification VARCHAR, winner VARCHAR) ### ANSWER SELECT youth_classification FROM table_23157997_13 WHERE mountains_classification = "Kenneth Hanson" AND winner = "Lucas Sebastian Haedo"
{ "answer": "SELECT youth_classification FROM table_23157997_13 WHERE mountains_classification = \"Kenneth Hanson\" AND winner = \"Lucas Sebastian Haedo\"", "context": "CREATE TABLE table_23157997_13 (youth_classification VARCHAR, mountains_classification VARCHAR, winner VARCHAR)", "question": "Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner?" }
### QUESTION What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games? ### CONTEXT CREATE TABLE table_name_48 (yards INTEGER, rushes VARCHAR, games VARCHAR) ### ANSWER SELECT MAX(yards) FROM table_name_48 WHERE rushes < 51 AND games > 12
{ "answer": "SELECT MAX(yards) FROM table_name_48 WHERE rushes < 51 AND games > 12", "context": "CREATE TABLE table_name_48 (yards INTEGER, rushes VARCHAR, games VARCHAR)", "question": "What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games?" }
### QUESTION What is the Datacenter for the Memory modules: hot addition Feature that has Yes listed for Itanium? ### CONTEXT CREATE TABLE table_name_85 (datacenter VARCHAR, itanium VARCHAR, features VARCHAR) ### ANSWER SELECT datacenter FROM table_name_85 WHERE itanium = "yes" AND features = "memory modules: hot addition"
{ "answer": "SELECT datacenter FROM table_name_85 WHERE itanium = \"yes\" AND features = \"memory modules: hot addition\"", "context": "CREATE TABLE table_name_85 (datacenter VARCHAR, itanium VARCHAR, features VARCHAR)", "question": "What is the Datacenter for the Memory modules: hot addition Feature that has Yes listed for Itanium?" }
### QUESTION What candidates ran in the election when john s. wood was the incumbent? ### CONTEXT CREATE TABLE table_1342331_11 (candidates VARCHAR, incumbent VARCHAR) ### ANSWER SELECT candidates FROM table_1342331_11 WHERE incumbent = "John S. Wood"
{ "answer": "SELECT candidates FROM table_1342331_11 WHERE incumbent = \"John S. Wood\"", "context": "CREATE TABLE table_1342331_11 (candidates VARCHAR, incumbent VARCHAR)", "question": "What candidates ran in the election when john s. wood was the incumbent?" }
### QUESTION What are Arthur Ashe's games w-l? ### CONTEXT CREATE TABLE table_23133482_1 (games_w_l VARCHAR, player VARCHAR) ### ANSWER SELECT games_w_l FROM table_23133482_1 WHERE player = "Arthur Ashe"
{ "answer": "SELECT games_w_l FROM table_23133482_1 WHERE player = \"Arthur Ashe\"", "context": "CREATE TABLE table_23133482_1 (games_w_l VARCHAR, player VARCHAR)", "question": "What are Arthur Ashe's games w-l?" }
### QUESTION Find the names of either colleges in LA with greater than 15000 size or in state AZ with less than 13000 enrollment. ### CONTEXT CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR) ### ANSWER SELECT cName FROM College WHERE enr < 13000 AND state = "AZ" UNION SELECT cName FROM College WHERE enr > 15000 AND state = "LA"
{ "answer": "SELECT cName FROM College WHERE enr < 13000 AND state = \"AZ\" UNION SELECT cName FROM College WHERE enr > 15000 AND state = \"LA\"", "context": "CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR)", "question": "Find the names of either colleges in LA with greater than 15000 size or in state AZ with less than 13000 enrollment." }
### QUESTION What school is in Richmond? ### CONTEXT CREATE TABLE table_2076608_3 (school VARCHAR, location_s_ VARCHAR) ### ANSWER SELECT school FROM table_2076608_3 WHERE location_s_ = "Richmond"
{ "answer": "SELECT school FROM table_2076608_3 WHERE location_s_ = \"Richmond\"", "context": "CREATE TABLE table_2076608_3 (school VARCHAR, location_s_ VARCHAR)", "question": "What school is in Richmond?" }
### QUESTION What is the carrier of the most expensive phone? ### CONTEXT CREATE TABLE phone (Carrier VARCHAR, Price VARCHAR) ### ANSWER SELECT Carrier FROM phone ORDER BY Price DESC LIMIT 1
{ "answer": "SELECT Carrier FROM phone ORDER BY Price DESC LIMIT 1", "context": "CREATE TABLE phone (Carrier VARCHAR, Price VARCHAR)", "question": "What is the carrier of the most expensive phone?" }
### QUESTION What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0? ### CONTEXT CREATE TABLE table_name_23 (losses INTEGER, win__percentage VARCHAR, no_result VARCHAR) ### ANSWER SELECT SUM(losses) FROM table_name_23 WHERE win__percentage = "71.43%" AND no_result > 0
{ "answer": "SELECT SUM(losses) FROM table_name_23 WHERE win__percentage = \"71.43%\" AND no_result > 0", "context": "CREATE TABLE table_name_23 (losses INTEGER, win__percentage VARCHAR, no_result VARCHAR)", "question": "What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0?" }
### QUESTION What is Series, when Launch Date is 23 February 2013? ### CONTEXT CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR) ### ANSWER SELECT series FROM table_name_16 WHERE launch_date = "23 february 2013"
{ "answer": "SELECT series FROM table_name_16 WHERE launch_date = \"23 february 2013\"", "context": "CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR)", "question": "What is Series, when Launch Date is 23 February 2013?" }
### QUESTION How many silver medals were awarded to the Nation with less than 2 gold, more than 6 bronze and a rank higher than 5? ### CONTEXT CREATE TABLE table_name_33 (silver INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR) ### ANSWER SELECT SUM(silver) FROM table_name_33 WHERE rank > 5 AND bronze > 6 AND gold < 2
{ "answer": "SELECT SUM(silver) FROM table_name_33 WHERE rank > 5 AND bronze > 6 AND gold < 2", "context": "CREATE TABLE table_name_33 (silver INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR)", "question": "How many silver medals were awarded to the Nation with less than 2 gold, more than 6 bronze and a rank higher than 5?" }
### QUESTION What are the distinct grant amount for the grants where the documents were sent before '1986-08-26 20:49:27' and grant were ended after '1989-03-16 18:27:16'? ### CONTEXT CREATE TABLE grants (grant_amount VARCHAR, grant_end_date INTEGER); CREATE TABLE Grants (grant_amount VARCHAR, grant_id VARCHAR); CREATE TABLE Documents (grant_id VARCHAR, sent_date INTEGER) ### ANSWER SELECT T1.grant_amount FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id WHERE T2.sent_date < '1986-08-26 20:49:27' INTERSECT SELECT grant_amount FROM grants WHERE grant_end_date > '1989-03-16 18:27:16'
{ "answer": "SELECT T1.grant_amount FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id WHERE T2.sent_date < '1986-08-26 20:49:27' INTERSECT SELECT grant_amount FROM grants WHERE grant_end_date > '1989-03-16 18:27:16'", "context": "CREATE TABLE grants (grant_amount VARCHAR, grant_end_date INTEGER); CREATE TABLE Grants (grant_amount VARCHAR, grant_id VARCHAR); CREATE TABLE Documents (grant_id VARCHAR, sent_date INTEGER)", "question": "What are the distinct grant amount for the grants where the documents were sent before '1986-08-26 20:49:27' and grant were ended after '1989-03-16 18:27:16'?" }
### QUESTION Which constructor has 10-12 rounds and a M7A chassis? ### CONTEXT CREATE TABLE table_name_40 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR) ### ANSWER SELECT constructor FROM table_name_40 WHERE rounds = "10-12" AND chassis = "m7a"
{ "answer": "SELECT constructor FROM table_name_40 WHERE rounds = \"10-12\" AND chassis = \"m7a\"", "context": "CREATE TABLE table_name_40 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR)", "question": "Which constructor has 10-12 rounds and a M7A chassis?" }
### QUESTION How many total games were played against @ St. Louis Hawks this season? ### CONTEXT CREATE TABLE table_name_42 (game INTEGER, opponent VARCHAR) ### ANSWER SELECT SUM(game) FROM table_name_42 WHERE opponent = "@ st. louis hawks"
{ "answer": "SELECT SUM(game) FROM table_name_42 WHERE opponent = \"@ st. louis hawks\"", "context": "CREATE TABLE table_name_42 (game INTEGER, opponent VARCHAR)", "question": "How many total games were played against @ St. Louis Hawks this season?" }
### QUESTION The rider mike di meglio had a total of how many grids? ### CONTEXT CREATE TABLE table_name_71 (grid VARCHAR, rider VARCHAR) ### ANSWER SELECT COUNT(grid) FROM table_name_71 WHERE rider = "mike di meglio"
{ "answer": "SELECT COUNT(grid) FROM table_name_71 WHERE rider = \"mike di meglio\"", "context": "CREATE TABLE table_name_71 (grid VARCHAR, rider VARCHAR)", "question": "The rider mike di meglio had a total of how many grids?" }
### QUESTION What is the highest Population, when Per Capita Income is "$17,168", and when Number of Households is greater than 3,287? ### CONTEXT CREATE TABLE table_name_86 (population INTEGER, per_capita_income VARCHAR, number_of_households VARCHAR) ### ANSWER SELECT MAX(population) FROM table_name_86 WHERE per_capita_income = "$17,168" AND number_of_households > 3 OFFSET 287
{ "answer": "SELECT MAX(population) FROM table_name_86 WHERE per_capita_income = \"$17,168\" AND number_of_households > 3 OFFSET 287", "context": "CREATE TABLE table_name_86 (population INTEGER, per_capita_income VARCHAR, number_of_households VARCHAR)", "question": "What is the highest Population, when Per Capita Income is \"$17,168\", and when Number of Households is greater than 3,287?" }
### QUESTION Which engineers have never visited to maintain the assets? List the engineer first name and last name. ### CONTEXT CREATE TABLE Engineer_Visits (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR); CREATE TABLE Maintenance_Engineers (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR) ### ANSWER SELECT first_name, last_name FROM Maintenance_Engineers WHERE NOT engineer_id IN (SELECT engineer_id FROM Engineer_Visits)
{ "answer": "SELECT first_name, last_name FROM Maintenance_Engineers WHERE NOT engineer_id IN (SELECT engineer_id FROM Engineer_Visits)", "context": "CREATE TABLE Engineer_Visits (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR); CREATE TABLE Maintenance_Engineers (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR)", "question": "Which engineers have never visited to maintain the assets? List the engineer first name and last name." }
### QUESTION What is Championship, when Outcome is "runner-up", and when Opponents In Final is "Gigi Fernández Natalia Zvereva"? ### CONTEXT CREATE TABLE table_name_55 (championship VARCHAR, outcome VARCHAR, opponents_in_final VARCHAR) ### ANSWER SELECT championship FROM table_name_55 WHERE outcome = "runner-up" AND opponents_in_final = "gigi fernández natalia zvereva"
{ "answer": "SELECT championship FROM table_name_55 WHERE outcome = \"runner-up\" AND opponents_in_final = \"gigi fernández natalia zvereva\"", "context": "CREATE TABLE table_name_55 (championship VARCHAR, outcome VARCHAR, opponents_in_final VARCHAR)", "question": "What is Championship, when Outcome is \"runner-up\", and when Opponents In Final is \"Gigi Fernández Natalia Zvereva\"?" }
### QUESTION Which country has a rollercoaster that opened in 2002, is a spinning coaster, and is located in Disney's Animal Kingdom? ### CONTEXT CREATE TABLE table_name_76 (country VARCHAR, park VARCHAR, opened VARCHAR, model VARCHAR) ### ANSWER SELECT country FROM table_name_76 WHERE opened = 2002 AND model = "spinning coaster" AND park = "disney's animal kingdom"
{ "answer": "SELECT country FROM table_name_76 WHERE opened = 2002 AND model = \"spinning coaster\" AND park = \"disney's animal kingdom\"", "context": "CREATE TABLE table_name_76 (country VARCHAR, park VARCHAR, opened VARCHAR, model VARCHAR)", "question": "Which country has a rollercoaster that opened in 2002, is a spinning coaster, and is located in Disney's Animal Kingdom?" }
### QUESTION How many values for silver occur when gold is less than 1, the rank is 13, and bronze is greater than 2? ### CONTEXT CREATE TABLE table_name_70 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR) ### ANSWER SELECT COUNT(silver) FROM table_name_70 WHERE gold < 1 AND rank = 13 AND bronze > 2
{ "answer": "SELECT COUNT(silver) FROM table_name_70 WHERE gold < 1 AND rank = 13 AND bronze > 2", "context": "CREATE TABLE table_name_70 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)", "question": "How many values for silver occur when gold is less than 1, the rank is 13, and bronze is greater than 2?" }
### QUESTION Who was the winner from the United States the year Kimberly Kim was runner-up? ### CONTEXT CREATE TABLE table_name_59 (winner VARCHAR, runner_up VARCHAR, country VARCHAR) ### ANSWER SELECT winner FROM table_name_59 WHERE runner_up = "kimberly kim" AND country = "united states"
{ "answer": "SELECT winner FROM table_name_59 WHERE runner_up = \"kimberly kim\" AND country = \"united states\"", "context": "CREATE TABLE table_name_59 (winner VARCHAR, runner_up VARCHAR, country VARCHAR)", "question": "Who was the winner from the United States the year Kimberly Kim was runner-up?" }
### QUESTION List the names and origins of people who are not body builders. ### CONTEXT CREATE TABLE people (Name VARCHAR, birth_place VARCHAR, people_id VARCHAR); CREATE TABLE body_builder (people_id VARCHAR); CREATE TABLE people (Name VARCHAR, birth_place VARCHAR) ### ANSWER SELECT Name, birth_place FROM people EXCEPT SELECT T1.Name, T1.birth_place FROM people AS T1 JOIN body_builder AS T2 ON T1.people_id = T2.people_id
{ "answer": "SELECT Name, birth_place FROM people EXCEPT SELECT T1.Name, T1.birth_place FROM people AS T1 JOIN body_builder AS T2 ON T1.people_id = T2.people_id", "context": "CREATE TABLE people (Name VARCHAR, birth_place VARCHAR, people_id VARCHAR); CREATE TABLE body_builder (people_id VARCHAR); CREATE TABLE people (Name VARCHAR, birth_place VARCHAR)", "question": "List the names and origins of people who are not body builders." }
### QUESTION List the clubs having "Davis Steven" as a member. ### CONTEXT CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR) ### ANSWER SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = "Davis" AND t3.lname = "Steven"
{ "answer": "SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = \"Davis\" AND t3.lname = \"Steven\"", "context": "CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR)", "question": "List the clubs having \"Davis Steven\" as a member." }
### QUESTION Find all the songs that do not have a back vocal. ### CONTEXT CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE vocals (songid VARCHAR) ### ANSWER SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = "back"
{ "answer": "SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = \"back\"", "context": "CREATE TABLE songs (title VARCHAR, songid VARCHAR); CREATE TABLE vocals (songid VARCHAR)", "question": "Find all the songs that do not have a back vocal." }
### QUESTION What is the score for Set 2 at 15:21? ### CONTEXT CREATE TABLE table_name_48 (score VARCHAR, set_2 VARCHAR) ### ANSWER SELECT score FROM table_name_48 WHERE set_2 = "15:21"
{ "answer": "SELECT score FROM table_name_48 WHERE set_2 = \"15:21\"", "context": "CREATE TABLE table_name_48 (score VARCHAR, set_2 VARCHAR)", "question": "What is the score for Set 2 at 15:21?" }
### QUESTION What is the total attendance for Detroit on hasek? ### CONTEXT CREATE TABLE table_name_50 (attendance VARCHAR, home VARCHAR, decision VARCHAR) ### ANSWER SELECT COUNT(attendance) FROM table_name_50 WHERE home = "detroit" AND decision = "hasek"
{ "answer": "SELECT COUNT(attendance) FROM table_name_50 WHERE home = \"detroit\" AND decision = \"hasek\"", "context": "CREATE TABLE table_name_50 (attendance VARCHAR, home VARCHAR, decision VARCHAR)", "question": "What is the total attendance for Detroit on hasek?" }
### QUESTION What is the high point toal for martine foubert placing below 2? ### CONTEXT CREATE TABLE table_name_32 (points INTEGER, artist VARCHAR, place VARCHAR) ### ANSWER SELECT MAX(points) FROM table_name_32 WHERE artist = "martine foubert" AND place > 2
{ "answer": "SELECT MAX(points) FROM table_name_32 WHERE artist = \"martine foubert\" AND place > 2", "context": "CREATE TABLE table_name_32 (points INTEGER, artist VARCHAR, place VARCHAR)", "question": "What is the high point toal for martine foubert placing below 2?" }
### QUESTION What are the hometowns that are shared by at least two gymnasts? ### CONTEXT CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR) ### ANSWER SELECT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID GROUP BY T2.Hometown HAVING COUNT(*) >= 2
{ "answer": "SELECT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID GROUP BY T2.Hometown HAVING COUNT(*) >= 2", "context": "CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR)", "question": "What are the hometowns that are shared by at least two gymnasts?" }
### QUESTION What is the number of played games a club with more than 71 points and less than 8 losses has? ### CONTEXT CREATE TABLE table_name_50 (played INTEGER, points VARCHAR, losses VARCHAR) ### ANSWER SELECT SUM(played) FROM table_name_50 WHERE points > 71 AND losses < 8
{ "answer": "SELECT SUM(played) FROM table_name_50 WHERE points > 71 AND losses < 8", "context": "CREATE TABLE table_name_50 (played INTEGER, points VARCHAR, losses VARCHAR)", "question": "What is the number of played games a club with more than 71 points and less than 8 losses has?" }
### QUESTION Find the last name of the staff member who processed the complaint of the cheapest product. ### CONTEXT CREATE TABLE products (product_id VARCHAR, product_price VARCHAR); CREATE TABLE complaints (staff_id VARCHAR, product_id VARCHAR); CREATE TABLE staff (last_name VARCHAR, staff_id VARCHAR) ### ANSWER SELECT t1.last_name FROM staff AS t1 JOIN complaints AS t2 ON t1.staff_id = t2.staff_id JOIN products AS t3 ON t2.product_id = t3.product_id ORDER BY t3.product_price LIMIT 1
{ "answer": "SELECT t1.last_name FROM staff AS t1 JOIN complaints AS t2 ON t1.staff_id = t2.staff_id JOIN products AS t3 ON t2.product_id = t3.product_id ORDER BY t3.product_price LIMIT 1", "context": "CREATE TABLE products (product_id VARCHAR, product_price VARCHAR); CREATE TABLE complaints (staff_id VARCHAR, product_id VARCHAR); CREATE TABLE staff (last_name VARCHAR, staff_id VARCHAR)", "question": "Find the last name of the staff member who processed the complaint of the cheapest product." }
### QUESTION What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883? ### CONTEXT CREATE TABLE table_name_42 (total_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR) ### ANSWER SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = "new private sector banks" AND on_site_atms > 1883
{ "answer": "SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = \"new private sector banks\" AND on_site_atms > 1883", "context": "CREATE TABLE table_name_42 (total_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR)", "question": "What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883?" }
### QUESTION What's the white of E93 King's Indian Defence when Kasparov was black, moves were greater than 19, and happened before 2000? ### CONTEXT CREATE TABLE table_name_80 (white VARCHAR, opening VARCHAR, year VARCHAR, moves VARCHAR, black VARCHAR) ### ANSWER SELECT white FROM table_name_80 WHERE moves > 19 AND black = "kasparov" AND year < 2000 AND opening = "e93 king's indian defence"
{ "answer": "SELECT white FROM table_name_80 WHERE moves > 19 AND black = \"kasparov\" AND year < 2000 AND opening = \"e93 king's indian defence\"", "context": "CREATE TABLE table_name_80 (white VARCHAR, opening VARCHAR, year VARCHAR, moves VARCHAR, black VARCHAR)", "question": "What's the white of E93 King's Indian Defence when Kasparov was black, moves were greater than 19, and happened before 2000?" }
### QUESTION Give me the names of customers who have placed orders between 2009-01-01 and 2010-01-01. ### CONTEXT CREATE TABLE orders (customer_id VARCHAR, date_order_placed VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR) ### ANSWER SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.date_order_placed >= "2009-01-01" AND T2.date_order_placed <= "2010-01-01"
{ "answer": "SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.date_order_placed >= \"2009-01-01\" AND T2.date_order_placed <= \"2010-01-01\"", "context": "CREATE TABLE orders (customer_id VARCHAR, date_order_placed VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)", "question": "Give me the names of customers who have placed orders between 2009-01-01 and 2010-01-01." }
### QUESTION Which First has a Uni # larger than 34, and Throws of r, and a Position of rhp, and a Surname of stockman? ### CONTEXT CREATE TABLE table_name_12 (first VARCHAR, surname VARCHAR, position VARCHAR, uni_number VARCHAR, throws VARCHAR) ### ANSWER SELECT first FROM table_name_12 WHERE uni_number > 34 AND throws = "r" AND position = "rhp" AND surname = "stockman"
{ "answer": "SELECT first FROM table_name_12 WHERE uni_number > 34 AND throws = \"r\" AND position = \"rhp\" AND surname = \"stockman\"", "context": "CREATE TABLE table_name_12 (first VARCHAR, surname VARCHAR, position VARCHAR, uni_number VARCHAR, throws VARCHAR)", "question": "Which First has a Uni # larger than 34, and Throws of r, and a Position of rhp, and a Surname of stockman?" }
### QUESTION what is the image quality when the multiple sessions is x, the authentication is ✓ and the date is may 15, 2007? ### CONTEXT CREATE TABLE table_name_32 (image_quality VARCHAR, date VARCHAR, multiple_sessions VARCHAR, authentication VARCHAR) ### ANSWER SELECT image_quality FROM table_name_32 WHERE multiple_sessions = "x" AND authentication = "✓" AND date = "may 15, 2007"
{ "answer": "SELECT image_quality FROM table_name_32 WHERE multiple_sessions = \"x\" AND authentication = \"✓\" AND date = \"may 15, 2007\"", "context": "CREATE TABLE table_name_32 (image_quality VARCHAR, date VARCHAR, multiple_sessions VARCHAR, authentication VARCHAR)", "question": "what is the image quality when the multiple sessions is x, the authentication is ✓ and the date is may 15, 2007?" }
### QUESTION Which opponent played in the Chinese Taipei Open in 2000? ### CONTEXT CREATE TABLE table_name_66 (opponent VARCHAR, tournament VARCHAR, year VARCHAR) ### ANSWER SELECT opponent FROM table_name_66 WHERE tournament = "chinese taipei open" AND year = 2000
{ "answer": "SELECT opponent FROM table_name_66 WHERE tournament = \"chinese taipei open\" AND year = 2000", "context": "CREATE TABLE table_name_66 (opponent VARCHAR, tournament VARCHAR, year VARCHAR)", "question": "Which opponent played in the Chinese Taipei Open in 2000?" }
### QUESTION Name the nationality for francesco guglielmi ### CONTEXT CREATE TABLE table_22705586_1 (nationality VARCHAR, name VARCHAR) ### ANSWER SELECT nationality FROM table_22705586_1 WHERE name = "Francesco Guglielmi"
{ "answer": "SELECT nationality FROM table_22705586_1 WHERE name = \"Francesco Guglielmi\"", "context": "CREATE TABLE table_22705586_1 (nationality VARCHAR, name VARCHAR)", "question": "Name the nationality for francesco guglielmi" }
### QUESTION Give me the names of members whose address is in Harford or Waterbury. ### CONTEXT CREATE TABLE member (name VARCHAR, address VARCHAR) ### ANSWER SELECT name FROM member WHERE address = 'Harford' OR address = 'Waterbury'
{ "answer": "SELECT name FROM member WHERE address = 'Harford' OR address = 'Waterbury'", "context": "CREATE TABLE member (name VARCHAR, address VARCHAR)", "question": "Give me the names of members whose address is in Harford or Waterbury." }
### QUESTION In episode 7 what was the highest amount of money requested by Jerry Mantalvanos & Paul Merker ? ### CONTEXT CREATE TABLE table_name_24 (money_requested__ INTEGER, episode VARCHAR, entrepreneur_s_ VARCHAR) ### ANSWER SELECT MAX(money_requested__) AS £_ FROM table_name_24 WHERE episode = "episode 7" AND entrepreneur_s_ = "jerry mantalvanos & paul merker"
{ "answer": "SELECT MAX(money_requested__) AS £_ FROM table_name_24 WHERE episode = \"episode 7\" AND entrepreneur_s_ = \"jerry mantalvanos & paul merker\"", "context": "CREATE TABLE table_name_24 (money_requested__ INTEGER, episode VARCHAR, entrepreneur_s_ VARCHAR)", "question": "In episode 7 what was the highest amount of money requested by Jerry Mantalvanos & Paul Merker ?" }
### QUESTION Name the 2013 club which has a Name of ana grbac category:articles with hcards? ### CONTEXT CREATE TABLE table_name_62 (name VARCHAR) ### ANSWER SELECT 2013 AS _club FROM table_name_62 WHERE name = "ana grbac category:articles with hcards"
{ "answer": "SELECT 2013 AS _club FROM table_name_62 WHERE name = \"ana grbac category:articles with hcards\"", "context": "CREATE TABLE table_name_62 (name VARCHAR)", "question": "Name the 2013 club which has a Name of ana grbac category:articles with hcards?" }
### QUESTION Who was the centerfold model when the issue's pictorial was kimberly bell , bunnies of the new playboy club? ### CONTEXT CREATE TABLE table_1566852_8 (centerfold_model VARCHAR, pictorials VARCHAR) ### ANSWER SELECT centerfold_model FROM table_1566852_8 WHERE pictorials = "Kimberly Bell , Bunnies of the New Playboy Club"
{ "answer": "SELECT centerfold_model FROM table_1566852_8 WHERE pictorials = \"Kimberly Bell , Bunnies of the New Playboy Club\"", "context": "CREATE TABLE table_1566852_8 (centerfold_model VARCHAR, pictorials VARCHAR)", "question": "Who was the centerfold model when the issue's pictorial was kimberly bell , bunnies of the new playboy club?" }
### QUESTION What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april? ### CONTEXT CREATE TABLE table_name_8 (source VARCHAR, date VARCHAR, race_winners VARCHAR, gp_winner VARCHAR) ### ANSWER SELECT source FROM table_name_8 WHERE race_winners = "ben adriaenssen / ben van den bogaart" AND gp_winner = "ben adriaenssen / ben van den bogaart" AND date = "1 april"
{ "answer": "SELECT source FROM table_name_8 WHERE race_winners = \"ben adriaenssen / ben van den bogaart\" AND gp_winner = \"ben adriaenssen / ben van den bogaart\" AND date = \"1 april\"", "context": "CREATE TABLE table_name_8 (source VARCHAR, date VARCHAR, race_winners VARCHAR, gp_winner VARCHAR)", "question": "What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april?" }
### QUESTION When гн(иј)ездо / gn(ij)ezdo is the serbo-croatian how many proto-slavics are there? ### CONTEXT CREATE TABLE table_26757_4 (proto_slavic VARCHAR, serbo_croatian VARCHAR) ### ANSWER SELECT COUNT(proto_slavic) FROM table_26757_4 WHERE serbo_croatian = "гн(иј)ездо / gn(ij)ezdo"
{ "answer": "SELECT COUNT(proto_slavic) FROM table_26757_4 WHERE serbo_croatian = \"гн(иј)ездо / gn(ij)ezdo\"", "context": "CREATE TABLE table_26757_4 (proto_slavic VARCHAR, serbo_croatian VARCHAR)", "question": "When гн(иј)ездо / gn(ij)ezdo is the serbo-croatian how many proto-slavics are there?" }
### QUESTION What is the total pick# played by Anton Rodin with a Reg GP over 0? ### CONTEXT CREATE TABLE table_name_32 (pick__number VARCHAR, player VARCHAR, reg_gp VARCHAR) ### ANSWER SELECT COUNT(pick__number) FROM table_name_32 WHERE player = "anton rodin" AND reg_gp > 0
{ "answer": "SELECT COUNT(pick__number) FROM table_name_32 WHERE player = \"anton rodin\" AND reg_gp > 0", "context": "CREATE TABLE table_name_32 (pick__number VARCHAR, player VARCHAR, reg_gp VARCHAR)", "question": "What is the total pick# played by Anton Rodin with a Reg GP over 0?" }
### QUESTION List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu ### CONTEXT CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs_words_compounded VARCHAR) ### ANSWER SELECT hebrew_word FROM table_1242447_2 WHERE strongs_words_compounded = "'adown [# 113] & Yahu"
{ "answer": "SELECT hebrew_word FROM table_1242447_2 WHERE strongs_words_compounded = \"'adown [# 113] & Yahu\"", "context": "CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs_words_compounded VARCHAR)", "question": "List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu" }
### QUESTION Which NIR number is for the tso (ex-br class 488 unit 488305) type that has a 6082 / 72605 BR number? ### CONTEXT CREATE TABLE table_name_87 (nir_number VARCHAR, type VARCHAR, br_number_s_ VARCHAR) ### ANSWER SELECT nir_number FROM table_name_87 WHERE type = "tso (ex-br class 488 unit 488305)" AND br_number_s_ = "6082 / 72605"
{ "answer": "SELECT nir_number FROM table_name_87 WHERE type = \"tso (ex-br class 488 unit 488305)\" AND br_number_s_ = \"6082 / 72605\"", "context": "CREATE TABLE table_name_87 (nir_number VARCHAR, type VARCHAR, br_number_s_ VARCHAR)", "question": "Which NIR number is for the tso (ex-br class 488 unit 488305) type that has a 6082 / 72605 BR number?" }
### QUESTION What team uses a Cosworth DFV V8 engine and DN9 Chassis? ### CONTEXT CREATE TABLE table_name_68 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR) ### ANSWER SELECT entrant FROM table_name_68 WHERE engine = "cosworth dfv v8" AND chassis = "dn9"
{ "answer": "SELECT entrant FROM table_name_68 WHERE engine = \"cosworth dfv v8\" AND chassis = \"dn9\"", "context": "CREATE TABLE table_name_68 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR)", "question": "What team uses a Cosworth DFV V8 engine and DN9 Chassis?" }
### QUESTION How many season did the team lost in round 1 with a GP of 64? ### CONTEXT CREATE TABLE table_2233872_1 (COUNt VARCHAR, gp VARCHAR, result VARCHAR) ### ANSWER SELECT COUNt AS season FROM table_2233872_1 WHERE gp = 64 AND result = "lost in round 1"
{ "answer": "SELECT COUNt AS season FROM table_2233872_1 WHERE gp = 64 AND result = \"lost in round 1\"", "context": "CREATE TABLE table_2233872_1 (COUNt VARCHAR, gp VARCHAR, result VARCHAR)", "question": "How many season did the team lost in round 1 with a GP of 64?" }
### QUESTION Where the fastest lap is Mike Rockenfeller, who is the winning driver? ### CONTEXT CREATE TABLE table_26267607_2 (winning_driver VARCHAR, fastest_lap VARCHAR) ### ANSWER SELECT winning_driver FROM table_26267607_2 WHERE fastest_lap = "Mike Rockenfeller"
{ "answer": "SELECT winning_driver FROM table_26267607_2 WHERE fastest_lap = \"Mike Rockenfeller\"", "context": "CREATE TABLE table_26267607_2 (winning_driver VARCHAR, fastest_lap VARCHAR)", "question": "Where the fastest lap is Mike Rockenfeller, who is the winning driver?" }
### QUESTION What city was completed in 1910-1978? ### CONTEXT CREATE TABLE table_name_23 (city VARCHAR, completion VARCHAR) ### ANSWER SELECT city FROM table_name_23 WHERE completion = "1910-1978"
{ "answer": "SELECT city FROM table_name_23 WHERE completion = \"1910-1978\"", "context": "CREATE TABLE table_name_23 (city VARCHAR, completion VARCHAR)", "question": "What city was completed in 1910-1978?" }
### QUESTION What was the game edition when they played on the clay (i) surface and the outcome was a winner? ### CONTEXT CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR) ### ANSWER SELECT edition FROM table_18183850_12 WHERE surface = "Clay (i)" AND outcome = "Winner"
{ "answer": "SELECT edition FROM table_18183850_12 WHERE surface = \"Clay (i)\" AND outcome = \"Winner\"", "context": "CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR)", "question": "What was the game edition when they played on the clay (i) surface and the outcome was a winner?" }
### QUESTION What team has Steinar Kaldal, a guard / forward? ### CONTEXT CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR) ### ANSWER SELECT team FROM table_name_57 WHERE position = "guard / forward" AND player = "steinar kaldal"
{ "answer": "SELECT team FROM table_name_57 WHERE position = \"guard / forward\" AND player = \"steinar kaldal\"", "context": "CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR)", "question": "What team has Steinar Kaldal, a guard / forward?" }
### QUESTION what tornament had the scores 6–7, 6–2, 6–4? ### CONTEXT CREATE TABLE table_name_22 (tournament VARCHAR, score_in_the_final VARCHAR) ### ANSWER SELECT tournament FROM table_name_22 WHERE score_in_the_final = "6–7, 6–2, 6–4"
{ "answer": "SELECT tournament FROM table_name_22 WHERE score_in_the_final = \"6–7, 6–2, 6–4\"", "context": "CREATE TABLE table_name_22 (tournament VARCHAR, score_in_the_final VARCHAR)", "question": "what tornament had the scores 6–7, 6–2, 6–4?" }
### QUESTION What country submitted the movie the orphanage? ### CONTEXT CREATE TABLE table_12842068_1 (submitting_country VARCHAR, film_title_used_in_nomination VARCHAR) ### ANSWER SELECT submitting_country FROM table_12842068_1 WHERE film_title_used_in_nomination = "The Orphanage"
{ "answer": "SELECT submitting_country FROM table_12842068_1 WHERE film_title_used_in_nomination = \"The Orphanage\"", "context": "CREATE TABLE table_12842068_1 (submitting_country VARCHAR, film_title_used_in_nomination VARCHAR)", "question": "What country submitted the movie the orphanage?" }
### QUESTION What is the smallest capacity for a First season in Segunda División of 2013, and Top division titles larger than 0? ### CONTEXT CREATE TABLE table_name_11 (capacity INTEGER, first_season_in_segunda_división VARCHAR, top_division_titles VARCHAR) ### ANSWER SELECT MIN(capacity) FROM table_name_11 WHERE first_season_in_segunda_división = 2013 AND top_division_titles > 0
{ "answer": "SELECT MIN(capacity) FROM table_name_11 WHERE first_season_in_segunda_división = 2013 AND top_division_titles > 0", "context": "CREATE TABLE table_name_11 (capacity INTEGER, first_season_in_segunda_división VARCHAR, top_division_titles VARCHAR)", "question": "What is the smallest capacity for a First season in Segunda División of 2013, and Top division titles larger than 0?" }
### QUESTION In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants? ### CONTEXT CREATE TABLE table_name_64 (election INTEGER, mayor VARCHAR, inhabitants VARCHAR) ### ANSWER SELECT SUM(election) FROM table_name_64 WHERE mayor = "adalberto mosaner" AND inhabitants < 16 OFFSET 170
{ "answer": "SELECT SUM(election) FROM table_name_64 WHERE mayor = \"adalberto mosaner\" AND inhabitants < 16 OFFSET 170", "context": "CREATE TABLE table_name_64 (election INTEGER, mayor VARCHAR, inhabitants VARCHAR)", "question": "In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants?" }
### QUESTION In 2012, which round in the Open Cup did Real Colorado Foxes make it to the conference semifinal? ### CONTEXT CREATE TABLE table_name_61 (open_cup VARCHAR, playoffs VARCHAR, year VARCHAR) ### ANSWER SELECT open_cup FROM table_name_61 WHERE playoffs = "conference semifinal" AND year = 2012
{ "answer": "SELECT open_cup FROM table_name_61 WHERE playoffs = \"conference semifinal\" AND year = 2012", "context": "CREATE TABLE table_name_61 (open_cup VARCHAR, playoffs VARCHAR, year VARCHAR)", "question": "In 2012, which round in the Open Cup did Real Colorado Foxes make it to the conference semifinal?" }
### QUESTION What is the short stem for garbitzen? ### CONTEXT CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR) ### ANSWER SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = "garbitzen"
{ "answer": "SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = \"garbitzen\"", "context": "CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR)", "question": "What is the short stem for garbitzen?" }
### QUESTION What game has 28 points, and tampa bay lightning as the opponent? ### CONTEXT CREATE TABLE table_name_50 (game VARCHAR, points VARCHAR, opponent VARCHAR) ### ANSWER SELECT game FROM table_name_50 WHERE points = 28 AND opponent = "tampa bay lightning"
{ "answer": "SELECT game FROM table_name_50 WHERE points = 28 AND opponent = \"tampa bay lightning\"", "context": "CREATE TABLE table_name_50 (game VARCHAR, points VARCHAR, opponent VARCHAR)", "question": "What game has 28 points, and tampa bay lightning as the opponent?" }
### QUESTION who is the player for the position defence and the college/junior/club team is ottawa 67's (ohl)? ### CONTEXT CREATE TABLE table_2679061_1 (player VARCHAR, position VARCHAR, college_junior_club_team VARCHAR) ### ANSWER SELECT player FROM table_2679061_1 WHERE position = "Defence" AND college_junior_club_team = "Ottawa 67's (OHL)"
{ "answer": "SELECT player FROM table_2679061_1 WHERE position = \"Defence\" AND college_junior_club_team = \"Ottawa 67's (OHL)\"", "context": "CREATE TABLE table_2679061_1 (player VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)", "question": "who is the player for the position defence and the college/junior/club team is ottawa 67's (ohl)?" }
### QUESTION What's the 2008 that has 3.4 in 2009 and more than 2.9 in 2005? ### CONTEXT CREATE TABLE table_name_35 (Id VARCHAR) ### ANSWER SELECT MAX(2008) FROM table_name_35 WHERE 2009 = 3.4 AND 2005 > 2.9
{ "answer": "SELECT MAX(2008) FROM table_name_35 WHERE 2009 = 3.4 AND 2005 > 2.9", "context": "CREATE TABLE table_name_35 (Id VARCHAR)", "question": "What's the 2008 that has 3.4 in 2009 and more than 2.9 in 2005?" }
### QUESTION Find the first and last name of the author(s) who wrote the paper "Nameless, Painless". ### CONTEXT CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR) ### ANSWER SELECT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = "Nameless , Painless"
{ "answer": "SELECT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = \"Nameless , Painless\"", "context": "CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR)", "question": "Find the first and last name of the author(s) who wrote the paper \"Nameless, Painless\"." }
### QUESTION Which home team score occurred at Victoria Park? ### CONTEXT CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR) ### ANSWER SELECT home_team AS score FROM table_name_42 WHERE venue = "victoria park"
{ "answer": "SELECT home_team AS score FROM table_name_42 WHERE venue = \"victoria park\"", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR)", "question": "Which home team score occurred at Victoria Park?" }
### QUESTION Who was the home team on October 28 when the new england patriots were the visitors? ### CONTEXT CREATE TABLE table_name_34 (designated_home VARCHAR, date VARCHAR, designated_visitors VARCHAR) ### ANSWER SELECT designated_home FROM table_name_34 WHERE date = "october 28" AND designated_visitors = "new england patriots"
{ "answer": "SELECT designated_home FROM table_name_34 WHERE date = \"october 28\" AND designated_visitors = \"new england patriots\"", "context": "CREATE TABLE table_name_34 (designated_home VARCHAR, date VARCHAR, designated_visitors VARCHAR)", "question": "Who was the home team on October 28 when the new england patriots were the visitors?" }
### QUESTION Who is the player with the pick# 80? ### CONTEXT CREATE TABLE table_22402438_7 (player VARCHAR, pick__number VARCHAR) ### ANSWER SELECT player FROM table_22402438_7 WHERE pick__number = 80
{ "answer": "SELECT player FROM table_22402438_7 WHERE pick__number = 80", "context": "CREATE TABLE table_22402438_7 (player VARCHAR, pick__number VARCHAR)", "question": "Who is the player with the pick# 80?" }
### QUESTION How many original air dates were there for episode 22? ### CONTEXT CREATE TABLE table_24798489_2 (original_airdate VARCHAR, episode_number VARCHAR) ### ANSWER SELECT COUNT(original_airdate) FROM table_24798489_2 WHERE episode_number = 22
{ "answer": "SELECT COUNT(original_airdate) FROM table_24798489_2 WHERE episode_number = 22", "context": "CREATE TABLE table_24798489_2 (original_airdate VARCHAR, episode_number VARCHAR)", "question": "How many original air dates were there for episode 22?" }
### QUESTION What is the result when the competition was the 2006 fifa world cup qualifier, and a Venue of warner park sporting complex, bassaterre? ### CONTEXT CREATE TABLE table_name_32 (result VARCHAR, competition VARCHAR, venue VARCHAR) ### ANSWER SELECT result FROM table_name_32 WHERE competition = "2006 fifa world cup qualifier" AND venue = "warner park sporting complex, bassaterre"
{ "answer": "SELECT result FROM table_name_32 WHERE competition = \"2006 fifa world cup qualifier\" AND venue = \"warner park sporting complex, bassaterre\"", "context": "CREATE TABLE table_name_32 (result VARCHAR, competition VARCHAR, venue VARCHAR)", "question": "What is the result when the competition was the 2006 fifa world cup qualifier, and a Venue of warner park sporting complex, bassaterre?" }
### QUESTION Which venue was used on 10 september 2010? ### CONTEXT CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR) ### ANSWER SELECT venue FROM table_name_28 WHERE date = "10 september 2010"
{ "answer": "SELECT venue FROM table_name_28 WHERE date = \"10 september 2010\"", "context": "CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR)", "question": "Which venue was used on 10 september 2010?" }
### QUESTION What is Owner, when Finished is less than 15, when Trainer is "Steve Asmussen", and when Horse is "Z Fortune"? ### CONTEXT CREATE TABLE table_name_77 (owner VARCHAR, horse VARCHAR, finished VARCHAR, trainer VARCHAR) ### ANSWER SELECT owner FROM table_name_77 WHERE finished < 15 AND trainer = "steve asmussen" AND horse = "z fortune"
{ "answer": "SELECT owner FROM table_name_77 WHERE finished < 15 AND trainer = \"steve asmussen\" AND horse = \"z fortune\"", "context": "CREATE TABLE table_name_77 (owner VARCHAR, horse VARCHAR, finished VARCHAR, trainer VARCHAR)", "question": "What is Owner, when Finished is less than 15, when Trainer is \"Steve Asmussen\", and when Horse is \"Z Fortune\"?" }
### QUESTION What are the id and name of the photos for mountains? ### CONTEXT CREATE TABLE photos (mountain_id VARCHAR); CREATE TABLE mountain (id VARCHAR, name VARCHAR, height INTEGER) ### ANSWER SELECT T1.id, T1.name FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id WHERE T1.height > 4000
{ "answer": "SELECT T1.id, T1.name FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id WHERE T1.height > 4000", "context": "CREATE TABLE photos (mountain_id VARCHAR); CREATE TABLE mountain (id VARCHAR, name VARCHAR, height INTEGER)", "question": "What are the id and name of the photos for mountains?" }
### QUESTION Show me the departure date and arrival date for all flights from Los Angeles to Honolulu. ### CONTEXT CREATE TABLE Flight (departure_date VARCHAR, arrival_date VARCHAR, origin VARCHAR, destination VARCHAR) ### ANSWER SELECT departure_date, arrival_date FROM Flight WHERE origin = "Los Angeles" AND destination = "Honolulu"
{ "answer": "SELECT departure_date, arrival_date FROM Flight WHERE origin = \"Los Angeles\" AND destination = \"Honolulu\"", "context": "CREATE TABLE Flight (departure_date VARCHAR, arrival_date VARCHAR, origin VARCHAR, destination VARCHAR)", "question": "Show me the departure date and arrival date for all flights from Los Angeles to Honolulu." }
### QUESTION What is the highest earnings for Tom watson who had a ranking larger than 2? ### CONTEXT CREATE TABLE table_name_26 (earnings___ INTEGER, player VARCHAR, rank VARCHAR) ### ANSWER SELECT MAX(earnings___) AS $__ FROM table_name_26 WHERE player = "tom watson" AND rank > 2
{ "answer": "SELECT MAX(earnings___) AS $__ FROM table_name_26 WHERE player = \"tom watson\" AND rank > 2", "context": "CREATE TABLE table_name_26 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)", "question": "What is the highest earnings for Tom watson who had a ranking larger than 2?" }
### QUESTION Name the least cuts for top-5 more than 2 with top 25 less than 6 and top 10 less than 11 ### CONTEXT CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR, top_5 VARCHAR) ### ANSWER SELECT MIN(cuts_made) FROM table_name_90 WHERE top_10 < 11 AND top_5 > 2 AND top_25 < 6
{ "answer": "SELECT MIN(cuts_made) FROM table_name_90 WHERE top_10 < 11 AND top_5 > 2 AND top_25 < 6", "context": "CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR, top_5 VARCHAR)", "question": "Name the least cuts for top-5 more than 2 with top 25 less than 6 and top 10 less than 11" }
### QUESTION Which Games won has Bonus points larger than 1, a Points difference smaller than 50, Points against of 106, and Points for smaller than 152? ### CONTEXT CREATE TABLE table_name_58 (games_won VARCHAR, points_for VARCHAR, points_against VARCHAR, bonus_points VARCHAR, points_difference VARCHAR) ### ANSWER SELECT COUNT(games_won) FROM table_name_58 WHERE bonus_points > 1 AND points_difference < 50 AND points_against = 106 AND points_for < 152
{ "answer": "SELECT COUNT(games_won) FROM table_name_58 WHERE bonus_points > 1 AND points_difference < 50 AND points_against = 106 AND points_for < 152", "context": "CREATE TABLE table_name_58 (games_won VARCHAR, points_for VARCHAR, points_against VARCHAR, bonus_points VARCHAR, points_difference VARCHAR)", "question": "Which Games won has Bonus points larger than 1, a Points difference smaller than 50, Points against of 106, and Points for smaller than 152?" }
### QUESTION Name the Provider that has a pay in 2006–, and a Transmission of iptv and digital terrestrial? ### CONTEXT CREATE TABLE table_name_90 (provider VARCHAR, transmission VARCHAR, free_or_pay VARCHAR, years VARCHAR) ### ANSWER SELECT provider FROM table_name_90 WHERE free_or_pay = "pay" AND years = "2006–" AND transmission = "iptv and digital terrestrial"
{ "answer": "SELECT provider FROM table_name_90 WHERE free_or_pay = \"pay\" AND years = \"2006–\" AND transmission = \"iptv and digital terrestrial\"", "context": "CREATE TABLE table_name_90 (provider VARCHAR, transmission VARCHAR, free_or_pay VARCHAR, years VARCHAR)", "question": "Name the Provider that has a pay in 2006–, and a Transmission of iptv and digital terrestrial?" }
### QUESTION What was the number of teams in the competition that wynnum manly seagulls won? ### CONTEXT CREATE TABLE table_25735_1 (teams INTEGER, winner VARCHAR) ### ANSWER SELECT MIN(teams) FROM table_25735_1 WHERE winner = "Wynnum Manly Seagulls"
{ "answer": "SELECT MIN(teams) FROM table_25735_1 WHERE winner = \"Wynnum Manly Seagulls\"", "context": "CREATE TABLE table_25735_1 (teams INTEGER, winner VARCHAR)", "question": "What was the number of teams in the competition that wynnum manly seagulls won?" }
### QUESTION What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected? ### CONTEXT CREATE TABLE table_238124_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR) ### ANSWER SELECT bleeding_time FROM table_238124_1 WHERE partial_thromboplastin_time = "Prolonged" AND prothrombin_time = "Unaffected"
{ "answer": "SELECT bleeding_time FROM table_238124_1 WHERE partial_thromboplastin_time = \"Prolonged\" AND prothrombin_time = \"Unaffected\"", "context": "CREATE TABLE table_238124_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR)", "question": "What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected?" }
### QUESTION What is the lowest Division, when Goals are less than 10, when Team is Dalian Shide, when Apps are less than 17, and when Season is 2007? ### CONTEXT CREATE TABLE table_name_79 (division INTEGER, season VARCHAR, apps VARCHAR, goals VARCHAR, team VARCHAR) ### ANSWER SELECT MIN(division) FROM table_name_79 WHERE goals < 10 AND team = "dalian shide" AND apps < 17 AND season = "2007"
{ "answer": "SELECT MIN(division) FROM table_name_79 WHERE goals < 10 AND team = \"dalian shide\" AND apps < 17 AND season = \"2007\"", "context": "CREATE TABLE table_name_79 (division INTEGER, season VARCHAR, apps VARCHAR, goals VARCHAR, team VARCHAR)", "question": "What is the lowest Division, when Goals are less than 10, when Team is Dalian Shide, when Apps are less than 17, and when Season is 2007?" }
### QUESTION Which Car # has a Make of toyota, and a Pos of 7? ### CONTEXT CREATE TABLE table_name_98 (car__number INTEGER, make VARCHAR, pos VARCHAR) ### ANSWER SELECT MAX(car__number) FROM table_name_98 WHERE make = "toyota" AND pos = 7
{ "answer": "SELECT MAX(car__number) FROM table_name_98 WHERE make = \"toyota\" AND pos = 7", "context": "CREATE TABLE table_name_98 (car__number INTEGER, make VARCHAR, pos VARCHAR)", "question": "Which Car # has a Make of toyota, and a Pos of 7?" }
### QUESTION Name the date for adelaide for westpac stadium ### CONTEXT CREATE TABLE table_16388439_3 (date VARCHAR, home_team VARCHAR, ground VARCHAR) ### ANSWER SELECT date FROM table_16388439_3 WHERE home_team = "Adelaide" AND ground = "Westpac Stadium"
{ "answer": "SELECT date FROM table_16388439_3 WHERE home_team = \"Adelaide\" AND ground = \"Westpac Stadium\"", "context": "CREATE TABLE table_16388439_3 (date VARCHAR, home_team VARCHAR, ground VARCHAR)", "question": "Name the date for adelaide for westpac stadium" }