text
stringlengths
150
1.06k
source
dict
### QUESTION Name the presentation of credentials for appointed by of grover cleveland and representative of charles w. buck ### CONTEXT CREATE TABLE table_name_45 (presentation_of_credentials VARCHAR, appointed_by VARCHAR, representative VARCHAR) ### ANSWER SELECT presentation_of_credentials FROM table_name_45 WHERE appointed_by = "grover cleveland" AND representative = "charles w. buck"</s>
{ "answer": "SELECT presentation_of_credentials FROM table_name_45 WHERE appointed_by = \"grover cleveland\" AND representative = \"charles w. buck\"", "context": "CREATE TABLE table_name_45 (presentation_of_credentials VARCHAR, appointed_by VARCHAR, representative VARCHAR)", "question": "Name the presentation of credentials for appointed by of grover cleveland and representative of charles w. buck" }
### QUESTION What is the operator of the ensemble from Yorkshire? ### CONTEXT CREATE TABLE table_name_99 (operator VARCHAR, region VARCHAR) ### ANSWER SELECT operator FROM table_name_99 WHERE region = "yorkshire"</s>
{ "answer": "SELECT operator FROM table_name_99 WHERE region = \"yorkshire\"", "context": "CREATE TABLE table_name_99 (operator VARCHAR, region VARCHAR)", "question": "What is the operator of the ensemble from Yorkshire?" }
### QUESTION Name the termination of mission for woodrow wilson appointed by and representative of benton mcmillin ### CONTEXT CREATE TABLE table_name_18 (termination_of_mission VARCHAR, appointed_by VARCHAR, representative VARCHAR) ### ANSWER SELECT termination_of_mission FROM table_name_18 WHERE appointed_by = "woodrow wilson" AND representative = "benton mcmillin"</s>
{ "answer": "SELECT termination_of_mission FROM table_name_18 WHERE appointed_by = \"woodrow wilson\" AND representative = \"benton mcmillin\"", "context": "CREATE TABLE table_name_18 (termination_of_mission VARCHAR, appointed_by VARCHAR, representative VARCHAR)", "question": "Name the termination of mission for woodrow wilson appointed by and representative of benton mcmillin" }
### QUESTION What is the Winning Team with Rick Mears' and Kraco Twin 125 (R1)? ### CONTEXT CREATE TABLE table_name_80 (winning_team VARCHAR, winning_driver VARCHAR, name VARCHAR) ### ANSWER SELECT winning_team FROM table_name_80 WHERE winning_driver = "rick mears" AND name = "kraco twin 125 (r1)"</s>
{ "answer": "SELECT winning_team FROM table_name_80 WHERE winning_driver = \"rick mears\" AND name = \"kraco twin 125 (r1)\"", "context": "CREATE TABLE table_name_80 (winning_team VARCHAR, winning_driver VARCHAR, name VARCHAR)", "question": "What is the Winning Team with Rick Mears' and Kraco Twin 125 (R1)?" }
### QUESTION What is the highest apps total with FA cup apps of 26 with total number of goals larger than 9? ### CONTEXT CREATE TABLE table_name_41 (total_apps INTEGER, fa_cup_apps VARCHAR, total_goals VARCHAR) ### ANSWER SELECT MAX(total_apps) FROM table_name_41 WHERE fa_cup_apps = 26 AND total_goals > 9</s>
{ "answer": "SELECT MAX(total_apps) FROM table_name_41 WHERE fa_cup_apps = 26 AND total_goals > 9", "context": "CREATE TABLE table_name_41 (total_apps INTEGER, fa_cup_apps VARCHAR, total_goals VARCHAR)", "question": "What is the highest apps total with FA cup apps of 26 with total number of goals larger than 9?" }
### QUESTION What was the status of joon-hyung park 박준형? ### CONTEXT CREATE TABLE table_name_58 (status VARCHAR, name VARCHAR) ### ANSWER SELECT status FROM table_name_58 WHERE name = "joon-hyung park 박준형"</s>
{ "answer": "SELECT status FROM table_name_58 WHERE name = \"joon-hyung park 박준형\"", "context": "CREATE TABLE table_name_58 (status VARCHAR, name VARCHAR)", "question": "What was the status of joon-hyung park 박준형?" }
### QUESTION What is the Report of Winning Team Penske Racing, and what was Rick Mears' Pole position? ### CONTEXT CREATE TABLE table_name_68 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR) ### ANSWER SELECT report FROM table_name_68 WHERE winning_team = "penske racing" AND pole_position = "rick mears"</s>
{ "answer": "SELECT report FROM table_name_68 WHERE winning_team = \"penske racing\" AND pole_position = \"rick mears\"", "context": "CREATE TABLE table_name_68 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR)", "question": "What is the Report of Winning Team Penske Racing, and what was Rick Mears' Pole position?" }
### QUESTION What is the Pole Position for Winning Team Penske Racing, and the Name of II Copa Mexico 150? ### CONTEXT CREATE TABLE table_name_41 (pole_position VARCHAR, winning_team VARCHAR, name VARCHAR) ### ANSWER SELECT pole_position FROM table_name_41 WHERE winning_team = "penske racing" AND name = "ii copa mexico 150"</s>
{ "answer": "SELECT pole_position FROM table_name_41 WHERE winning_team = \"penske racing\" AND name = \"ii copa mexico 150\"", "context": "CREATE TABLE table_name_41 (pole_position VARCHAR, winning_team VARCHAR, name VARCHAR)", "question": "What is the Pole Position for Winning Team Penske Racing, and the Name of II Copa Mexico 150?" }
### QUESTION What FA cup apps has a total larger than 12 and league apps larger than 38, and FA Cup goals larger than 1? ### CONTEXT CREATE TABLE table_name_50 (fa_cup_apps VARCHAR, fa_cup_goals VARCHAR, total_apps VARCHAR, league_apps VARCHAR) ### ANSWER SELECT COUNT(fa_cup_apps) FROM table_name_50 WHERE total_apps > 12 AND league_apps > 38 AND fa_cup_goals > 1</s>
{ "answer": "SELECT COUNT(fa_cup_apps) FROM table_name_50 WHERE total_apps > 12 AND league_apps > 38 AND fa_cup_goals > 1", "context": "CREATE TABLE table_name_50 (fa_cup_apps VARCHAR, fa_cup_goals VARCHAR, total_apps VARCHAR, league_apps VARCHAR)", "question": "What FA cup apps has a total larger than 12 and league apps larger than 38, and FA Cup goals larger than 1?" }
### 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</s>
{ "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 Which entrant has a Honda V6 engine and a Lotus 99t chassis? ### CONTEXT CREATE TABLE table_name_42 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR) ### ANSWER SELECT entrant FROM table_name_42 WHERE engine = "honda v6" AND chassis = "lotus 99t"</s>
{ "answer": "SELECT entrant FROM table_name_42 WHERE engine = \"honda v6\" AND chassis = \"lotus 99t\"", "context": "CREATE TABLE table_name_42 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR)", "question": "Which entrant has a Honda V6 engine and a Lotus 99t chassis?" }
### QUESTION Name the most runs for wickets of 66 and matches less than 13 ### CONTEXT CREATE TABLE table_name_68 (runs INTEGER, wickets VARCHAR, matches VARCHAR) ### ANSWER SELECT MAX(runs) FROM table_name_68 WHERE wickets = 66 AND matches < 13</s>
{ "answer": "SELECT MAX(runs) FROM table_name_68 WHERE wickets = 66 AND matches < 13", "context": "CREATE TABLE table_name_68 (runs INTEGER, wickets VARCHAR, matches VARCHAR)", "question": "Name the most runs for wickets of 66 and matches less than 13" }
### QUESTION What is the score of the game with the San Diego Padres as the opponent and a record of 11-23? ### CONTEXT CREATE TABLE table_name_29 (score VARCHAR, opponent VARCHAR, record VARCHAR) ### ANSWER SELECT score FROM table_name_29 WHERE opponent = "san diego padres" AND record = "11-23"</s>
{ "answer": "SELECT score FROM table_name_29 WHERE opponent = \"san diego padres\" AND record = \"11-23\"", "context": "CREATE TABLE table_name_29 (score VARCHAR, opponent VARCHAR, record VARCHAR)", "question": "What is the score of the game with the San Diego Padres as the opponent and a record of 11-23?" }
### QUESTION What is the record of the game on 13 May? ### CONTEXT CREATE TABLE table_name_70 (record VARCHAR, date VARCHAR) ### ANSWER SELECT record FROM table_name_70 WHERE date = "13 may"</s>
{ "answer": "SELECT record FROM table_name_70 WHERE date = \"13 may\"", "context": "CREATE TABLE table_name_70 (record VARCHAR, date VARCHAR)", "question": "What is the record of the game on 13 May?" }
### QUESTION What is the Sweet Potato amount when the soybean amount is 1.65? ### CONTEXT CREATE TABLE table_name_92 (sweet_potato_ VARCHAR, g_ VARCHAR, soybean__green__ VARCHAR, f_ VARCHAR) ### ANSWER SELECT sweet_potato_[g_] FROM table_name_92 WHERE soybean__green__[f_] = "1.65"</s>
{ "answer": "SELECT sweet_potato_[g_] FROM table_name_92 WHERE soybean__green__[f_] = \"1.65\"", "context": "CREATE TABLE table_name_92 (sweet_potato_ VARCHAR, g_ VARCHAR, soybean__green__ VARCHAR, f_ VARCHAR)", "question": "What is the Sweet Potato amount when the soybean amount is 1.65?" }
### QUESTION Tell me the year built for number built of 10 ### CONTEXT CREATE TABLE table_name_14 (year_built__converted VARCHAR, _ VARCHAR, no_built__converted VARCHAR) ### ANSWER SELECT year_built__converted * _ FROM table_name_14 WHERE no_built__converted * _ = "10"</s>
{ "answer": "SELECT year_built__converted * _ FROM table_name_14 WHERE no_built__converted * _ = \"10\"", "context": "CREATE TABLE table_name_14 (year_built__converted VARCHAR, _ VARCHAR, no_built__converted VARCHAR)", "question": "Tell me the year built for number built of 10" }
### QUESTION What is the name of the song that is part of the opening theme and has a drama of the revolving doors of vengeance? ### CONTEXT CREATE TABLE table_name_82 (name_of_the_song VARCHAR, kind_of_the_song VARCHAR, drama VARCHAR) ### ANSWER SELECT name_of_the_song FROM table_name_82 WHERE kind_of_the_song = "opening theme" AND drama = "revolving doors of vengeance"</s>
{ "answer": "SELECT name_of_the_song FROM table_name_82 WHERE kind_of_the_song = \"opening theme\" AND drama = \"revolving doors of vengeance\"", "context": "CREATE TABLE table_name_82 (name_of_the_song VARCHAR, kind_of_the_song VARCHAR, drama VARCHAR)", "question": "What is the name of the song that is part of the opening theme and has a drama of the revolving doors of vengeance?" }
### QUESTION What is the maximum number of players for the sega game, hang-on (cartridge version)? ### CONTEXT CREATE TABLE table_name_24 (max__number_of_players VARCHAR, developer VARCHAR, main_title___alternate_title_s_ VARCHAR) ### ANSWER SELECT COUNT(max__number_of_players) FROM table_name_24 WHERE developer = "sega" AND main_title___alternate_title_s_ = "hang-on (cartridge version)"</s>
{ "answer": "SELECT COUNT(max__number_of_players) FROM table_name_24 WHERE developer = \"sega\" AND main_title___alternate_title_s_ = \"hang-on (cartridge version)\"", "context": "CREATE TABLE table_name_24 (max__number_of_players VARCHAR, developer VARCHAR, main_title___alternate_title_s_ VARCHAR)", "question": "What is the maximum number of players for the sega game, hang-on (cartridge version)?" }
### QUESTION When is the term end of Shlomo-Yisrael Ben-Meir of the National Religious Party? ### CONTEXT CREATE TABLE table_name_37 (term_end VARCHAR, party VARCHAR, minister VARCHAR) ### ANSWER SELECT term_end FROM table_name_37 WHERE party = "national religious party" AND minister = "shlomo-yisrael ben-meir"</s>
{ "answer": "SELECT term_end FROM table_name_37 WHERE party = \"national religious party\" AND minister = \"shlomo-yisrael ben-meir\"", "context": "CREATE TABLE table_name_37 (term_end VARCHAR, party VARCHAR, minister VARCHAR)", "question": "When is the term end of Shlomo-Yisrael Ben-Meir of the National Religious Party?" }
### QUESTION What date is the 1:00 pm game at arrowhead stadium? ### CONTEXT CREATE TABLE table_name_37 (date VARCHAR, time___et__ VARCHAR, game_site VARCHAR) ### ANSWER SELECT date FROM table_name_37 WHERE time___et__ = "1:00 pm" AND game_site = "arrowhead stadium"</s>
{ "answer": "SELECT date FROM table_name_37 WHERE time___et__ = \"1:00 pm\" AND game_site = \"arrowhead stadium\"", "context": "CREATE TABLE table_name_37 (date VARCHAR, time___et__ VARCHAR, game_site VARCHAR)", "question": "What date is the 1:00 pm game at arrowhead stadium?" }
### QUESTION Name the points classification for predictor-lotto and stage 1 ### CONTEXT CREATE TABLE table_name_65 (points_classification VARCHAR, team_classification VARCHAR, stage VARCHAR) ### ANSWER SELECT points_classification FROM table_name_65 WHERE team_classification = "predictor-lotto" AND stage = "1"</s>
{ "answer": "SELECT points_classification FROM table_name_65 WHERE team_classification = \"predictor-lotto\" AND stage = \"1\"", "context": "CREATE TABLE table_name_65 (points_classification VARCHAR, team_classification VARCHAR, stage VARCHAR)", "question": "Name the points classification for predictor-lotto and stage 1" }
### QUESTION Where will the game at (ET) of 7:00 pm be at? ### CONTEXT CREATE TABLE table_name_2 (game_site VARCHAR, time___et__ VARCHAR) ### ANSWER SELECT game_site FROM table_name_2 WHERE time___et__ = "7:00 pm"</s>
{ "answer": "SELECT game_site FROM table_name_2 WHERE time___et__ = \"7:00 pm\"", "context": "CREATE TABLE table_name_2 (game_site VARCHAR, time___et__ VARCHAR)", "question": "Where will the game at (ET) of 7:00 pm be at?" }
### QUESTION What is the brand of DXRE? ### CONTEXT CREATE TABLE table_name_35 (branding VARCHAR, callsign VARCHAR) ### ANSWER SELECT branding FROM table_name_35 WHERE callsign = "dxre"</s>
{ "answer": "SELECT branding FROM table_name_35 WHERE callsign = \"dxre\"", "context": "CREATE TABLE table_name_35 (branding VARCHAR, callsign VARCHAR)", "question": "What is the brand of DXRE?" }
### QUESTION What is the average speed of rider Peter Williams? ### CONTEXT CREATE TABLE table_name_44 (speed VARCHAR, rider VARCHAR) ### ANSWER SELECT speed FROM table_name_44 WHERE rider = "peter williams"</s>
{ "answer": "SELECT speed FROM table_name_44 WHERE rider = \"peter williams\"", "context": "CREATE TABLE table_name_44 (speed VARCHAR, rider VARCHAR)", "question": "What is the average speed of rider Peter Williams?" }
### QUESTION What engine did Casey Mears use on the Reynard 01i Chassis? ### CONTEXT CREATE TABLE table_name_24 (engine VARCHAR, chassis VARCHAR, drivers VARCHAR) ### ANSWER SELECT engine FROM table_name_24 WHERE chassis = "reynard 01i" AND drivers = "casey mears"</s>
{ "answer": "SELECT engine FROM table_name_24 WHERE chassis = \"reynard 01i\" AND drivers = \"casey mears\"", "context": "CREATE TABLE table_name_24 (engine VARCHAR, chassis VARCHAR, drivers VARCHAR)", "question": "What engine did Casey Mears use on the Reynard 01i Chassis?" }
### QUESTION Tell me the player for pick number less than 29 and mls team of chicago fire ### CONTEXT CREATE TABLE table_name_97 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR) ### ANSWER SELECT player FROM table_name_97 WHERE pick__number < 29 AND mls_team = "chicago fire"</s>
{ "answer": "SELECT player FROM table_name_97 WHERE pick__number < 29 AND mls_team = \"chicago fire\"", "context": "CREATE TABLE table_name_97 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR)", "question": "Tell me the player for pick number less than 29 and mls team of chicago fire" }
### QUESTION What circuit did Rupert Keegan win in round 8? ### CONTEXT CREATE TABLE table_name_21 (circuit VARCHAR, winning_driver VARCHAR, round VARCHAR) ### ANSWER SELECT circuit FROM table_name_21 WHERE winning_driver = "rupert keegan" AND round = 8</s>
{ "answer": "SELECT circuit FROM table_name_21 WHERE winning_driver = \"rupert keegan\" AND round = 8", "context": "CREATE TABLE table_name_21 (circuit VARCHAR, winning_driver VARCHAR, round VARCHAR)", "question": "What circuit did Rupert Keegan win in round 8?" }
### QUESTION Name the award for candida scott knight ### CONTEXT CREATE TABLE table_name_78 (award VARCHAR, director_s_ VARCHAR) ### ANSWER SELECT award FROM table_name_78 WHERE director_s_ = "candida scott knight"</s>
{ "answer": "SELECT award FROM table_name_78 WHERE director_s_ = \"candida scott knight\"", "context": "CREATE TABLE table_name_78 (award VARCHAR, director_s_ VARCHAR)", "question": "Name the award for candida scott knight" }
### QUESTION Who are the sideline reporter(s) on NBC with al michaels on the play-by-play after 2013? ### CONTEXT CREATE TABLE table_name_22 (sideline_reporter_s_ VARCHAR, year VARCHAR, network VARCHAR, play_by_play VARCHAR) ### ANSWER SELECT sideline_reporter_s_ FROM table_name_22 WHERE network = "nbc" AND play_by_play = "al michaels" AND year > 2013</s>
{ "answer": "SELECT sideline_reporter_s_ FROM table_name_22 WHERE network = \"nbc\" AND play_by_play = \"al michaels\" AND year > 2013", "context": "CREATE TABLE table_name_22 (sideline_reporter_s_ VARCHAR, year VARCHAR, network VARCHAR, play_by_play VARCHAR)", "question": "Who are the sideline reporter(s) on NBC with al michaels on the play-by-play after 2013?" }
### QUESTION What is the highest Peroutka with 46 others, and less than 15 electors? ### CONTEXT CREATE TABLE table_name_69 (peroutka INTEGER, others VARCHAR, electors VARCHAR) ### ANSWER SELECT MAX(peroutka) FROM table_name_69 WHERE others = 46 AND electors < 15</s>
{ "answer": "SELECT MAX(peroutka) FROM table_name_69 WHERE others = 46 AND electors < 15", "context": "CREATE TABLE table_name_69 (peroutka INTEGER, others VARCHAR, electors VARCHAR)", "question": "What is the highest Peroutka with 46 others, and less than 15 electors?" }
### QUESTION Which higher harmonics have a speed of 0.0821373? ### CONTEXT CREATE TABLE table_name_36 (higher_harmonics VARCHAR, speed VARCHAR) ### ANSWER SELECT higher_harmonics FROM table_name_36 WHERE speed = "0.0821373"</s>
{ "answer": "SELECT higher_harmonics FROM table_name_36 WHERE speed = \"0.0821373\"", "context": "CREATE TABLE table_name_36 (higher_harmonics VARCHAR, speed VARCHAR)", "question": "Which higher harmonics have a speed of 0.0821373?" }
### 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"</s>
{ "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 What are the largest Cars Entered with a Winning Driver of rodger ward, and a Season smaller than 1959? ### CONTEXT CREATE TABLE table_name_33 (cars_entered INTEGER, winning_driver VARCHAR, season VARCHAR) ### ANSWER SELECT MAX(cars_entered) FROM table_name_33 WHERE winning_driver = "rodger ward" AND season < 1959</s>
{ "answer": "SELECT MAX(cars_entered) FROM table_name_33 WHERE winning_driver = \"rodger ward\" AND season < 1959", "context": "CREATE TABLE table_name_33 (cars_entered INTEGER, winning_driver VARCHAR, season VARCHAR)", "question": "What are the largest Cars Entered with a Winning Driver of rodger ward, and a Season smaller than 1959?" }
### QUESTION What was the average speed over 18.00km for winning driver Jean-Claude Andruet? ### CONTEXT CREATE TABLE table_name_23 (avg_speed VARCHAR, distance VARCHAR, winning_driver VARCHAR) ### ANSWER SELECT avg_speed FROM table_name_23 WHERE distance = "18.00km" AND winning_driver = "jean-claude andruet"</s>
{ "answer": "SELECT avg_speed FROM table_name_23 WHERE distance = \"18.00km\" AND winning_driver = \"jean-claude andruet\"", "context": "CREATE TABLE table_name_23 (avg_speed VARCHAR, distance VARCHAR, winning_driver VARCHAR)", "question": "What was the average speed over 18.00km for winning driver Jean-Claude Andruet?" }
### QUESTION What shows for 2007 at the Olympic Games as tournament. ### CONTEXT CREATE TABLE table_name_55 (tournament VARCHAR) ### ANSWER SELECT 2007 FROM table_name_55 WHERE tournament = "olympic games"</s>
{ "answer": "SELECT 2007 FROM table_name_55 WHERE tournament = \"olympic games\"", "context": "CREATE TABLE table_name_55 (tournament VARCHAR)", "question": "What shows for 2007 at the Olympic Games as tournament." }
### QUESTION What position does the player from Oklahoma who was drafted in round 7 play? ### CONTEXT CREATE TABLE table_name_95 (position VARCHAR, round VARCHAR, college VARCHAR) ### ANSWER SELECT position FROM table_name_95 WHERE round = 7 AND college = "oklahoma"</s>
{ "answer": "SELECT position FROM table_name_95 WHERE round = 7 AND college = \"oklahoma\"", "context": "CREATE TABLE table_name_95 (position VARCHAR, round VARCHAR, college VARCHAR)", "question": "What position does the player from Oklahoma who was drafted in round 7 play?" }
### QUESTION What competition was the World Championships before 2011? ### CONTEXT CREATE TABLE table_name_38 (event VARCHAR, competition VARCHAR, year VARCHAR) ### ANSWER SELECT event FROM table_name_38 WHERE competition = "world championships" AND year < 2011</s>
{ "answer": "SELECT event FROM table_name_38 WHERE competition = \"world championships\" AND year < 2011", "context": "CREATE TABLE table_name_38 (event VARCHAR, competition VARCHAR, year VARCHAR)", "question": "What competition was the World Championships before 2011?" }
### QUESTION What's the Years as tallest with a Street address of 324 E. 11th Street? ### CONTEXT CREATE TABLE table_name_12 (years_as_tallest VARCHAR, street_address VARCHAR) ### ANSWER SELECT years_as_tallest FROM table_name_12 WHERE street_address = "324 e. 11th street"</s>
{ "answer": "SELECT years_as_tallest FROM table_name_12 WHERE street_address = \"324 e. 11th street\"", "context": "CREATE TABLE table_name_12 (years_as_tallest VARCHAR, street_address VARCHAR)", "question": "What's the Years as tallest with a Street address of 324 E. 11th Street?" }
### QUESTION What tires did BFM Enterprises run on their Offy engine and manta chassis? ### CONTEXT CREATE TABLE table_name_15 (tires VARCHAR, team VARCHAR, engine VARCHAR, chassis VARCHAR) ### ANSWER SELECT tires FROM table_name_15 WHERE engine = "offy" AND chassis = "manta" AND team = "bfm enterprises"</s>
{ "answer": "SELECT tires FROM table_name_15 WHERE engine = \"offy\" AND chassis = \"manta\" AND team = \"bfm enterprises\"", "context": "CREATE TABLE table_name_15 (tires VARCHAR, team VARCHAR, engine VARCHAR, chassis VARCHAR)", "question": "What tires did BFM Enterprises run on their Offy engine and manta chassis?" }
### QUESTION What is listsed as the Height feet/m and has a Street address of 2345 Grand Avenue? ### CONTEXT CREATE TABLE table_name_40 (height_feet___m VARCHAR, street_address VARCHAR) ### ANSWER SELECT height_feet___m FROM table_name_40 WHERE street_address = "2345 grand avenue"</s>
{ "answer": "SELECT height_feet___m FROM table_name_40 WHERE street_address = \"2345 grand avenue\"", "context": "CREATE TABLE table_name_40 (height_feet___m VARCHAR, street_address VARCHAR)", "question": "What is listsed as the Height feet/m and has a Street address of 2345 Grand Avenue?" }
### QUESTION Daily ridership greater that 414 is associated with which length? ### CONTEXT CREATE TABLE table_name_60 (length VARCHAR, daily_ridership INTEGER) ### ANSWER SELECT length FROM table_name_60 WHERE daily_ridership > 414</s>
{ "answer": "SELECT length FROM table_name_60 WHERE daily_ridership > 414", "context": "CREATE TABLE table_name_60 (length VARCHAR, daily_ridership INTEGER)", "question": "Daily ridership greater that 414 is associated with which length?" }
### QUESTION what is the listing for 1999 when 1990 is more than 0, 2003 is 3, 2007 is more than 1 and 1996 is more than 0? ### CONTEXT CREATE TABLE table_name_27 (Id VARCHAR) ### ANSWER SELECT SUM(1999) FROM table_name_27 WHERE 1990 > 0 AND 2003 = 3 AND 2007 > 1 AND 1996 > 0</s>
{ "answer": "SELECT SUM(1999) FROM table_name_27 WHERE 1990 > 0 AND 2003 = 3 AND 2007 > 1 AND 1996 > 0", "context": "CREATE TABLE table_name_27 (Id VARCHAR)", "question": "what is the listing for 1999 when 1990 is more than 0, 2003 is 3, 2007 is more than 1 and 1996 is more than 0?" }
### QUESTION Prior to 2004, what was the name of the competition that took place in Johannesburg, South Africa and had the 400 m hurdles event? ### CONTEXT CREATE TABLE table_name_75 (competition VARCHAR, venue VARCHAR, notes VARCHAR, year VARCHAR) ### ANSWER SELECT competition FROM table_name_75 WHERE notes = "400 m hurdles" AND year < 2004 AND venue = "johannesburg, south africa"</s>
{ "answer": "SELECT competition FROM table_name_75 WHERE notes = \"400 m hurdles\" AND year < 2004 AND venue = \"johannesburg, south africa\"", "context": "CREATE TABLE table_name_75 (competition VARCHAR, venue VARCHAR, notes VARCHAR, year VARCHAR)", "question": "Prior to 2004, what was the name of the competition that took place in Johannesburg, South Africa and had the 400 m hurdles event?" }
### QUESTION What place did Târlea come in at the European Indoor Championships? ### CONTEXT CREATE TABLE table_name_56 (position VARCHAR, competition VARCHAR) ### ANSWER SELECT position FROM table_name_56 WHERE competition = "european indoor championships"</s>
{ "answer": "SELECT position FROM table_name_56 WHERE competition = \"european indoor championships\"", "context": "CREATE TABLE table_name_56 (position VARCHAR, competition VARCHAR)", "question": "What place did Târlea come in at the European Indoor Championships?" }
### QUESTION What is the child sex ration for the population with 37.7% work participation? ### CONTEXT CREATE TABLE table_name_24 (sex_ratio__child_ INTEGER, work_participation___percentage_ VARCHAR) ### ANSWER SELECT MAX(sex_ratio__child_) FROM table_name_24 WHERE work_participation___percentage_ = "37.7%"</s>
{ "answer": "SELECT MAX(sex_ratio__child_) FROM table_name_24 WHERE work_participation___percentage_ = \"37.7%\"", "context": "CREATE TABLE table_name_24 (sex_ratio__child_ INTEGER, work_participation___percentage_ VARCHAR)", "question": "What is the child sex ration for the population with 37.7% work participation?" }
### QUESTION How many appearances were made by people that had 5 goals and less than 7 rank? ### CONTEXT CREATE TABLE table_name_95 (appearances VARCHAR, goals VARCHAR, rank VARCHAR) ### ANSWER SELECT COUNT(appearances) FROM table_name_95 WHERE goals = 5 AND rank < 7</s>
{ "answer": "SELECT COUNT(appearances) FROM table_name_95 WHERE goals = 5 AND rank < 7", "context": "CREATE TABLE table_name_95 (appearances VARCHAR, goals VARCHAR, rank VARCHAR)", "question": "How many appearances were made by people that had 5 goals and less than 7 rank?" }
### QUESTION Tell me the name for round of e ### CONTEXT CREATE TABLE table_name_29 (name VARCHAR, round VARCHAR) ### ANSWER SELECT name FROM table_name_29 WHERE round = "e"</s>
{ "answer": "SELECT name FROM table_name_29 WHERE round = \"e\"", "context": "CREATE TABLE table_name_29 (name VARCHAR, round VARCHAR)", "question": "Tell me the name for round of e" }
### QUESTION How many wins have a Series of formula nippon, and a Position of 8th? ### CONTEXT CREATE TABLE table_name_78 (wins VARCHAR, series VARCHAR, position VARCHAR) ### ANSWER SELECT wins FROM table_name_78 WHERE series = "formula nippon" AND position = "8th"</s>
{ "answer": "SELECT wins FROM table_name_78 WHERE series = \"formula nippon\" AND position = \"8th\"", "context": "CREATE TABLE table_name_78 (wins VARCHAR, series VARCHAR, position VARCHAR)", "question": "How many wins have a Series of formula nippon, and a Position of 8th?" }
### QUESTION What's the theme for a series of season 3 with smaller than 148 days? ### CONTEXT CREATE TABLE table_name_6 (theme VARCHAR, days VARCHAR, series VARCHAR) ### ANSWER SELECT theme FROM table_name_6 WHERE days < 148 AND series = "season 3"</s>
{ "answer": "SELECT theme FROM table_name_6 WHERE days < 148 AND series = \"season 3\"", "context": "CREATE TABLE table_name_6 (theme VARCHAR, days VARCHAR, series VARCHAR)", "question": "What's the theme for a series of season 3 with smaller than 148 days?" }
### QUESTION What is the name of the team that had 1 win and a rating of +85? ### CONTEXT CREATE TABLE table_name_51 (team VARCHAR, win__number VARCHAR, rating VARCHAR) ### ANSWER SELECT team FROM table_name_51 WHERE win__number = "1" AND rating = "+85"</s>
{ "answer": "SELECT team FROM table_name_51 WHERE win__number = \"1\" AND rating = \"+85\"", "context": "CREATE TABLE table_name_51 (team VARCHAR, win__number VARCHAR, rating VARCHAR)", "question": "What is the name of the team that had 1 win and a rating of +85?" }
### QUESTION Position of defensive tackle, and a Round of 4, and a Pick # smaller than 36 has what overall average? ### CONTEXT CREATE TABLE table_name_47 (overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR) ### ANSWER SELECT AVG(overall) FROM table_name_47 WHERE position = "defensive tackle" AND round = 4 AND pick__number < 36</s>
{ "answer": "SELECT AVG(overall) FROM table_name_47 WHERE position = \"defensive tackle\" AND round = 4 AND pick__number < 36", "context": "CREATE TABLE table_name_47 (overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR)", "question": "Position of defensive tackle, and a Round of 4, and a Pick # smaller than 36 has what overall average?" }
### QUESTION For the race held at the Cleveland Burke Lakefront Airport circuit, with winning driver Emerson Fittipaldi and pole position Michael Andretti, what was the winning team? ### CONTEXT CREATE TABLE table_name_15 (winning_team VARCHAR, circuit VARCHAR, winning_driver VARCHAR, pole_position VARCHAR) ### ANSWER SELECT winning_team FROM table_name_15 WHERE winning_driver = "emerson fittipaldi" AND pole_position = "michael andretti" AND circuit = "cleveland burke lakefront airport"</s>
{ "answer": "SELECT winning_team FROM table_name_15 WHERE winning_driver = \"emerson fittipaldi\" AND pole_position = \"michael andretti\" AND circuit = \"cleveland burke lakefront airport\"", "context": "CREATE TABLE table_name_15 (winning_team VARCHAR, circuit VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)", "question": "For the race held at the Cleveland Burke Lakefront Airport circuit, with winning driver Emerson Fittipaldi and pole position Michael Andretti, what was the winning team?" }
### QUESTION What is the muzzle device with a 1:7 barrel twist and a stock 4th generation? ### CONTEXT CREATE TABLE table_name_47 (muzzle_device VARCHAR, barrel_twist VARCHAR, stock VARCHAR) ### ANSWER SELECT muzzle_device FROM table_name_47 WHERE barrel_twist = "1:7" AND stock = "4th generation"</s>
{ "answer": "SELECT muzzle_device FROM table_name_47 WHERE barrel_twist = \"1:7\" AND stock = \"4th generation\"", "context": "CREATE TABLE table_name_47 (muzzle_device VARCHAR, barrel_twist VARCHAR, stock VARCHAR)", "question": "What is the muzzle device with a 1:7 barrel twist and a stock 4th generation?" }
### QUESTION What position is played by farmar, jordan jordan farmar? ### CONTEXT CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR) ### ANSWER SELECT position FROM table_name_29 WHERE player = "farmar, jordan jordan farmar"</s>
{ "answer": "SELECT position FROM table_name_29 WHERE player = \"farmar, jordan jordan farmar\"", "context": "CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR)", "question": "What position is played by farmar, jordan jordan farmar?" }
### QUESTION what last performance has past status, ballet as style and tommy batchelor? ### CONTEXT CREATE TABLE table_name_7 (last_performance VARCHAR, name VARCHAR, status VARCHAR, style VARCHAR) ### ANSWER SELECT last_performance FROM table_name_7 WHERE status = "past" AND style = "ballet" AND name = "tommy batchelor"</s>
{ "answer": "SELECT last_performance FROM table_name_7 WHERE status = \"past\" AND style = \"ballet\" AND name = \"tommy batchelor\"", "context": "CREATE TABLE table_name_7 (last_performance VARCHAR, name VARCHAR, status VARCHAR, style VARCHAR)", "question": "what last performance has past status, ballet as style and tommy batchelor?" }
### QUESTION What city in the east region in North Carolina was the round where the University of Richmond was the host? ### CONTEXT CREATE TABLE table_name_20 (city VARCHAR, host VARCHAR, region VARCHAR, state VARCHAR) ### ANSWER SELECT city FROM table_name_20 WHERE region = "east" AND state = "north carolina" AND host = "university of richmond"</s>
{ "answer": "SELECT city FROM table_name_20 WHERE region = \"east\" AND state = \"north carolina\" AND host = \"university of richmond\"", "context": "CREATE TABLE table_name_20 (city VARCHAR, host VARCHAR, region VARCHAR, state VARCHAR)", "question": "What city in the east region in North Carolina was the round where the University of Richmond was the host?" }
### QUESTION Which crystal structures has a Tc(K) of 110 and the number of Cu-O planes in the unit cell is 3? ### CONTEXT CREATE TABLE table_name_67 (crystal_structure VARCHAR, no_of_cu_o_planes_in_unit_cell VARCHAR, t_c__k_ VARCHAR) ### ANSWER SELECT crystal_structure FROM table_name_67 WHERE no_of_cu_o_planes_in_unit_cell = 3 AND t_c__k_ = 110</s>
{ "answer": "SELECT crystal_structure FROM table_name_67 WHERE no_of_cu_o_planes_in_unit_cell = 3 AND t_c__k_ = 110", "context": "CREATE TABLE table_name_67 (crystal_structure VARCHAR, no_of_cu_o_planes_in_unit_cell VARCHAR, t_c__k_ VARCHAR)", "question": "Which crystal structures has a Tc(K) of 110 and the number of Cu-O planes in the unit cell is 3?" }
### QUESTION What was the host of the round in the Montagne Center in Texas? ### CONTEXT CREATE TABLE table_name_62 (host VARCHAR, state VARCHAR, venue VARCHAR) ### ANSWER SELECT host FROM table_name_62 WHERE state = "texas" AND venue = "montagne center"</s>
{ "answer": "SELECT host FROM table_name_62 WHERE state = \"texas\" AND venue = \"montagne center\"", "context": "CREATE TABLE table_name_62 (host VARCHAR, state VARCHAR, venue VARCHAR)", "question": "What was the host of the round in the Montagne Center in Texas?" }
### QUESTION Which Event resulted in a Win for Opponent, Shane Ott? ### CONTEXT CREATE TABLE table_name_4 (event VARCHAR, res VARCHAR, opponent VARCHAR) ### ANSWER SELECT event FROM table_name_4 WHERE res = "win" AND opponent = "shane ott"</s>
{ "answer": "SELECT event FROM table_name_4 WHERE res = \"win\" AND opponent = \"shane ott\"", "context": "CREATE TABLE table_name_4 (event VARCHAR, res VARCHAR, opponent VARCHAR)", "question": "Which Event resulted in a Win for Opponent, Shane Ott?" }
### QUESTION What is the prime mover of the locomotive with a fa-2 model? ### CONTEXT CREATE TABLE table_name_16 (prime_mover VARCHAR, model VARCHAR) ### ANSWER SELECT prime_mover FROM table_name_16 WHERE model = "fa-2"</s>
{ "answer": "SELECT prime_mover FROM table_name_16 WHERE model = \"fa-2\"", "context": "CREATE TABLE table_name_16 (prime_mover VARCHAR, model VARCHAR)", "question": "What is the prime mover of the locomotive with a fa-2 model?" }
### QUESTION How many goals was by Rix from Eng who started before 2005 in the youth system? ### CONTEXT CREATE TABLE table_name_38 (goals VARCHAR, name VARCHAR, since VARCHAR, nat VARCHAR, transfer_fee VARCHAR) ### ANSWER SELECT COUNT(goals) FROM table_name_38 WHERE nat = "eng" AND transfer_fee = "youth system" AND since < 2005 AND name = "rix"</s>
{ "answer": "SELECT COUNT(goals) FROM table_name_38 WHERE nat = \"eng\" AND transfer_fee = \"youth system\" AND since < 2005 AND name = \"rix\"", "context": "CREATE TABLE table_name_38 (goals VARCHAR, name VARCHAR, since VARCHAR, nat VARCHAR, transfer_fee VARCHAR)", "question": "How many goals was by Rix from Eng who started before 2005 in the youth system?" }
### QUESTION What is the 2007 film in Hindi with a music director Shantanu moitra? ### CONTEXT CREATE TABLE table_name_2 (film VARCHAR, music_director VARCHAR, year VARCHAR, language VARCHAR) ### ANSWER SELECT film FROM table_name_2 WHERE year = 2007 AND language = "hindi" AND music_director = "shantanu moitra"</s>
{ "answer": "SELECT film FROM table_name_2 WHERE year = 2007 AND language = \"hindi\" AND music_director = \"shantanu moitra\"", "context": "CREATE TABLE table_name_2 (film VARCHAR, music_director VARCHAR, year VARCHAR, language VARCHAR)", "question": "What is the 2007 film in Hindi with a music director Shantanu moitra?" }
### QUESTION Tell me the tournament with a hard surface for 6–1, 6–2 ### CONTEXT CREATE TABLE table_name_99 (tournament VARCHAR, surface VARCHAR, score VARCHAR) ### ANSWER SELECT tournament FROM table_name_99 WHERE surface = "hard" AND score = "6–1, 6–2"</s>
{ "answer": "SELECT tournament FROM table_name_99 WHERE surface = \"hard\" AND score = \"6–1, 6–2\"", "context": "CREATE TABLE table_name_99 (tournament VARCHAR, surface VARCHAR, score VARCHAR)", "question": "Tell me the tournament with a hard surface for 6–1, 6–2" }
### QUESTION Tell me the section for position of 8th and season of 2003 ### CONTEXT CREATE TABLE table_name_29 (section VARCHAR, position VARCHAR, season VARCHAR) ### ANSWER SELECT section FROM table_name_29 WHERE position = "8th" AND season = "2003"</s>
{ "answer": "SELECT section FROM table_name_29 WHERE position = \"8th\" AND season = \"2003\"", "context": "CREATE TABLE table_name_29 (section VARCHAR, position VARCHAR, season VARCHAR)", "question": "Tell me the section for position of 8th and season of 2003" }
### QUESTION What is the number of the rank when the time is 2:15.98, in a lane larger than 7? ### CONTEXT CREATE TABLE table_name_55 (rank VARCHAR, time VARCHAR, lane VARCHAR) ### ANSWER SELECT COUNT(rank) FROM table_name_55 WHERE time = "2:15.98" AND lane > 7</s>
{ "answer": "SELECT COUNT(rank) FROM table_name_55 WHERE time = \"2:15.98\" AND lane > 7", "context": "CREATE TABLE table_name_55 (rank VARCHAR, time VARCHAR, lane VARCHAR)", "question": "What is the number of the rank when the time is 2:15.98, in a lane larger than 7?" }
### 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</s>
{ "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 Tell me the average bronze for rank of 43 and total less than 11 ### CONTEXT CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR) ### ANSWER SELECT AVG(bronze) FROM table_name_41 WHERE rank = "43" AND total < 11</s>
{ "answer": "SELECT AVG(bronze) FROM table_name_41 WHERE rank = \"43\" AND total < 11", "context": "CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR)", "question": "Tell me the average bronze for rank of 43 and total less than 11" }
### QUESTION Say the frequency of 1290 khz ### CONTEXT CREATE TABLE table_name_31 (format VARCHAR, frequency VARCHAR) ### ANSWER SELECT format FROM table_name_31 WHERE frequency = "1290 khz"</s>
{ "answer": "SELECT format FROM table_name_31 WHERE frequency = \"1290 khz\"", "context": "CREATE TABLE table_name_31 (format VARCHAR, frequency VARCHAR)", "question": "Say the frequency of 1290 khz" }
### QUESTION Tell me the calls for frequency of 1290 khz ### CONTEXT CREATE TABLE table_name_88 (calls VARCHAR, frequency VARCHAR) ### ANSWER SELECT calls FROM table_name_88 WHERE frequency = "1290 khz"</s>
{ "answer": "SELECT calls FROM table_name_88 WHERE frequency = \"1290 khz\"", "context": "CREATE TABLE table_name_88 (calls VARCHAR, frequency VARCHAR)", "question": "Tell me the calls for frequency of 1290 khz" }
### 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"</s>
{ "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 For how long did Bolivia have a lane greater than 6? ### CONTEXT CREATE TABLE table_name_56 (time VARCHAR, country VARCHAR, lane VARCHAR) ### ANSWER SELECT COUNT(time) FROM table_name_56 WHERE country = "bolivia" AND lane > 6</s>
{ "answer": "SELECT COUNT(time) FROM table_name_56 WHERE country = \"bolivia\" AND lane > 6", "context": "CREATE TABLE table_name_56 (time VARCHAR, country VARCHAR, lane VARCHAR)", "question": "For how long did Bolivia have a lane greater than 6?" }
### QUESTION Which country is ranked 56 overall and has a heat rank smaller than 8? ### CONTEXT CREATE TABLE table_name_72 (country VARCHAR, heat_rank VARCHAR, overall_rank VARCHAR) ### ANSWER SELECT country FROM table_name_72 WHERE heat_rank < 8 AND overall_rank = "56"</s>
{ "answer": "SELECT country FROM table_name_72 WHERE heat_rank < 8 AND overall_rank = \"56\"", "context": "CREATE TABLE table_name_72 (country VARCHAR, heat_rank VARCHAR, overall_rank VARCHAR)", "question": "Which country is ranked 56 overall and has a heat rank smaller than 8?" }
### QUESTION Tell me the highest week for metropolitan stadium for attendance more than 47,644 ### CONTEXT CREATE TABLE table_name_80 (week INTEGER, venue VARCHAR, attendance VARCHAR) ### ANSWER SELECT MAX(week) FROM table_name_80 WHERE venue = "metropolitan stadium" AND attendance > 47 OFFSET 644</s>
{ "answer": "SELECT MAX(week) FROM table_name_80 WHERE venue = \"metropolitan stadium\" AND attendance > 47 OFFSET 644", "context": "CREATE TABLE table_name_80 (week INTEGER, venue VARCHAR, attendance VARCHAR)", "question": "Tell me the highest week for metropolitan stadium for attendance more than 47,644" }
### QUESTION Which player plays forward and is from Kentucky? ### CONTEXT CREATE TABLE table_name_43 (player VARCHAR, position VARCHAR, school_country VARCHAR) ### ANSWER SELECT player FROM table_name_43 WHERE position = "forward" AND school_country = "kentucky"</s>
{ "answer": "SELECT player FROM table_name_43 WHERE position = \"forward\" AND school_country = \"kentucky\"", "context": "CREATE TABLE table_name_43 (player VARCHAR, position VARCHAR, school_country VARCHAR)", "question": "Which player plays forward and is from Kentucky?" }
### QUESTION Whats the highest Promotions that has a Team of Pallacanestro Messina, along with Relegations larger than 0? ### CONTEXT CREATE TABLE table_name_43 (promotions INTEGER, team VARCHAR, relegations VARCHAR) ### ANSWER SELECT MAX(promotions) FROM table_name_43 WHERE team = "pallacanestro messina" AND relegations > 0</s>
{ "answer": "SELECT MAX(promotions) FROM table_name_43 WHERE team = \"pallacanestro messina\" AND relegations > 0", "context": "CREATE TABLE table_name_43 (promotions INTEGER, team VARCHAR, relegations VARCHAR)", "question": "Whats the highest Promotions that has a Team of Pallacanestro Messina, along with Relegations larger than 0?" }
### QUESTION What are the average points with a Chassis of zakspeed 881? ### CONTEXT CREATE TABLE table_name_40 (points INTEGER, chassis VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_40 WHERE chassis = "zakspeed 881"</s>
{ "answer": "SELECT AVG(points) FROM table_name_40 WHERE chassis = \"zakspeed 881\"", "context": "CREATE TABLE table_name_40 (points INTEGER, chassis VARCHAR)", "question": "What are the average points with a Chassis of zakspeed 881?" }
### QUESTION What year was Hazel Grove the constituent for the liberal party? ### CONTEXT CREATE TABLE table_name_15 (year VARCHAR, party VARCHAR, constituency VARCHAR) ### ANSWER SELECT year FROM table_name_15 WHERE party = "liberal" AND constituency = "hazel grove"</s>
{ "answer": "SELECT year FROM table_name_15 WHERE party = \"liberal\" AND constituency = \"hazel grove\"", "context": "CREATE TABLE table_name_15 (year VARCHAR, party VARCHAR, constituency VARCHAR)", "question": "What year was Hazel Grove the constituent for the liberal party?" }
### QUESTION What are the number of days in 1945 where the constituent was heywood and radcliffe? ### CONTEXT CREATE TABLE table_name_18 (days VARCHAR, year VARCHAR, constituency VARCHAR) ### ANSWER SELECT days FROM table_name_18 WHERE year = "1945" AND constituency = "heywood and radcliffe"</s>
{ "answer": "SELECT days FROM table_name_18 WHERE year = \"1945\" AND constituency = \"heywood and radcliffe\"", "context": "CREATE TABLE table_name_18 (days VARCHAR, year VARCHAR, constituency VARCHAR)", "question": "What are the number of days in 1945 where the constituent was heywood and radcliffe?" }
### QUESTION Tell me the average Laps for grid larger than 12 and bikes of ducati 999rs for dean ellison ### CONTEXT CREATE TABLE table_name_74 (laps INTEGER, rider VARCHAR, grid VARCHAR, bike VARCHAR) ### ANSWER SELECT AVG(laps) FROM table_name_74 WHERE grid > 12 AND bike = "ducati 999rs" AND rider = "dean ellison"</s>
{ "answer": "SELECT AVG(laps) FROM table_name_74 WHERE grid > 12 AND bike = \"ducati 999rs\" AND rider = \"dean ellison\"", "context": "CREATE TABLE table_name_74 (laps INTEGER, rider VARCHAR, grid VARCHAR, bike VARCHAR)", "question": "Tell me the average Laps for grid larger than 12 and bikes of ducati 999rs for dean ellison" }
### QUESTION Which Venue has a Sport of baseball, Championships (Years) of 0, a League of milb, florida state league, and a Club of jupiter hammerheads? ### CONTEXT CREATE TABLE table_name_38 (venue VARCHAR, club VARCHAR, league VARCHAR, sport VARCHAR, championships__years_ VARCHAR) ### ANSWER SELECT venue FROM table_name_38 WHERE sport = "baseball" AND championships__years_ = "0" AND league = "milb, florida state league" AND club = "jupiter hammerheads"</s>
{ "answer": "SELECT venue FROM table_name_38 WHERE sport = \"baseball\" AND championships__years_ = \"0\" AND league = \"milb, florida state league\" AND club = \"jupiter hammerheads\"", "context": "CREATE TABLE table_name_38 (venue VARCHAR, club VARCHAR, league VARCHAR, sport VARCHAR, championships__years_ VARCHAR)", "question": "Which Venue has a Sport of baseball, Championships (Years) of 0, a League of milb, florida state league, and a Club of jupiter hammerheads?" }
### QUESTION Which club has a League of american basketball association, and a Venue of tba? ### CONTEXT CREATE TABLE table_name_86 (club VARCHAR, league VARCHAR, venue VARCHAR) ### ANSWER SELECT club FROM table_name_86 WHERE league = "american basketball association" AND venue = "tba"</s>
{ "answer": "SELECT club FROM table_name_86 WHERE league = \"american basketball association\" AND venue = \"tba\"", "context": "CREATE TABLE table_name_86 (club VARCHAR, league VARCHAR, venue VARCHAR)", "question": "Which club has a League of american basketball association, and a Venue of tba?" }
### QUESTION Which name has a Roll of 270? ### CONTEXT CREATE TABLE table_name_97 (name VARCHAR, roll VARCHAR) ### ANSWER SELECT name FROM table_name_97 WHERE roll = 270</s>
{ "answer": "SELECT name FROM table_name_97 WHERE roll = 270", "context": "CREATE TABLE table_name_97 (name VARCHAR, roll VARCHAR)", "question": "Which name has a Roll of 270?" }
### QUESTION Where did Zimbabwe play? ### CONTEXT CREATE TABLE table_name_63 (venue VARCHAR, opponent VARCHAR) ### ANSWER SELECT venue FROM table_name_63 WHERE opponent = "zimbabwe"</s>
{ "answer": "SELECT venue FROM table_name_63 WHERE opponent = \"zimbabwe\"", "context": "CREATE TABLE table_name_63 (venue VARCHAR, opponent VARCHAR)", "question": "Where did Zimbabwe play?" }
### QUESTION How much money did Ian Chamings request? ### CONTEXT CREATE TABLE table_name_78 (money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR) ### ANSWER SELECT money_requested__£_ FROM table_name_78 WHERE entrepreneur_s_ = "ian chamings"</s>
{ "answer": "SELECT money_requested__£_ FROM table_name_78 WHERE entrepreneur_s_ = \"ian chamings\"", "context": "CREATE TABLE table_name_78 (money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)", "question": "How much money did Ian Chamings request?" }
### QUESTION How tall is the Anqing Bridge which opened prior to 2011? ### CONTEXT CREATE TABLE table_name_8 (height_of_bridge_structure VARCHAR, opened VARCHAR, name VARCHAR) ### ANSWER SELECT height_of_bridge_structure FROM table_name_8 WHERE opened < 2011 AND name = "anqing bridge"</s>
{ "answer": "SELECT height_of_bridge_structure FROM table_name_8 WHERE opened < 2011 AND name = \"anqing bridge\"", "context": "CREATE TABLE table_name_8 (height_of_bridge_structure VARCHAR, opened VARCHAR, name VARCHAR)", "question": "How tall is the Anqing Bridge which opened prior to 2011?" }
### QUESTION Who was the home team in the game played at arden street oval? ### CONTEXT CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR) ### ANSWER SELECT home_team AS score FROM table_name_42 WHERE venue = "arden street oval"</s>
{ "answer": "SELECT home_team AS score FROM table_name_42 WHERE venue = \"arden street oval\"", "context": "CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR)", "question": "Who was the home team in the game played at arden street oval?" }
### QUESTION Who drove for Arciero Racing? ### CONTEXT CREATE TABLE table_name_31 (drivers VARCHAR, team VARCHAR) ### ANSWER SELECT drivers FROM table_name_31 WHERE team = "arciero racing"</s>
{ "answer": "SELECT drivers FROM table_name_31 WHERE team = \"arciero racing\"", "context": "CREATE TABLE table_name_31 (drivers VARCHAR, team VARCHAR)", "question": "Who drove for Arciero Racing?" }
### QUESTION How many caps did the player Mile Sterjovski have? ### CONTEXT CREATE TABLE table_name_22 (caps VARCHAR, player VARCHAR) ### ANSWER SELECT caps FROM table_name_22 WHERE player = "mile sterjovski"</s>
{ "answer": "SELECT caps FROM table_name_22 WHERE player = \"mile sterjovski\"", "context": "CREATE TABLE table_name_22 (caps VARCHAR, player VARCHAR)", "question": "How many caps did the player Mile Sterjovski have?" }
### QUESTION Which report includes Bobby Unser as the Pole Position and Rick Mears as the Winning driver? ### CONTEXT CREATE TABLE table_name_33 (report VARCHAR, pole_position VARCHAR, winning_driver VARCHAR) ### ANSWER SELECT report FROM table_name_33 WHERE pole_position = "bobby unser" AND winning_driver = "rick mears"</s>
{ "answer": "SELECT report FROM table_name_33 WHERE pole_position = \"bobby unser\" AND winning_driver = \"rick mears\"", "context": "CREATE TABLE table_name_33 (report VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)", "question": "Which report includes Bobby Unser as the Pole Position and Rick Mears as the Winning driver?" }
### QUESTION Tell me the guns for third-rate ship of the line and rank of vice-admiral with year of 1802 ### CONTEXT CREATE TABLE table_name_63 (guns VARCHAR, year VARCHAR, class VARCHAR, rank VARCHAR) ### ANSWER SELECT guns FROM table_name_63 WHERE class = "third-rate ship of the line" AND rank = "vice-admiral" AND year = "1802"</s>
{ "answer": "SELECT guns FROM table_name_63 WHERE class = \"third-rate ship of the line\" AND rank = \"vice-admiral\" AND year = \"1802\"", "context": "CREATE TABLE table_name_63 (guns VARCHAR, year VARCHAR, class VARCHAR, rank VARCHAR)", "question": "Tell me the guns for third-rate ship of the line and rank of vice-admiral with year of 1802" }
### QUESTION What is Melbourne's home venue? ### CONTEXT CREATE TABLE table_name_32 (venue VARCHAR, home_team VARCHAR) ### ANSWER SELECT venue FROM table_name_32 WHERE home_team = "melbourne"</s>
{ "answer": "SELECT venue FROM table_name_32 WHERE home_team = \"melbourne\"", "context": "CREATE TABLE table_name_32 (venue VARCHAR, home_team VARCHAR)", "question": "What is Melbourne's home venue?" }
### QUESTION In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved? ### CONTEXT CREATE TABLE table_name_67 (fixtures INTEGER, round VARCHAR, clubs_involved VARCHAR) ### ANSWER SELECT SUM(fixtures) FROM table_name_67 WHERE round = "sixth round" AND clubs_involved > 15</s>
{ "answer": "SELECT SUM(fixtures) FROM table_name_67 WHERE round = \"sixth round\" AND clubs_involved > 15", "context": "CREATE TABLE table_name_67 (fixtures INTEGER, round VARCHAR, clubs_involved VARCHAR)", "question": "In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved?" }
### QUESTION What is the Club, when the value for Lost is 9, and when the value for Tries is 55? ### CONTEXT CREATE TABLE table_name_8 (club VARCHAR, lost VARCHAR, tries_for VARCHAR) ### ANSWER SELECT club FROM table_name_8 WHERE lost = "9" AND tries_for = "55"</s>
{ "answer": "SELECT club FROM table_name_8 WHERE lost = \"9\" AND tries_for = \"55\"", "context": "CREATE TABLE table_name_8 (club VARCHAR, lost VARCHAR, tries_for VARCHAR)", "question": "What is the Club, when the value for Lost is 9, and when the value for Tries is 55?" }
### QUESTION Who was the opposing team at the match played at the Arden Street Oval? ### CONTEXT CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR) ### ANSWER SELECT away_team FROM table_name_64 WHERE venue = "arden street oval"</s>
{ "answer": "SELECT away_team FROM table_name_64 WHERE venue = \"arden street oval\"", "context": "CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR)", "question": "Who was the opposing team at the match played at the Arden Street Oval?" }
### QUESTION Tell me the capacity for city park stadium ### CONTEXT CREATE TABLE table_name_15 (capacity VARCHAR, stadium VARCHAR) ### ANSWER SELECT capacity FROM table_name_15 WHERE stadium = "city park stadium"</s>
{ "answer": "SELECT capacity FROM table_name_15 WHERE stadium = \"city park stadium\"", "context": "CREATE TABLE table_name_15 (capacity VARCHAR, stadium VARCHAR)", "question": "Tell me the capacity for city park stadium" }
### QUESTION What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902? ### CONTEXT CREATE TABLE table_name_66 (date_of_birth VARCHAR, begin_date VARCHAR) ### ANSWER SELECT date_of_birth FROM table_name_66 WHERE begin_date = "april 24, 1902"</s>
{ "answer": "SELECT date_of_birth FROM table_name_66 WHERE begin_date = \"april 24, 1902\"", "context": "CREATE TABLE table_name_66 (date_of_birth VARCHAR, begin_date VARCHAR)", "question": "What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902?" }
### QUESTION What category is the nominated work of cecilie, winner of the robert award? ### CONTEXT CREATE TABLE table_name_43 (category VARCHAR, nominated_work VARCHAR, award VARCHAR) ### ANSWER SELECT category FROM table_name_43 WHERE nominated_work = "cecilie" AND award = "robert award"</s>
{ "answer": "SELECT category FROM table_name_43 WHERE nominated_work = \"cecilie\" AND award = \"robert award\"", "context": "CREATE TABLE table_name_43 (category VARCHAR, nominated_work VARCHAR, award VARCHAR)", "question": "What category is the nominated work of cecilie, winner of the robert award?" }
### QUESTION How many losses did Notre Dame have in 1904? ### CONTEXT CREATE TABLE table_name_43 (losses INTEGER, years VARCHAR) ### ANSWER SELECT AVG(losses) FROM table_name_43 WHERE years = "1904"</s>
{ "answer": "SELECT AVG(losses) FROM table_name_43 WHERE years = \"1904\"", "context": "CREATE TABLE table_name_43 (losses INTEGER, years VARCHAR)", "question": "How many losses did Notre Dame have in 1904?" }
### QUESTION How long has Sebastian Telfair played for Toronto? ### CONTEXT CREATE TABLE table_name_83 (years_in_toronto VARCHAR, player VARCHAR) ### ANSWER SELECT years_in_toronto FROM table_name_83 WHERE player = "sebastian telfair"</s>
{ "answer": "SELECT years_in_toronto FROM table_name_83 WHERE player = \"sebastian telfair\"", "context": "CREATE TABLE table_name_83 (years_in_toronto VARCHAR, player VARCHAR)", "question": "How long has Sebastian Telfair played for Toronto?" }
### QUESTION Who is the home captain that played at Edgbaston? ### CONTEXT CREATE TABLE table_name_22 (home_captain VARCHAR, venue VARCHAR) ### ANSWER SELECT home_captain FROM table_name_22 WHERE venue = "edgbaston"</s>
{ "answer": "SELECT home_captain FROM table_name_22 WHERE venue = \"edgbaston\"", "context": "CREATE TABLE table_name_22 (home_captain VARCHAR, venue VARCHAR)", "question": "Who is the home captain that played at Edgbaston?" }