text
stringlengths
146
1.06k
source
dict
### QUESTION How man fans showed up to watch the game versus the raleigh-durham skyhawks? ### CONTEXT CREATE TABLE table_24481478_1 (attendance INTEGER, opponent VARCHAR) ### ANSWER SELECT MAX(attendance) FROM table_24481478_1 WHERE opponent = "Raleigh-Durham Skyhawks"
{ "answer": "SELECT MAX(attendance) FROM table_24481478_1 WHERE opponent = \"Raleigh-Durham Skyhawks\"", "context": "CREATE TABLE table_24481478_1 (attendance INTEGER, opponent VARCHAR)", "question": "How man fans showed up to watch the game versus the raleigh-durham skyhawks?" }
### QUESTION Which average time has eithan urbach as a name with a lane bigger than 2? ### CONTEXT CREATE TABLE table_name_99 (time INTEGER, name VARCHAR, lane VARCHAR) ### ANSWER SELECT AVG(time) FROM table_name_99 WHERE name = "eithan urbach" AND lane > 2
{ "answer": "SELECT AVG(time) FROM table_name_99 WHERE name = \"eithan urbach\" AND lane > 2", "context": "CREATE TABLE table_name_99 (time INTEGER, name VARCHAR, lane VARCHAR)", "question": "Which average time has eithan urbach as a name with a lane bigger than 2?" }
### QUESTION What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695? ### CONTEXT CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR) ### ANSWER SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695
{ "answer": "SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695", "context": "CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR)", "question": "What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695?" }
### QUESTION Find the names of patients who are not using the medication of Procrastin-X. ### CONTEXT CREATE TABLE Prescribes (Patient VARCHAR, Medication VARCHAR); CREATE TABLE Medication (Code VARCHAR, name VARCHAR); CREATE TABLE patient (name VARCHAR, SSN VARCHAR); CREATE TABLE patient (name VARCHAR) ### ANSWER SELECT name FROM patient EXCEPT SELECT T1.name FROM patient AS T1 JOIN Prescribes AS T2 ON T2.Patient = T1.SSN JOIN Medication AS T3 ON T2.Medication = T3.Code WHERE T3.name = 'Procrastin-X'
{ "answer": "SELECT name FROM patient EXCEPT SELECT T1.name FROM patient AS T1 JOIN Prescribes AS T2 ON T2.Patient = T1.SSN JOIN Medication AS T3 ON T2.Medication = T3.Code WHERE T3.name = 'Procrastin-X'", "context": "CREATE TABLE Prescribes (Patient VARCHAR, Medication VARCHAR); CREATE TABLE Medication (Code VARCHAR, name VARCHAR); CREATE TABLE patient (name VARCHAR, SSN VARCHAR); CREATE TABLE patient (name VARCHAR)", "question": "Find the names of patients who are not using the medication of Procrastin-X." }
### QUESTION Jud Larson who which race after 1956? ### CONTEXT CREATE TABLE table_name_70 (race_name VARCHAR, year VARCHAR, winner VARCHAR) ### ANSWER SELECT race_name FROM table_name_70 WHERE year > 1956 AND winner = "jud larson"
{ "answer": "SELECT race_name FROM table_name_70 WHERE year > 1956 AND winner = \"jud larson\"", "context": "CREATE TABLE table_name_70 (race_name VARCHAR, year VARCHAR, winner VARCHAR)", "question": "Jud Larson who which race after 1956?" }
### QUESTION hat is the Result F– A when they played against Leeds United? ### CONTEXT CREATE TABLE table_name_98 (result_f___a VARCHAR, opponents VARCHAR) ### ANSWER SELECT result_f___a FROM table_name_98 WHERE opponents = "leeds united"
{ "answer": "SELECT result_f___a FROM table_name_98 WHERE opponents = \"leeds united\"", "context": "CREATE TABLE table_name_98 (result_f___a VARCHAR, opponents VARCHAR)", "question": "hat is the Result F– A when they played against Leeds United?" }
### QUESTION How many viewers in millions did the Alison McDonald episode get? ### CONTEXT CREATE TABLE table_26961951_4 (us_viewers__million_ VARCHAR, written_by VARCHAR) ### ANSWER SELECT us_viewers__million_ FROM table_26961951_4 WHERE written_by = "Alison McDonald"
{ "answer": "SELECT us_viewers__million_ FROM table_26961951_4 WHERE written_by = \"Alison McDonald\"", "context": "CREATE TABLE table_26961951_4 (us_viewers__million_ VARCHAR, written_by VARCHAR)", "question": "How many viewers in millions did the Alison McDonald episode get?" }
### QUESTION What is Event, when Winning Driver is "Laurent Aiello Laurent Aiello", when Round is greater than 1, and when Circuit is "Wunstorf"? ### CONTEXT CREATE TABLE table_name_29 (event VARCHAR, circuit VARCHAR, winning_driver VARCHAR, round VARCHAR) ### ANSWER SELECT event FROM table_name_29 WHERE winning_driver = "laurent aiello laurent aiello" AND round > 1 AND circuit = "wunstorf"
{ "answer": "SELECT event FROM table_name_29 WHERE winning_driver = \"laurent aiello laurent aiello\" AND round > 1 AND circuit = \"wunstorf\"", "context": "CREATE TABLE table_name_29 (event VARCHAR, circuit VARCHAR, winning_driver VARCHAR, round VARCHAR)", "question": "What is Event, when Winning Driver is \"Laurent Aiello Laurent Aiello\", when Round is greater than 1, and when Circuit is \"Wunstorf\"?" }
### QUESTION What is the greatest CCBs with a Payload to GTO of –, and an Upper stage of sec? ### CONTEXT CREATE TABLE table_name_13 (ccbs INTEGER, payload_to_gto VARCHAR, upper_stage VARCHAR) ### ANSWER SELECT MAX(ccbs) FROM table_name_13 WHERE payload_to_gto = "–" AND upper_stage = "sec"
{ "answer": "SELECT MAX(ccbs) FROM table_name_13 WHERE payload_to_gto = \"–\" AND upper_stage = \"sec\"", "context": "CREATE TABLE table_name_13 (ccbs INTEGER, payload_to_gto VARCHAR, upper_stage VARCHAR)", "question": "What is the greatest CCBs with a Payload to GTO of –, and an Upper stage of sec?" }
### QUESTION Who was the runner-up when the winning score was –28 (66-67-68-64-67=332)? ### CONTEXT CREATE TABLE table_name_81 (runner_s__up VARCHAR, winning_score VARCHAR) ### ANSWER SELECT runner_s__up FROM table_name_81 WHERE winning_score = –28(66 - 67 - 68 - 64 - 67 = 332)
{ "answer": "SELECT runner_s__up FROM table_name_81 WHERE winning_score = –28(66 - 67 - 68 - 64 - 67 = 332)", "context": "CREATE TABLE table_name_81 (runner_s__up VARCHAR, winning_score VARCHAR)", "question": "Who was the runner-up when the winning score was –28 (66-67-68-64-67=332)?" }
### QUESTION What location has more than 2 games with 2:56? ### CONTEXT CREATE TABLE table_name_67 (location VARCHAR, game VARCHAR, time VARCHAR) ### ANSWER SELECT location FROM table_name_67 WHERE game > 2 AND time = "2:56"
{ "answer": "SELECT location FROM table_name_67 WHERE game > 2 AND time = \"2:56\"", "context": "CREATE TABLE table_name_67 (location VARCHAR, game VARCHAR, time VARCHAR)", "question": "What location has more than 2 games with 2:56?" }
### QUESTION What is the total number of To Par, when Player is "Julius Boros", and when Total is greater than 295? ### CONTEXT CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR, total VARCHAR) ### ANSWER SELECT COUNT(to_par) FROM table_name_28 WHERE player = "julius boros" AND total > 295
{ "answer": "SELECT COUNT(to_par) FROM table_name_28 WHERE player = \"julius boros\" AND total > 295", "context": "CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR, total VARCHAR)", "question": "What is the total number of To Par, when Player is \"Julius Boros\", and when Total is greater than 295?" }
### QUESTION What is the sum of the area values for districts having density over 462 and websites of http://krishna.nic.in/? ### CONTEXT CREATE TABLE table_name_19 (area__km²_ INTEGER, density___km²_ VARCHAR, official_website VARCHAR) ### ANSWER SELECT SUM(area__km²_) FROM table_name_19 WHERE density___km²_ > 462 AND official_website = "http://krishna.nic.in/"
{ "answer": "SELECT SUM(area__km²_) FROM table_name_19 WHERE density___km²_ > 462 AND official_website = \"http://krishna.nic.in/\"", "context": "CREATE TABLE table_name_19 (area__km²_ INTEGER, density___km²_ VARCHAR, official_website VARCHAR)", "question": "What is the sum of the area values for districts having density over 462 and websites of http://krishna.nic.in/?" }
### QUESTION What's percentage voted for Busg in the county where Kerry got 37.6%? ### CONTEXT CREATE TABLE table_2401326_1 (bush_percentage VARCHAR, kerry_percentage VARCHAR) ### ANSWER SELECT bush_percentage FROM table_2401326_1 WHERE kerry_percentage = "37.6%"
{ "answer": "SELECT bush_percentage FROM table_2401326_1 WHERE kerry_percentage = \"37.6%\"", "context": "CREATE TABLE table_2401326_1 (bush_percentage VARCHAR, kerry_percentage VARCHAR)", "question": "What's percentage voted for Busg in the county where Kerry got 37.6%?" }
### QUESTION How many different amounts of winnings were there for the year when the team had an average finish of 17.4? ### CONTEXT CREATE TABLE table_2182562_2 (winnings VARCHAR, avg_finish VARCHAR) ### ANSWER SELECT COUNT(winnings) FROM table_2182562_2 WHERE avg_finish = "17.4"
{ "answer": "SELECT COUNT(winnings) FROM table_2182562_2 WHERE avg_finish = \"17.4\"", "context": "CREATE TABLE table_2182562_2 (winnings VARCHAR, avg_finish VARCHAR)", "question": "How many different amounts of winnings were there for the year when the team had an average finish of 17.4?" }
### QUESTION What was the time of the race that was on a grid smaller than 9 with jeremy mcwilliams as the rider doing 21 laps? ### CONTEXT CREATE TABLE table_name_80 (time_retired VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR) ### ANSWER SELECT time_retired FROM table_name_80 WHERE grid < 9 AND laps = 21 AND rider = "jeremy mcwilliams"
{ "answer": "SELECT time_retired FROM table_name_80 WHERE grid < 9 AND laps = 21 AND rider = \"jeremy mcwilliams\"", "context": "CREATE TABLE table_name_80 (time_retired VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)", "question": "What was the time of the race that was on a grid smaller than 9 with jeremy mcwilliams as the rider doing 21 laps?" }
### QUESTION What is the date of the inauguration with a Length of retirement of 00,624 days? ### CONTEXT CREATE TABLE table_name_78 (date_of_inauguration VARCHAR, length_of_retirement VARCHAR) ### ANSWER SELECT date_of_inauguration FROM table_name_78 WHERE length_of_retirement = "00,624 days"
{ "answer": "SELECT date_of_inauguration FROM table_name_78 WHERE length_of_retirement = \"00,624 days\"", "context": "CREATE TABLE table_name_78 (date_of_inauguration VARCHAR, length_of_retirement VARCHAR)", "question": "What is the date of the inauguration with a Length of retirement of 00,624 days?" }
### QUESTION What is Score In The Final, when Championship is "Athens , Greece", and when Outcome is "Winner"? ### CONTEXT CREATE TABLE table_name_96 (score_in_the_final VARCHAR, championship VARCHAR, outcome VARCHAR) ### ANSWER SELECT score_in_the_final FROM table_name_96 WHERE championship = "athens , greece" AND outcome = "winner"
{ "answer": "SELECT score_in_the_final FROM table_name_96 WHERE championship = \"athens , greece\" AND outcome = \"winner\"", "context": "CREATE TABLE table_name_96 (score_in_the_final VARCHAR, championship VARCHAR, outcome VARCHAR)", "question": "What is Score In The Final, when Championship is \"Athens , Greece\", and when Outcome is \"Winner\"?" }
### QUESTION what is the 1st round when team 1 is stade lavallois (d2)? ### CONTEXT CREATE TABLE table_name_56 (team_1 VARCHAR) ### ANSWER SELECT 1 AS st_round FROM table_name_56 WHERE team_1 = "stade lavallois (d2)"
{ "answer": "SELECT 1 AS st_round FROM table_name_56 WHERE team_1 = \"stade lavallois (d2)\"", "context": "CREATE TABLE table_name_56 (team_1 VARCHAR)", "question": "what is the 1st round when team 1 is stade lavallois (d2)?" }
### QUESTION Which week was the first game played that had a time of 2:06 and less than 27,374 attendees? ### CONTEXT CREATE TABLE table_name_47 (game INTEGER, time VARCHAR, attendance VARCHAR) ### ANSWER SELECT MIN(game) FROM table_name_47 WHERE time = "2:06" AND attendance < 27 OFFSET 374
{ "answer": "SELECT MIN(game) FROM table_name_47 WHERE time = \"2:06\" AND attendance < 27 OFFSET 374", "context": "CREATE TABLE table_name_47 (game INTEGER, time VARCHAR, attendance VARCHAR)", "question": "Which week was the first game played that had a time of 2:06 and less than 27,374 attendees?" }
### QUESTION What is Left Office, when Inaugurate is "15 March 1930"? ### CONTEXT CREATE TABLE table_name_1 (left_office VARCHAR, inaugurated VARCHAR) ### ANSWER SELECT left_office FROM table_name_1 WHERE inaugurated = "15 march 1930"
{ "answer": "SELECT left_office FROM table_name_1 WHERE inaugurated = \"15 march 1930\"", "context": "CREATE TABLE table_name_1 (left_office VARCHAR, inaugurated VARCHAR)", "question": "What is Left Office, when Inaugurate is \"15 March 1930\"?" }
### QUESTION Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127? ### CONTEXT CREATE TABLE table_name_43 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR) ### ANSWER SELECT AVG(round) FROM table_name_43 WHERE pick__number > 20 AND college = "virginia" AND overall > 127
{ "answer": "SELECT AVG(round) FROM table_name_43 WHERE pick__number > 20 AND college = \"virginia\" AND overall > 127", "context": "CREATE TABLE table_name_43 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR)", "question": "Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127?" }
### QUESTION What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8? ### CONTEXT CREATE TABLE table_name_37 (population INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR, city VARCHAR) ### ANSWER SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = "alessandria" AND density__inhabitants_km_2__ < 461.8
{ "answer": "SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = \"alessandria\" AND density__inhabitants_km_2__ < 461.8", "context": "CREATE TABLE table_name_37 (population INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR, city VARCHAR)", "question": "What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?" }
### QUESTION Which Country has a Player of jodie mudd? ### CONTEXT CREATE TABLE table_name_62 (country VARCHAR, player VARCHAR) ### ANSWER SELECT country FROM table_name_62 WHERE player = "jodie mudd"
{ "answer": "SELECT country FROM table_name_62 WHERE player = \"jodie mudd\"", "context": "CREATE TABLE table_name_62 (country VARCHAR, player VARCHAR)", "question": "Which Country has a Player of jodie mudd?" }
### QUESTION Where is the Eastern Creek Raceway located? ### CONTEXT CREATE TABLE table_name_19 (location___state VARCHAR, circuit VARCHAR) ### ANSWER SELECT location___state FROM table_name_19 WHERE circuit = "eastern creek raceway"
{ "answer": "SELECT location___state FROM table_name_19 WHERE circuit = \"eastern creek raceway\"", "context": "CREATE TABLE table_name_19 (location___state VARCHAR, circuit VARCHAR)", "question": "Where is the Eastern Creek Raceway located?" }
### QUESTION Who placed t7 with a score of 70-71=141? ### CONTEXT CREATE TABLE table_name_16 (player VARCHAR, place VARCHAR, score VARCHAR) ### ANSWER SELECT player FROM table_name_16 WHERE place = "t7" AND score = 70 - 71 = 141
{ "answer": "SELECT player FROM table_name_16 WHERE place = \"t7\" AND score = 70 - 71 = 141", "context": "CREATE TABLE table_name_16 (player VARCHAR, place VARCHAR, score VARCHAR)", "question": "Who placed t7 with a score of 70-71=141?" }
### QUESTION What is the average round when there is a defensive back and an overall smaller than 199? ### CONTEXT CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR) ### ANSWER SELECT AVG(round) FROM table_name_49 WHERE position = "defensive back" AND overall < 199
{ "answer": "SELECT AVG(round) FROM table_name_49 WHERE position = \"defensive back\" AND overall < 199", "context": "CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR)", "question": "What is the average round when there is a defensive back and an overall smaller than 199?" }
### QUESTION What is the date of the game at the Pro Player Stadium that had a score of 4-1? ### CONTEXT CREATE TABLE table_name_43 (date VARCHAR, venue VARCHAR, score VARCHAR) ### ANSWER SELECT date FROM table_name_43 WHERE venue = "pro player stadium" AND score = "4-1"
{ "answer": "SELECT date FROM table_name_43 WHERE venue = \"pro player stadium\" AND score = \"4-1\"", "context": "CREATE TABLE table_name_43 (date VARCHAR, venue VARCHAR, score VARCHAR)", "question": "What is the date of the game at the Pro Player Stadium that had a score of 4-1?" }
### QUESTION What's the nationality of the player coming from Edmonton Oil Kings (WCHL)? ### CONTEXT CREATE TABLE table_1965650_4 (nationality VARCHAR, college_junior_club_team VARCHAR) ### ANSWER SELECT nationality FROM table_1965650_4 WHERE college_junior_club_team = "Edmonton Oil Kings (WCHL)"
{ "answer": "SELECT nationality FROM table_1965650_4 WHERE college_junior_club_team = \"Edmonton Oil Kings (WCHL)\"", "context": "CREATE TABLE table_1965650_4 (nationality VARCHAR, college_junior_club_team VARCHAR)", "question": "What's the nationality of the player coming from Edmonton Oil Kings (WCHL)?" }
### QUESTION What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered? ### CONTEXT CREATE TABLE table_11552751_2 (ship_types_delivered VARCHAR) ### ANSWER SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE ship_types_delivered = "S2 (LST) type, S2 (frigate) type, C1-M type"
{ "answer": "SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE ship_types_delivered = \"S2 (LST) type, S2 (frigate) type, C1-M type\"", "context": "CREATE TABLE table_11552751_2 (ship_types_delivered VARCHAR)", "question": "What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?" }
### QUESTION What year was the player born who is 2.02m tall? ### CONTEXT CREATE TABLE table_12962773_14 (year_born INTEGER, height VARCHAR) ### ANSWER SELECT MAX(year_born) FROM table_12962773_14 WHERE height = "2.02"
{ "answer": "SELECT MAX(year_born) FROM table_12962773_14 WHERE height = \"2.02\"", "context": "CREATE TABLE table_12962773_14 (year_born INTEGER, height VARCHAR)", "question": "What year was the player born who is 2.02m tall?" }
### QUESTION Which driver won the Phillip Island Grand Prix Circuit? ### CONTEXT CREATE TABLE table_name_61 (winner VARCHAR, circuit VARCHAR) ### ANSWER SELECT winner FROM table_name_61 WHERE circuit = "phillip island grand prix circuit"
{ "answer": "SELECT winner FROM table_name_61 WHERE circuit = \"phillip island grand prix circuit\"", "context": "CREATE TABLE table_name_61 (winner VARCHAR, circuit VARCHAR)", "question": "Which driver won the Phillip Island Grand Prix Circuit?" }
### QUESTION What is the smallest lane for rank 6? ### CONTEXT CREATE TABLE table_name_64 (lane INTEGER, rank VARCHAR) ### ANSWER SELECT MIN(lane) FROM table_name_64 WHERE rank = 6
{ "answer": "SELECT MIN(lane) FROM table_name_64 WHERE rank = 6", "context": "CREATE TABLE table_name_64 (lane INTEGER, rank VARCHAR)", "question": "What is the smallest lane for rank 6?" }
### QUESTION Name the height for asko esna ### CONTEXT CREATE TABLE table_25058562_2 (height VARCHAR, player VARCHAR) ### ANSWER SELECT height FROM table_25058562_2 WHERE player = "Asko Esna"
{ "answer": "SELECT height FROM table_25058562_2 WHERE player = \"Asko Esna\"", "context": "CREATE TABLE table_25058562_2 (height VARCHAR, player VARCHAR)", "question": "Name the height for asko esna" }
### QUESTION What is the membership card held by both members living in Hartford and ones living in Waterbury address? ### CONTEXT CREATE TABLE member (membership_card VARCHAR, address VARCHAR) ### ANSWER SELECT membership_card FROM member WHERE address = 'Hartford' INTERSECT SELECT membership_card FROM member WHERE address = 'Waterbury'
{ "answer": "SELECT membership_card FROM member WHERE address = 'Hartford' INTERSECT SELECT membership_card FROM member WHERE address = 'Waterbury'", "context": "CREATE TABLE member (membership_card VARCHAR, address VARCHAR)", "question": "What is the membership card held by both members living in Hartford and ones living in Waterbury address?" }
### QUESTION Who was the colour commentator when the play-by-play announcer was Bob Cole? ### CONTEXT CREATE TABLE table_name_58 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR) ### ANSWER SELECT colour_commentator_s_ FROM table_name_58 WHERE play_by_play = "bob cole"
{ "answer": "SELECT colour_commentator_s_ FROM table_name_58 WHERE play_by_play = \"bob cole\"", "context": "CREATE TABLE table_name_58 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR)", "question": "Who was the colour commentator when the play-by-play announcer was Bob Cole?" }
### QUESTION Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260 ### CONTEXT CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR) ### ANSWER SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260
{ "answer": "SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260", "context": "CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR)", "question": "Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260" }
### QUESTION Find the titles of all movies not reviewed by Chris Jackson. ### CONTEXT CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR); CREATE TABLE Movie (title VARCHAR); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR) ### ANSWER SELECT DISTINCT title FROM Movie EXCEPT SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID WHERE T3.name = 'Chris Jackson'
{ "answer": "SELECT DISTINCT title FROM Movie EXCEPT SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID WHERE T3.name = 'Chris Jackson'", "context": "CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR); CREATE TABLE Movie (title VARCHAR); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR)", "question": "Find the titles of all movies not reviewed by Chris Jackson." }
### QUESTION Which segment c's segment b is refrigerators? ### CONTEXT CREATE TABLE table_name_58 (segment_c VARCHAR, segment_b VARCHAR) ### ANSWER SELECT segment_c FROM table_name_58 WHERE segment_b = "refrigerators"
{ "answer": "SELECT segment_c FROM table_name_58 WHERE segment_b = \"refrigerators\"", "context": "CREATE TABLE table_name_58 (segment_c VARCHAR, segment_b VARCHAR)", "question": "Which segment c's segment b is refrigerators?" }
### QUESTION What is Score, when Game is less than 61, when February is less than 11, and when Opponent is "@ Buffalo Sabres"? ### CONTEXT CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR) ### ANSWER SELECT score FROM table_name_25 WHERE game < 61 AND february < 11 AND opponent = "@ buffalo sabres"
{ "answer": "SELECT score FROM table_name_25 WHERE game < 61 AND february < 11 AND opponent = \"@ buffalo sabres\"", "context": "CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR)", "question": "What is Score, when Game is less than 61, when February is less than 11, and when Opponent is \"@ Buffalo Sabres\"?" }
### QUESTION What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson? ### CONTEXT CREATE TABLE table_name_20 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR) ### ANSWER SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = "dave" AND spokesperson = "marie myriam"
{ "answer": "SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = \"dave\" AND spokesperson = \"marie myriam\"", "context": "CREATE TABLE table_name_20 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR)", "question": "What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson?" }
### QUESTION Tell me the host team for giants stadium and visiting of cincinnati bengals ### CONTEXT CREATE TABLE table_name_57 (host_team VARCHAR, stadium VARCHAR, visiting_team VARCHAR) ### ANSWER SELECT host_team FROM table_name_57 WHERE stadium = "giants stadium" AND visiting_team = "cincinnati bengals"
{ "answer": "SELECT host_team FROM table_name_57 WHERE stadium = \"giants stadium\" AND visiting_team = \"cincinnati bengals\"", "context": "CREATE TABLE table_name_57 (host_team VARCHAR, stadium VARCHAR, visiting_team VARCHAR)", "question": "Tell me the host team for giants stadium and visiting of cincinnati bengals" }
### QUESTION Which Kit Manufacturer supports team Everton? ### CONTEXT CREATE TABLE table_name_90 (kit_manufacturer VARCHAR, team VARCHAR) ### ANSWER SELECT kit_manufacturer FROM table_name_90 WHERE team = "everton"
{ "answer": "SELECT kit_manufacturer FROM table_name_90 WHERE team = \"everton\"", "context": "CREATE TABLE table_name_90 (kit_manufacturer VARCHAR, team VARCHAR)", "question": "Which Kit Manufacturer supports team Everton?" }
### QUESTION Which Rank has a Col (m) of 0, and a Peak of aoraki/mount cook, and a Prominence (m) larger than 3,755? ### CONTEXT CREATE TABLE table_name_32 (rank INTEGER, prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR) ### ANSWER SELECT SUM(rank) FROM table_name_32 WHERE col__m_ = 0 AND peak = "aoraki/mount cook" AND prominence__m_ > 3 OFFSET 755
{ "answer": "SELECT SUM(rank) FROM table_name_32 WHERE col__m_ = 0 AND peak = \"aoraki/mount cook\" AND prominence__m_ > 3 OFFSET 755", "context": "CREATE TABLE table_name_32 (rank INTEGER, prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR)", "question": "Which Rank has a Col (m) of 0, and a Peak of aoraki/mount cook, and a Prominence (m) larger than 3,755?" }
### QUESTION Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009? ### CONTEXT CREATE TABLE table_name_57 (nationality VARCHAR, player VARCHAR, years_in_orlando VARCHAR) ### ANSWER SELECT nationality FROM table_name_57 WHERE player = "keith bogans" AND years_in_orlando = "2006–2009"
{ "answer": "SELECT nationality FROM table_name_57 WHERE player = \"keith bogans\" AND years_in_orlando = \"2006–2009\"", "context": "CREATE TABLE table_name_57 (nationality VARCHAR, player VARCHAR, years_in_orlando VARCHAR)", "question": "Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009?" }
### QUESTION What is the overall of the running back player? ### CONTEXT CREATE TABLE table_name_91 (overall VARCHAR, position VARCHAR) ### ANSWER SELECT overall FROM table_name_91 WHERE position = "running back"
{ "answer": "SELECT overall FROM table_name_91 WHERE position = \"running back\"", "context": "CREATE TABLE table_name_91 (overall VARCHAR, position VARCHAR)", "question": "What is the overall of the running back player?" }
### QUESTION Name the least game for l 109–116 (ot) ### CONTEXT CREATE TABLE table_27700375_11 (game INTEGER, score VARCHAR) ### ANSWER SELECT MIN(game) FROM table_27700375_11 WHERE score = "L 109–116 (OT)"
{ "answer": "SELECT MIN(game) FROM table_27700375_11 WHERE score = \"L 109–116 (OT)\"", "context": "CREATE TABLE table_27700375_11 (game INTEGER, score VARCHAR)", "question": "Name the least game for l 109–116 (ot)" }
### QUESTION How many settlements are named ђурђин (croatian: đurđin)? ### CONTEXT CREATE TABLE table_2562572_26 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) ### ANSWER SELECT COUNT(settlement) FROM table_2562572_26 WHERE cyrillic_name_other_names = "Ђурђин (Croatian: Đurđin)"
{ "answer": "SELECT COUNT(settlement) FROM table_2562572_26 WHERE cyrillic_name_other_names = \"Ђурђин (Croatian: Đurđin)\"", "context": "CREATE TABLE table_2562572_26 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)", "question": "How many settlements are named ђурђин (croatian: đurđin)?" }
### QUESTION What is the name of the player acquired via import and larger than 22? ### CONTEXT CREATE TABLE table_name_55 (name VARCHAR, acquisition_via VARCHAR, number VARCHAR) ### ANSWER SELECT name FROM table_name_55 WHERE acquisition_via = "import" AND number > 22
{ "answer": "SELECT name FROM table_name_55 WHERE acquisition_via = \"import\" AND number > 22", "context": "CREATE TABLE table_name_55 (name VARCHAR, acquisition_via VARCHAR, number VARCHAR)", "question": "What is the name of the player acquired via import and larger than 22?" }
### QUESTION What is the year when not nominated was the result, and In the Navel of the Sea was the film title used in nomination? ### CONTEXT CREATE TABLE table_name_24 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR) ### ANSWER SELECT year__ceremony_ FROM table_name_24 WHERE result = "not nominated" AND film_title_used_in_nomination = "in the navel of the sea"
{ "answer": "SELECT year__ceremony_ FROM table_name_24 WHERE result = \"not nominated\" AND film_title_used_in_nomination = \"in the navel of the sea\"", "context": "CREATE TABLE table_name_24 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)", "question": "What is the year when not nominated was the result, and In the Navel of the Sea was the film title used in nomination?" }
### QUESTION What was the production number of the episode filmed in aug/sept 1968? ### CONTEXT CREATE TABLE table_1971734_1 (prod__number VARCHAR, filmed VARCHAR) ### ANSWER SELECT prod__number FROM table_1971734_1 WHERE filmed = "Aug/Sept 1968"
{ "answer": "SELECT prod__number FROM table_1971734_1 WHERE filmed = \"Aug/Sept 1968\"", "context": "CREATE TABLE table_1971734_1 (prod__number VARCHAR, filmed VARCHAR)", "question": "What was the production number of the episode filmed in aug/sept 1968?" }
### QUESTION What is the area when the poor law union is skibbereen and the townland is knockmore? ### CONTEXT CREATE TABLE table_30121075_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR) ### ANSWER SELECT area__acres__ FROM table_30121075_1 WHERE poor_law_union = "Skibbereen" AND townland = "Knockmore"
{ "answer": "SELECT area__acres__ FROM table_30121075_1 WHERE poor_law_union = \"Skibbereen\" AND townland = \"Knockmore\"", "context": "CREATE TABLE table_30121075_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR)", "question": "What is the area when the poor law union is skibbereen and the townland is knockmore?" }
### QUESTION Show the average, minimum, and maximum ticket prices for exhibitions for all years before 2009. ### CONTEXT CREATE TABLE exhibition (ticket_price INTEGER, YEAR INTEGER) ### ANSWER SELECT AVG(ticket_price), MIN(ticket_price), MAX(ticket_price) FROM exhibition WHERE YEAR < 2009
{ "answer": "SELECT AVG(ticket_price), MIN(ticket_price), MAX(ticket_price) FROM exhibition WHERE YEAR < 2009", "context": "CREATE TABLE exhibition (ticket_price INTEGER, YEAR INTEGER)", "question": "Show the average, minimum, and maximum ticket prices for exhibitions for all years before 2009." }
### QUESTION List the file size and format for all songs that have resolution lower than 800. ### CONTEXT CREATE TABLE song (f_id VARCHAR, resolution INTEGER); CREATE TABLE files (file_size VARCHAR, formats VARCHAR, f_id VARCHAR) ### ANSWER SELECT DISTINCT T1.file_size, T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.resolution < 800
{ "answer": "SELECT DISTINCT T1.file_size, T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.resolution < 800", "context": "CREATE TABLE song (f_id VARCHAR, resolution INTEGER); CREATE TABLE files (file_size VARCHAR, formats VARCHAR, f_id VARCHAR)", "question": "List the file size and format for all songs that have resolution lower than 800." }
### QUESTION Find the average age and experience working length of journalists working on different role type. ### CONTEXT CREATE TABLE news_report (work_type VARCHAR, journalist_id VARCHAR); CREATE TABLE journalist (age INTEGER, journalist_id VARCHAR) ### ANSWER SELECT AVG(t1.age), AVG(Years_working), t2.work_type FROM journalist AS t1 JOIN news_report AS t2 ON t1.journalist_id = t2.journalist_id GROUP BY t2.work_type
{ "answer": "SELECT AVG(t1.age), AVG(Years_working), t2.work_type FROM journalist AS t1 JOIN news_report AS t2 ON t1.journalist_id = t2.journalist_id GROUP BY t2.work_type", "context": "CREATE TABLE news_report (work_type VARCHAR, journalist_id VARCHAR); CREATE TABLE journalist (age INTEGER, journalist_id VARCHAR)", "question": "Find the average age and experience working length of journalists working on different role type." }
### QUESTION Which score has a competition of 1997 dunhill cup malaysia and february 23, 1997 as the date? ### CONTEXT CREATE TABLE table_name_92 (score VARCHAR, competition VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_92 WHERE competition = "1997 dunhill cup malaysia" AND date = "february 23, 1997"
{ "answer": "SELECT score FROM table_name_92 WHERE competition = \"1997 dunhill cup malaysia\" AND date = \"february 23, 1997\"", "context": "CREATE TABLE table_name_92 (score VARCHAR, competition VARCHAR, date VARCHAR)", "question": "Which score has a competition of 1997 dunhill cup malaysia and february 23, 1997 as the date?" }
### QUESTION Name the finish for start of 28 ### CONTEXT CREATE TABLE table_name_76 (finish VARCHAR, start VARCHAR) ### ANSWER SELECT finish FROM table_name_76 WHERE start = "28"
{ "answer": "SELECT finish FROM table_name_76 WHERE start = \"28\"", "context": "CREATE TABLE table_name_76 (finish VARCHAR, start VARCHAR)", "question": "Name the finish for start of 28" }
### QUESTION Name the state class for resigned november 3, 1964 ### CONTEXT CREATE TABLE table_2159506_3 (state__class_ VARCHAR, reason_for_change VARCHAR) ### ANSWER SELECT state__class_ FROM table_2159506_3 WHERE reason_for_change = "Resigned November 3, 1964"
{ "answer": "SELECT state__class_ FROM table_2159506_3 WHERE reason_for_change = \"Resigned November 3, 1964\"", "context": "CREATE TABLE table_2159506_3 (state__class_ VARCHAR, reason_for_change VARCHAR)", "question": "Name the state class for resigned november 3, 1964" }
### QUESTION Name the opponents for record of 2-1 ### CONTEXT CREATE TABLE table_21092444_1 (opponents VARCHAR, record VARCHAR) ### ANSWER SELECT opponents FROM table_21092444_1 WHERE record = "2-1"
{ "answer": "SELECT opponents FROM table_21092444_1 WHERE record = \"2-1\"", "context": "CREATE TABLE table_21092444_1 (opponents VARCHAR, record VARCHAR)", "question": "Name the opponents for record of 2-1" }
### QUESTION What is the total number of Year that has an Album of Remixes? ### CONTEXT CREATE TABLE table_name_52 (year INTEGER, album VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_52 WHERE album = "remixes"
{ "answer": "SELECT SUM(year) FROM table_name_52 WHERE album = \"remixes\"", "context": "CREATE TABLE table_name_52 (year INTEGER, album VARCHAR)", "question": "What is the total number of Year that has an Album of Remixes?" }
### QUESTION Which venue does Fitzroy play as an away team? ### CONTEXT CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR) ### ANSWER SELECT venue FROM table_name_57 WHERE away_team = "fitzroy"
{ "answer": "SELECT venue FROM table_name_57 WHERE away_team = \"fitzroy\"", "context": "CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)", "question": "Which venue does Fitzroy play as an away team?" }
### QUESTION Find the name of the person who has no student friends. ### CONTEXT CREATE TABLE Person (name VARCHAR, job VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE person (name VARCHAR) ### ANSWER SELECT name FROM person EXCEPT SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.job = 'student'
{ "answer": "SELECT name FROM person EXCEPT SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.job = 'student'", "context": "CREATE TABLE Person (name VARCHAR, job VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE person (name VARCHAR)", "question": "Find the name of the person who has no student friends." }
### QUESTION Which country's material was concrete when the span metres were less than 270, span feet is more than 837, and the year opened was 1943? ### CONTEXT CREATE TABLE table_name_36 (country VARCHAR, year_opened VARCHAR, span_feet VARCHAR, material VARCHAR, span_metres VARCHAR) ### ANSWER SELECT country FROM table_name_36 WHERE material = "concrete" AND span_metres < 270 AND span_feet > 837 AND year_opened = "1943"
{ "answer": "SELECT country FROM table_name_36 WHERE material = \"concrete\" AND span_metres < 270 AND span_feet > 837 AND year_opened = \"1943\"", "context": "CREATE TABLE table_name_36 (country VARCHAR, year_opened VARCHAR, span_feet VARCHAR, material VARCHAR, span_metres VARCHAR)", "question": "Which country's material was concrete when the span metres were less than 270, span feet is more than 837, and the year opened was 1943?" }
### QUESTION What is the average total number of passengers of airports that are associated with aircraft "Robinson R-22"? ### CONTEXT CREATE TABLE airport (Total_Passengers INTEGER, Airport_ID VARCHAR); CREATE TABLE aircraft (Aircraft_ID VARCHAR, Aircraft VARCHAR); CREATE TABLE airport_aircraft (Aircraft_ID VARCHAR, Airport_ID VARCHAR) ### ANSWER SELECT AVG(T3.Total_Passengers) FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T1.Aircraft = "Robinson R-22"
{ "answer": "SELECT AVG(T3.Total_Passengers) FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T1.Aircraft = \"Robinson R-22\"", "context": "CREATE TABLE airport (Total_Passengers INTEGER, Airport_ID VARCHAR); CREATE TABLE aircraft (Aircraft_ID VARCHAR, Aircraft VARCHAR); CREATE TABLE airport_aircraft (Aircraft_ID VARCHAR, Airport_ID VARCHAR)", "question": "What is the average total number of passengers of airports that are associated with aircraft \"Robinson R-22\"?" }
### QUESTION How many sound engineers were there for law hakon '3er leek? ### CONTEXT CREATE TABLE table_28005100_1 (sound_engineer VARCHAR, title VARCHAR) ### ANSWER SELECT COUNT(sound_engineer) FROM table_28005100_1 WHERE title = "Law Hakon '3er Leek"
{ "answer": "SELECT COUNT(sound_engineer) FROM table_28005100_1 WHERE title = \"Law Hakon '3er Leek\"", "context": "CREATE TABLE table_28005100_1 (sound_engineer VARCHAR, title VARCHAR)", "question": "How many sound engineers were there for law hakon '3er leek?" }
### QUESTION What school has more than 533 enrolled and is an IHSAA Football Class of aa? ### CONTEXT CREATE TABLE table_name_27 (school VARCHAR, enrollment VARCHAR, ihsaa_football_class VARCHAR) ### ANSWER SELECT school FROM table_name_27 WHERE enrollment > 533 AND ihsaa_football_class = "aa"
{ "answer": "SELECT school FROM table_name_27 WHERE enrollment > 533 AND ihsaa_football_class = \"aa\"", "context": "CREATE TABLE table_name_27 (school VARCHAR, enrollment VARCHAR, ihsaa_football_class VARCHAR)", "question": "What school has more than 533 enrolled and is an IHSAA Football Class of aa?" }
### QUESTION What is the Mens Nickname for the member location of Jacksonville, florida? ### CONTEXT CREATE TABLE table_10577579_2 (mens_nickname VARCHAR, location VARCHAR) ### ANSWER SELECT mens_nickname FROM table_10577579_2 WHERE location = "Jacksonville, Florida"
{ "answer": "SELECT mens_nickname FROM table_10577579_2 WHERE location = \"Jacksonville, Florida\"", "context": "CREATE TABLE table_10577579_2 (mens_nickname VARCHAR, location VARCHAR)", "question": "What is the Mens Nickname for the member location of Jacksonville, florida?" }
### QUESTION How many values of Other A correspond to Tommy Johnson Category:Articles with hCards? ### CONTEXT CREATE TABLE table_14962287_2 (other_a VARCHAR, name VARCHAR) ### ANSWER SELECT COUNT(other_a) FROM table_14962287_2 WHERE name = "Tommy Johnson Category:Articles with hCards"
{ "answer": "SELECT COUNT(other_a) FROM table_14962287_2 WHERE name = \"Tommy Johnson Category:Articles with hCards\"", "context": "CREATE TABLE table_14962287_2 (other_a VARCHAR, name VARCHAR)", "question": "How many values of Other A correspond to Tommy Johnson Category:Articles with hCards?" }
### QUESTION Income poverty f smaller than 13.6, and a Mining b of 1, and a Structural poverty g smaller than 7.8, so what is the total number of agriculture? ### CONTEXT CREATE TABLE table_name_10 (agri_culture_b VARCHAR, structural_poverty_g VARCHAR, income_poverty_f VARCHAR, mining_b VARCHAR) ### ANSWER SELECT COUNT(agri_culture_b) FROM table_name_10 WHERE income_poverty_f < 13.6 AND mining_b = 1 AND structural_poverty_g < 7.8
{ "answer": "SELECT COUNT(agri_culture_b) FROM table_name_10 WHERE income_poverty_f < 13.6 AND mining_b = 1 AND structural_poverty_g < 7.8", "context": "CREATE TABLE table_name_10 (agri_culture_b VARCHAR, structural_poverty_g VARCHAR, income_poverty_f VARCHAR, mining_b VARCHAR)", "question": "Income poverty f smaller than 13.6, and a Mining b of 1, and a Structural poverty g smaller than 7.8, so what is the total number of agriculture?" }
### QUESTION What is the name of the breed with the most dogs? ### CONTEXT CREATE TABLE Dogs (breed_code VARCHAR); CREATE TABLE Breeds (breed_name VARCHAR, breed_code VARCHAR) ### ANSWER SELECT T1.breed_name FROM Breeds AS T1 JOIN Dogs AS T2 ON T1.breed_code = T2.breed_code GROUP BY T1.breed_name ORDER BY COUNT(*) DESC LIMIT 1
{ "answer": "SELECT T1.breed_name FROM Breeds AS T1 JOIN Dogs AS T2 ON T1.breed_code = T2.breed_code GROUP BY T1.breed_name ORDER BY COUNT(*) DESC LIMIT 1", "context": "CREATE TABLE Dogs (breed_code VARCHAR); CREATE TABLE Breeds (breed_name VARCHAR, breed_code VARCHAR)", "question": "What is the name of the breed with the most dogs?" }
### QUESTION Name the city of license with resolution of sd 480i and official website of telemundo.com ### CONTEXT CREATE TABLE table_name_34 (city_of_license VARCHAR, resolution VARCHAR, official_website VARCHAR) ### ANSWER SELECT city_of_license FROM table_name_34 WHERE resolution = "sd 480i" AND official_website = "telemundo.com"
{ "answer": "SELECT city_of_license FROM table_name_34 WHERE resolution = \"sd 480i\" AND official_website = \"telemundo.com\"", "context": "CREATE TABLE table_name_34 (city_of_license VARCHAR, resolution VARCHAR, official_website VARCHAR)", "question": "Name the city of license with resolution of sd 480i and official website of telemundo.com" }
### QUESTION What is the total number of Second, when First is greater than 18, when Season is 1992-93, and when Premier is greater than 16? ### CONTEXT CREATE TABLE table_name_5 (second VARCHAR, premier VARCHAR, first VARCHAR, season VARCHAR) ### ANSWER SELECT COUNT(second) FROM table_name_5 WHERE first > 18 AND season = "1992-93" AND premier > 16
{ "answer": "SELECT COUNT(second) FROM table_name_5 WHERE first > 18 AND season = \"1992-93\" AND premier > 16", "context": "CREATE TABLE table_name_5 (second VARCHAR, premier VARCHAR, first VARCHAR, season VARCHAR)", "question": "What is the total number of Second, when First is greater than 18, when Season is 1992-93, and when Premier is greater than 16?" }
### QUESTION How many problems does the product with the most problems have? List the number of the problems and product name. ### CONTEXT CREATE TABLE problems (product_id VARCHAR); CREATE TABLE product (product_name VARCHAR, product_id VARCHAR) ### ANSWER SELECT COUNT(*), T1.product_name FROM product AS T1 JOIN problems AS T2 ON T1.product_id = T2.product_id GROUP BY T1.product_name ORDER BY COUNT(*) DESC LIMIT 1
{ "answer": "SELECT COUNT(*), T1.product_name FROM product AS T1 JOIN problems AS T2 ON T1.product_id = T2.product_id GROUP BY T1.product_name ORDER BY COUNT(*) DESC LIMIT 1", "context": "CREATE TABLE problems (product_id VARCHAR); CREATE TABLE product (product_name VARCHAR, product_id VARCHAR)", "question": "How many problems does the product with the most problems have? List the number of the problems and product name." }
### QUESTION Name the launch date for duration days 174.14 ### CONTEXT CREATE TABLE table_1906515_1 (launch_date VARCHAR, duration__days_ VARCHAR) ### ANSWER SELECT launch_date FROM table_1906515_1 WHERE duration__days_ = "174.14"
{ "answer": "SELECT launch_date FROM table_1906515_1 WHERE duration__days_ = \"174.14\"", "context": "CREATE TABLE table_1906515_1 (launch_date VARCHAR, duration__days_ VARCHAR)", "question": "Name the launch date for duration days 174.14" }
### QUESTION Tell me the 2nd leg for alemannia aachen ### CONTEXT CREATE TABLE table_name_61 (team__number1 VARCHAR) ### ANSWER SELECT 2 AS nd_leg FROM table_name_61 WHERE team__number1 = "alemannia aachen"
{ "answer": "SELECT 2 AS nd_leg FROM table_name_61 WHERE team__number1 = \"alemannia aachen\"", "context": "CREATE TABLE table_name_61 (team__number1 VARCHAR)", "question": "Tell me the 2nd leg for alemannia aachen" }
### QUESTION What was the average total medals received by Roland Hayes School when there were 0 gold medals? ### CONTEXT CREATE TABLE table_name_99 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR) ### ANSWER SELECT AVG(total_medals) FROM table_name_99 WHERE gold_medals = 0 AND ensemble = "roland hayes school"
{ "answer": "SELECT AVG(total_medals) FROM table_name_99 WHERE gold_medals = 0 AND ensemble = \"roland hayes school\"", "context": "CREATE TABLE table_name_99 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR)", "question": "What was the average total medals received by Roland Hayes School when there were 0 gold medals?" }
### QUESTION The series titled dragon laws i: the undercover has what role? ### CONTEXT CREATE TABLE table_name_73 (role VARCHAR, series_title VARCHAR) ### ANSWER SELECT role FROM table_name_73 WHERE series_title = "dragon laws i: the undercover"
{ "answer": "SELECT role FROM table_name_73 WHERE series_title = \"dragon laws i: the undercover\"", "context": "CREATE TABLE table_name_73 (role VARCHAR, series_title VARCHAR)", "question": "The series titled dragon laws i: the undercover has what role?" }
### QUESTION Which To par has a Player of jack nicklaus, and a Total smaller than 146? ### CONTEXT CREATE TABLE table_name_63 (to_par INTEGER, player VARCHAR, total VARCHAR) ### ANSWER SELECT AVG(to_par) FROM table_name_63 WHERE player = "jack nicklaus" AND total < 146
{ "answer": "SELECT AVG(to_par) FROM table_name_63 WHERE player = \"jack nicklaus\" AND total < 146", "context": "CREATE TABLE table_name_63 (to_par INTEGER, player VARCHAR, total VARCHAR)", "question": "Which To par has a Player of jack nicklaus, and a Total smaller than 146?" }
### QUESTION What was the Outcome against Opponent in the Final Carlos Kirmayr? ### CONTEXT CREATE TABLE table_name_41 (outcome VARCHAR, opponent_in_the_final VARCHAR) ### ANSWER SELECT outcome FROM table_name_41 WHERE opponent_in_the_final = "carlos kirmayr"
{ "answer": "SELECT outcome FROM table_name_41 WHERE opponent_in_the_final = \"carlos kirmayr\"", "context": "CREATE TABLE table_name_41 (outcome VARCHAR, opponent_in_the_final VARCHAR)", "question": "What was the Outcome against Opponent in the Final Carlos Kirmayr?" }
### QUESTION What is the average attendance that has april 12 as the date? ### CONTEXT CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR) ### ANSWER SELECT AVG(attendance) FROM table_name_14 WHERE date = "april 12"
{ "answer": "SELECT AVG(attendance) FROM table_name_14 WHERE date = \"april 12\"", "context": "CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR)", "question": "What is the average attendance that has april 12 as the date?" }
### QUESTION How many directors were there for the film Course Completed? ### CONTEXT CREATE TABLE table_10798928_1 (director VARCHAR, film_title_used_in_nomination VARCHAR) ### ANSWER SELECT COUNT(director) FROM table_10798928_1 WHERE film_title_used_in_nomination = "Course Completed"
{ "answer": "SELECT COUNT(director) FROM table_10798928_1 WHERE film_title_used_in_nomination = \"Course Completed\"", "context": "CREATE TABLE table_10798928_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)", "question": "How many directors were there for the film Course Completed?" }
### QUESTION How many people attended the game where Fitzroy was the away team? ### CONTEXT CREATE TABLE table_name_44 (crowd VARCHAR, away_team VARCHAR) ### ANSWER SELECT COUNT(crowd) FROM table_name_44 WHERE away_team = "fitzroy"
{ "answer": "SELECT COUNT(crowd) FROM table_name_44 WHERE away_team = \"fitzroy\"", "context": "CREATE TABLE table_name_44 (crowd VARCHAR, away_team VARCHAR)", "question": "How many people attended the game where Fitzroy was the away team?" }
### QUESTION What was the highest crowd size at the Western Oval? ### CONTEXT CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR) ### ANSWER SELECT MAX(crowd) FROM table_name_48 WHERE venue = "western oval"
{ "answer": "SELECT MAX(crowd) FROM table_name_48 WHERE venue = \"western oval\"", "context": "CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)", "question": "What was the highest crowd size at the Western Oval?" }
### QUESTION Show the description of transaction type with code "PUR". ### CONTEXT CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR) ### ANSWER SELECT transaction_type_description FROM Ref_Transaction_Types WHERE transaction_type_code = "PUR"
{ "answer": "SELECT transaction_type_description FROM Ref_Transaction_Types WHERE transaction_type_code = \"PUR\"", "context": "CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR)", "question": "Show the description of transaction type with code \"PUR\"." }
### QUESTION What is the Constituency number for Bikhangaon with a Reserved for ( SC / ST /None) of st? ### CONTEXT CREATE TABLE table_name_11 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR) ### ANSWER SELECT constituency_number FROM table_name_11 WHERE reserved_for___sc___st__none_ = "st" AND name = "bikhangaon"
{ "answer": "SELECT constituency_number FROM table_name_11 WHERE reserved_for___sc___st__none_ = \"st\" AND name = \"bikhangaon\"", "context": "CREATE TABLE table_name_11 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)", "question": "What is the Constituency number for Bikhangaon with a Reserved for ( SC / ST /None) of st?" }
### QUESTION Which stage was won by Bernard Hinault and had a Points classification of Francesco Moser? ### CONTEXT CREATE TABLE table_name_51 (stage VARCHAR, winner VARCHAR, points_classification VARCHAR) ### ANSWER SELECT stage FROM table_name_51 WHERE winner = "bernard hinault" AND points_classification = "francesco moser"
{ "answer": "SELECT stage FROM table_name_51 WHERE winner = \"bernard hinault\" AND points_classification = \"francesco moser\"", "context": "CREATE TABLE table_name_51 (stage VARCHAR, winner VARCHAR, points_classification VARCHAR)", "question": "Which stage was won by Bernard Hinault and had a Points classification of Francesco Moser?" }
### QUESTION Which Senator has a Party of republican, a Home Town of houston, and a District of 7? ### CONTEXT CREATE TABLE table_name_82 (senator VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR) ### ANSWER SELECT senator FROM table_name_82 WHERE party = "republican" AND home_town = "houston" AND district = 7
{ "answer": "SELECT senator FROM table_name_82 WHERE party = \"republican\" AND home_town = \"houston\" AND district = 7", "context": "CREATE TABLE table_name_82 (senator VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR)", "question": "Which Senator has a Party of republican, a Home Town of houston, and a District of 7?" }
### QUESTION Which Population density (per km²) has a Change (%) larger than 4.9, and a Land area (km²) smaller than 15.59, and a Population (2011) larger than 790? ### CONTEXT CREATE TABLE table_name_90 (population_density__per_km²_ INTEGER, population__2011_ VARCHAR, change___percentage_ VARCHAR, land_area__km²_ VARCHAR) ### ANSWER SELECT MAX(population_density__per_km²_) FROM table_name_90 WHERE change___percentage_ > 4.9 AND land_area__km²_ < 15.59 AND population__2011_ > 790
{ "answer": "SELECT MAX(population_density__per_km²_) FROM table_name_90 WHERE change___percentage_ > 4.9 AND land_area__km²_ < 15.59 AND population__2011_ > 790", "context": "CREATE TABLE table_name_90 (population_density__per_km²_ INTEGER, population__2011_ VARCHAR, change___percentage_ VARCHAR, land_area__km²_ VARCHAR)", "question": "Which Population density (per km²) has a Change (%) larger than 4.9, and a Land area (km²) smaller than 15.59, and a Population (2011) larger than 790?" }
### QUESTION What is the 1st leg score when US Mbila Nzambi is team 1? ### CONTEXT CREATE TABLE table_name_3 (team_1 VARCHAR) ### ANSWER SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = "us mbila nzambi"
{ "answer": "SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = \"us mbila nzambi\"", "context": "CREATE TABLE table_name_3 (team_1 VARCHAR)", "question": "What is the 1st leg score when US Mbila Nzambi is team 1?" }
### QUESTION What is the status of the community that has an area larger than 5.2 sq km, and a Census Ranking of 2,531 of 5,008? ### CONTEXT CREATE TABLE table_name_60 (status VARCHAR, area_km_2 VARCHAR, census_ranking VARCHAR) ### ANSWER SELECT status FROM table_name_60 WHERE area_km_2 > 5.2 AND census_ranking = "2,531 of 5,008"
{ "answer": "SELECT status FROM table_name_60 WHERE area_km_2 > 5.2 AND census_ranking = \"2,531 of 5,008\"", "context": "CREATE TABLE table_name_60 (status VARCHAR, area_km_2 VARCHAR, census_ranking VARCHAR)", "question": "What is the status of the community that has an area larger than 5.2 sq km, and a Census Ranking of 2,531 of 5,008?" }
### QUESTION Find the name of the tryout players who are from the college with largest size. ### CONTEXT CREATE TABLE college (cName VARCHAR, enr VARCHAR); CREATE TABLE tryout (pID VARCHAR, cName VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR) ### ANSWER SELECT T2.pName FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID WHERE T1.cName = (SELECT cName FROM college ORDER BY enr DESC LIMIT 1)
{ "answer": "SELECT T2.pName FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID WHERE T1.cName = (SELECT cName FROM college ORDER BY enr DESC LIMIT 1)", "context": "CREATE TABLE college (cName VARCHAR, enr VARCHAR); CREATE TABLE tryout (pID VARCHAR, cName VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR)", "question": "Find the name of the tryout players who are from the college with largest size." }
### QUESTION What is Date, when Opponent is @ Carolina Hurricanes? ### CONTEXT CREATE TABLE table_name_84 (date VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_84 WHERE opponent = "@ carolina hurricanes"
{ "answer": "SELECT date FROM table_name_84 WHERE opponent = \"@ carolina hurricanes\"", "context": "CREATE TABLE table_name_84 (date VARCHAR, opponent VARCHAR)", "question": "What is Date, when Opponent is @ Carolina Hurricanes?" }
### QUESTION What is the average number of bronze medals of the Philippines, which has more than 0 gold? ### CONTEXT CREATE TABLE table_name_63 (bronze INTEGER, nation VARCHAR, gold VARCHAR) ### ANSWER SELECT AVG(bronze) FROM table_name_63 WHERE nation = "philippines" AND gold > 0
{ "answer": "SELECT AVG(bronze) FROM table_name_63 WHERE nation = \"philippines\" AND gold > 0", "context": "CREATE TABLE table_name_63 (bronze INTEGER, nation VARCHAR, gold VARCHAR)", "question": "What is the average number of bronze medals of the Philippines, which has more than 0 gold?" }
### QUESTION Which Record has a Date on december 18? ### CONTEXT CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR) ### ANSWER SELECT record FROM table_name_55 WHERE date = "december 18"
{ "answer": "SELECT record FROM table_name_55 WHERE date = \"december 18\"", "context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)", "question": "Which Record has a Date on december 18?" }
### QUESTION what is the year when the citation is honor and the author is kadir nelson? ### CONTEXT CREATE TABLE table_name_37 (year INTEGER, citation VARCHAR, author VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_37 WHERE citation = "honor" AND author = "kadir nelson"
{ "answer": "SELECT SUM(year) FROM table_name_37 WHERE citation = \"honor\" AND author = \"kadir nelson\"", "context": "CREATE TABLE table_name_37 (year INTEGER, citation VARCHAR, author VARCHAR)", "question": "what is the year when the citation is honor and the author is kadir nelson?" }
### QUESTION What is the most assists for points 129-3.9? ### CONTEXT CREATE TABLE table_22875514_3 (assists INTEGER, points VARCHAR) ### ANSWER SELECT MAX(assists) FROM table_22875514_3 WHERE points = "129-3.9"
{ "answer": "SELECT MAX(assists) FROM table_22875514_3 WHERE points = \"129-3.9\"", "context": "CREATE TABLE table_22875514_3 (assists INTEGER, points VARCHAR)", "question": "What is the most assists for points 129-3.9?" }
### QUESTION Which Joined has an Institution of abraham baldwin agricultural college, and an Enrollment smaller than 3,284? ### CONTEXT CREATE TABLE table_name_96 (joined INTEGER, institution VARCHAR, enrollment VARCHAR) ### ANSWER SELECT MAX(joined) FROM table_name_96 WHERE institution = "abraham baldwin agricultural college" AND enrollment < 3 OFFSET 284
{ "answer": "SELECT MAX(joined) FROM table_name_96 WHERE institution = \"abraham baldwin agricultural college\" AND enrollment < 3 OFFSET 284", "context": "CREATE TABLE table_name_96 (joined INTEGER, institution VARCHAR, enrollment VARCHAR)", "question": "Which Joined has an Institution of abraham baldwin agricultural college, and an Enrollment smaller than 3,284?" }
### QUESTION Find the maximum price of wins from the appelations in Central Coast area and produced before the year of 2005. ### CONTEXT CREATE TABLE APPELLATIONS (Appelation VARCHAR, Area VARCHAR); CREATE TABLE WINE (Price INTEGER, Appelation VARCHAR, year VARCHAR) ### ANSWER SELECT MAX(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = "Central Coast" AND T2.year < 2005
{ "answer": "SELECT MAX(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.Area = \"Central Coast\" AND T2.year < 2005", "context": "CREATE TABLE APPELLATIONS (Appelation VARCHAR, Area VARCHAR); CREATE TABLE WINE (Price INTEGER, Appelation VARCHAR, year VARCHAR)", "question": "Find the maximum price of wins from the appelations in Central Coast area and produced before the year of 2005." }
### QUESTION Name the total number of bronze medals when gold medals was 2, total medals more than 4 and silver medals less than 5 ### CONTEXT CREATE TABLE table_name_87 (bronze_medals VARCHAR, silver_medals VARCHAR, gold_medals VARCHAR, total_medals VARCHAR) ### ANSWER SELECT COUNT(bronze_medals) FROM table_name_87 WHERE gold_medals = 2 AND total_medals > 4 AND silver_medals < 5
{ "answer": "SELECT COUNT(bronze_medals) FROM table_name_87 WHERE gold_medals = 2 AND total_medals > 4 AND silver_medals < 5", "context": "CREATE TABLE table_name_87 (bronze_medals VARCHAR, silver_medals VARCHAR, gold_medals VARCHAR, total_medals VARCHAR)", "question": "Name the total number of bronze medals when gold medals was 2, total medals more than 4 and silver medals less than 5" }
### QUESTION What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total? ### CONTEXT CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, total VARCHAR) ### ANSWER SELECT SUM(gold) FROM table_name_24 WHERE silver = 2 AND total < 7
{ "answer": "SELECT SUM(gold) FROM table_name_24 WHERE silver = 2 AND total < 7", "context": "CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, total VARCHAR)", "question": "What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total?" }