text
stringlengths
146
1.06k
source
dict
### QUESTION In how many districts was the democratic incumbent elected in 1974? ### CONTEXT CREATE TABLE table_1341568_34 (district VARCHAR, party VARCHAR, elected VARCHAR) ### ANSWER SELECT COUNT(district) FROM table_1341568_34 WHERE party = "Democratic" AND elected = 1974
{ "answer": "SELECT COUNT(district) FROM table_1341568_34 WHERE party = \"Democratic\" AND elected = 1974", "context": "CREATE TABLE table_1341568_34 (district VARCHAR, party VARCHAR, elected VARCHAR)", "question": "In how many districts was the democratic incumbent elected in 1974? " }
### QUESTION What is the name of the Count Palatine of the Rhine with a Interregnum began of 2 april 1657 death of ferdinand iii? ### CONTEXT CREATE TABLE table_name_65 (count_palatine_of_the_rhine VARCHAR, interregnum_began VARCHAR) ### ANSWER SELECT count_palatine_of_the_rhine FROM table_name_65 WHERE interregnum_began = "2 april 1657 death of ferdinand iii"
{ "answer": "SELECT count_palatine_of_the_rhine FROM table_name_65 WHERE interregnum_began = \"2 april 1657 death of ferdinand iii\"", "context": "CREATE TABLE table_name_65 (count_palatine_of_the_rhine VARCHAR, interregnum_began VARCHAR)", "question": "What is the name of the Count Palatine of the Rhine with a Interregnum began of 2 april 1657 death of ferdinand iii?" }
### QUESTION Which party does Tom Luken belong to? ### CONTEXT CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR) ### ANSWER SELECT party FROM table_1341577_36 WHERE incumbent = "Tom Luken"
{ "answer": "SELECT party FROM table_1341577_36 WHERE incumbent = \"Tom Luken\"", "context": "CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR)", "question": "Which party does Tom Luken belong to?" }
### QUESTION Who is the incumbent that is listed with the candidates listed as marilyn lloyd (d) 57.4% harold w. coker (r) 42.6%? ### CONTEXT CREATE TABLE table_1341577_43 (incumbent VARCHAR, candidates VARCHAR) ### ANSWER SELECT incumbent FROM table_1341577_43 WHERE candidates = "Marilyn Lloyd (D) 57.4% Harold W. Coker (R) 42.6%"
{ "answer": "SELECT incumbent FROM table_1341577_43 WHERE candidates = \"Marilyn Lloyd (D) 57.4% Harold W. Coker (R) 42.6%\"", "context": "CREATE TABLE table_1341577_43 (incumbent VARCHAR, candidates VARCHAR)", "question": "Who is the incumbent that is listed with the candidates listed as marilyn lloyd (d) 57.4% harold w. coker (r) 42.6%?" }
### QUESTION who is the incumbent with candidates being tom ridge (r) 80.9% joylyn blackwell (d) 19.1% ### CONTEXT CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR) ### ANSWER SELECT incumbent FROM table_1341586_39 WHERE candidates = "Tom Ridge (R) 80.9% Joylyn Blackwell (D) 19.1%"
{ "answer": "SELECT incumbent FROM table_1341586_39 WHERE candidates = \"Tom Ridge (R) 80.9% Joylyn Blackwell (D) 19.1%\"", "context": "CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR)", "question": "who is the incumbent with candidates being tom ridge (r) 80.9% joylyn blackwell (d) 19.1%" }
### QUESTION what's the result with candidates being billy tauzin (d) unopposed ### CONTEXT CREATE TABLE table_1341586_19 (result VARCHAR, candidates VARCHAR) ### ANSWER SELECT result FROM table_1341586_19 WHERE candidates = "Billy Tauzin (D) Unopposed"
{ "answer": "SELECT result FROM table_1341586_19 WHERE candidates = \"Billy Tauzin (D) Unopposed\"", "context": "CREATE TABLE table_1341586_19 (result VARCHAR, candidates VARCHAR)", "question": "what's the result with candidates being billy tauzin (d) unopposed" }
### QUESTION What network has lap-by-laps by Bill Flemming, and Pit reporter Chris Economaki? ### CONTEXT CREATE TABLE table_name_47 (network VARCHAR, lap_by_lap VARCHAR, pit_reporters VARCHAR) ### ANSWER SELECT network FROM table_name_47 WHERE lap_by_lap = "bill flemming" AND pit_reporters = "chris economaki"
{ "answer": "SELECT network FROM table_name_47 WHERE lap_by_lap = \"bill flemming\" AND pit_reporters = \"chris economaki\"", "context": "CREATE TABLE table_name_47 (network VARCHAR, lap_by_lap VARCHAR, pit_reporters VARCHAR)", "question": "What network has lap-by-laps by Bill Flemming, and Pit reporter Chris Economaki?" }
### QUESTION What is the lowest Grid with fewer than 65 Laps and with Driver Tim Schenken? ### CONTEXT CREATE TABLE table_name_32 (grid INTEGER, laps VARCHAR, driver VARCHAR) ### ANSWER SELECT MIN(grid) FROM table_name_32 WHERE laps < 65 AND driver = "tim schenken"
{ "answer": "SELECT MIN(grid) FROM table_name_32 WHERE laps < 65 AND driver = \"tim schenken\"", "context": "CREATE TABLE table_name_32 (grid INTEGER, laps VARCHAR, driver VARCHAR)", "question": "What is the lowest Grid with fewer than 65 Laps and with Driver Tim Schenken?" }
### QUESTION What is Driver Howden Ganley's Time/Retired? ### CONTEXT CREATE TABLE table_name_75 (time_retired VARCHAR, driver VARCHAR) ### ANSWER SELECT time_retired FROM table_name_75 WHERE driver = "howden ganley"
{ "answer": "SELECT time_retired FROM table_name_75 WHERE driver = \"howden ganley\"", "context": "CREATE TABLE table_name_75 (time_retired VARCHAR, driver VARCHAR)", "question": "What is Driver Howden Ganley's Time/Retired?" }
### QUESTION What position for the western michigan product picked ahead of 312? ### CONTEXT CREATE TABLE table_name_16 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR) ### ANSWER SELECT position FROM table_name_16 WHERE pick < 312 AND school_club_team = "western michigan"
{ "answer": "SELECT position FROM table_name_16 WHERE pick < 312 AND school_club_team = \"western michigan\"", "context": "CREATE TABLE table_name_16 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)", "question": "What position for the western michigan product picked ahead of 312?" }
### QUESTION What date did the Chicago Bears beat the Green bay Packers 31-20? ### CONTEXT CREATE TABLE table_name_32 (date VARCHAR, loser VARCHAR, location VARCHAR) ### ANSWER SELECT date FROM table_name_32 WHERE loser = "green bay packers" AND location = "green bay"
{ "answer": "SELECT date FROM table_name_32 WHERE loser = \"green bay packers\" AND location = \"green bay\"", "context": "CREATE TABLE table_name_32 (date VARCHAR, loser VARCHAR, location VARCHAR)", "question": "What date did the Chicago Bears beat the Green bay Packers 31-20?" }
### QUESTION Who's the incumbent of the Louisiana 1 district? ### CONTEXT CREATE TABLE table_1341604_19 (incumbent VARCHAR, district VARCHAR) ### ANSWER SELECT incumbent FROM table_1341604_19 WHERE district = "Louisiana 1"
{ "answer": "SELECT incumbent FROM table_1341604_19 WHERE district = \"Louisiana 1\"", "context": "CREATE TABLE table_1341604_19 (incumbent VARCHAR, district VARCHAR)", "question": "Who's the incumbent of the Louisiana 1 district?" }
### QUESTION what's the incumbent with district being massachusetts 2 ### CONTEXT CREATE TABLE table_1341604_22 (incumbent VARCHAR, district VARCHAR) ### ANSWER SELECT incumbent FROM table_1341604_22 WHERE district = "Massachusetts 2"
{ "answer": "SELECT incumbent FROM table_1341604_22 WHERE district = \"Massachusetts 2\"", "context": "CREATE TABLE table_1341604_22 (incumbent VARCHAR, district VARCHAR)", "question": "what's the incumbent with district being massachusetts 2" }
### QUESTION Which HQ is associated with a number of employees of 100? ### CONTEXT CREATE TABLE table_name_23 (headquarters VARCHAR, employees__world_ VARCHAR) ### ANSWER SELECT headquarters FROM table_name_23 WHERE employees__world_ = 100
{ "answer": "SELECT headquarters FROM table_name_23 WHERE employees__world_ = 100", "context": "CREATE TABLE table_name_23 (headquarters VARCHAR, employees__world_ VARCHAR)", "question": "Which HQ is associated with a number of employees of 100?" }
### QUESTION What is the right ascension (J2000) with a Declination (J2000) of °12′43″, is a constellation of dorado, and has an NGC number larger than 2068? ### CONTEXT CREATE TABLE table_name_55 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, ngc_number VARCHAR, constellation VARCHAR) ### ANSWER SELECT right_ascension___j2000__ FROM table_name_55 WHERE ngc_number > 2068 AND constellation = "dorado" AND declination___j2000__ = "°12′43″"
{ "answer": "SELECT right_ascension___j2000__ FROM table_name_55 WHERE ngc_number > 2068 AND constellation = \"dorado\" AND declination___j2000__ = \"°12′43″\"", "context": "CREATE TABLE table_name_55 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, ngc_number VARCHAR, constellation VARCHAR)", "question": "What is the right ascension (J2000) with a Declination (J2000) of °12′43″, is a constellation of dorado, and has an NGC number larger than 2068?" }
### QUESTION What was the incumbent for missouri 1? ### CONTEXT CREATE TABLE table_1341640_26 (incumbent VARCHAR, district VARCHAR) ### ANSWER SELECT incumbent FROM table_1341640_26 WHERE district = "Missouri 1"
{ "answer": "SELECT incumbent FROM table_1341640_26 WHERE district = \"Missouri 1\"", "context": "CREATE TABLE table_1341640_26 (incumbent VARCHAR, district VARCHAR)", "question": "What was the incumbent for missouri 1?" }
### QUESTION What year was incumbent phil crane first elected? ### CONTEXT CREATE TABLE table_1341640_14 (first_elected VARCHAR, incumbent VARCHAR) ### ANSWER SELECT first_elected FROM table_1341640_14 WHERE incumbent = "Phil Crane"
{ "answer": "SELECT first_elected FROM table_1341640_14 WHERE incumbent = \"Phil Crane\"", "context": "CREATE TABLE table_1341640_14 (first_elected VARCHAR, incumbent VARCHAR)", "question": "What year was incumbent phil crane first elected?" }
### QUESTION What district did the Democratic party incumbent Stephen J. Solarz get first elected to in 1974? ### CONTEXT CREATE TABLE table_1341663_33 (district VARCHAR, incumbent VARCHAR, party VARCHAR, first_elected VARCHAR) ### ANSWER SELECT district FROM table_1341663_33 WHERE party = "Democratic" AND first_elected = 1974 AND incumbent = "Stephen J. Solarz"
{ "answer": "SELECT district FROM table_1341663_33 WHERE party = \"Democratic\" AND first_elected = 1974 AND incumbent = \"Stephen J. Solarz\"", "context": "CREATE TABLE table_1341663_33 (district VARCHAR, incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)", "question": "What district did the Democratic party incumbent Stephen J. Solarz get first elected to in 1974?" }
### QUESTION What is the general classification for a mountains value of Christophe Moreau and a Team winner of Team CSC? ### CONTEXT CREATE TABLE table_name_94 (general_classification VARCHAR, mountains_classification VARCHAR, team_classification VARCHAR) ### ANSWER SELECT general_classification FROM table_name_94 WHERE mountains_classification = "christophe moreau" AND team_classification = "team csc"
{ "answer": "SELECT general_classification FROM table_name_94 WHERE mountains_classification = \"christophe moreau\" AND team_classification = \"team csc\"", "context": "CREATE TABLE table_name_94 (general_classification VARCHAR, mountains_classification VARCHAR, team_classification VARCHAR)", "question": "What is the general classification for a mountains value of Christophe Moreau and a Team winner of Team CSC?" }
### QUESTION What is the name of the race won by driver Carlos Reutemann? ### CONTEXT CREATE TABLE table_name_72 (race_name VARCHAR, winning_driver VARCHAR) ### ANSWER SELECT race_name FROM table_name_72 WHERE winning_driver = "carlos reutemann"
{ "answer": "SELECT race_name FROM table_name_72 WHERE winning_driver = \"carlos reutemann\"", "context": "CREATE TABLE table_name_72 (race_name VARCHAR, winning_driver VARCHAR)", "question": "What is the name of the race won by driver Carlos Reutemann?" }
### QUESTION what is the result where the candidates is robert l. f. sikes (d) unopposed? ### CONTEXT CREATE TABLE table_1341672_10 (result VARCHAR, candidates VARCHAR) ### ANSWER SELECT result FROM table_1341672_10 WHERE candidates = "Robert L. F. Sikes (D) Unopposed"
{ "answer": "SELECT result FROM table_1341672_10 WHERE candidates = \"Robert L. F. Sikes (D) Unopposed\"", "context": "CREATE TABLE table_1341672_10 (result VARCHAR, candidates VARCHAR)", "question": "what is the result where the candidates is robert l. f. sikes (d) unopposed?" }
### QUESTION who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed? ### CONTEXT CREATE TABLE table_1341672_10 (incumbent VARCHAR, candidates VARCHAR) ### ANSWER SELECT incumbent FROM table_1341672_10 WHERE candidates = "William V. Chappell, Jr. (D) Unopposed"
{ "answer": "SELECT incumbent FROM table_1341672_10 WHERE candidates = \"William V. Chappell, Jr. (D) Unopposed\"", "context": "CREATE TABLE table_1341672_10 (incumbent VARCHAR, candidates VARCHAR)", "question": "who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed?" }
### QUESTION What year was Otto Passman (d) unopposed first elected? ### CONTEXT CREATE TABLE table_1341690_18 (first_elected INTEGER, candidates VARCHAR) ### ANSWER SELECT MAX(first_elected) FROM table_1341690_18 WHERE candidates = "Otto Passman (D) Unopposed"
{ "answer": "SELECT MAX(first_elected) FROM table_1341690_18 WHERE candidates = \"Otto Passman (D) Unopposed\"", "context": "CREATE TABLE table_1341690_18 (first_elected INTEGER, candidates VARCHAR)", "question": "What year was Otto Passman (d) unopposed first elected?" }
### QUESTION Name the incumbent for district texas 12 ### CONTEXT CREATE TABLE table_1341690_43 (incumbent VARCHAR, district VARCHAR) ### ANSWER SELECT incumbent FROM table_1341690_43 WHERE district = "Texas 12"
{ "answer": "SELECT incumbent FROM table_1341690_43 WHERE district = \"Texas 12\"", "context": "CREATE TABLE table_1341690_43 (incumbent VARCHAR, district VARCHAR)", "question": "Name the incumbent for district texas 12" }
### QUESTION what is the city with the height (ft) more than 328.1, rank higher than 56, a height (m) of 103 and floors less than 28? ### CONTEXT CREATE TABLE table_name_14 (city VARCHAR, floors VARCHAR, height__m_ VARCHAR, height__ft_ VARCHAR, rank VARCHAR) ### ANSWER SELECT city FROM table_name_14 WHERE height__ft_ > 328.1 AND rank > 56 AND height__m_ = 103 AND floors < 28
{ "answer": "SELECT city FROM table_name_14 WHERE height__ft_ > 328.1 AND rank > 56 AND height__m_ = 103 AND floors < 28", "context": "CREATE TABLE table_name_14 (city VARCHAR, floors VARCHAR, height__m_ VARCHAR, height__ft_ VARCHAR, rank VARCHAR)", "question": "what is the city with the height (ft) more than 328.1, rank higher than 56, a height (m) of 103 and floors less than 28?" }
### QUESTION How many instances are there of party in the situation where Robert Bauman is the incumbent politician? ### CONTEXT CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR) ### ANSWER SELECT COUNT(party) FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
{ "answer": "SELECT COUNT(party) FROM table_1341690_20 WHERE incumbent = \"Robert Bauman\"", "context": "CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR)", "question": "How many instances are there of party in the situation where Robert Bauman is the incumbent politician?" }
### QUESTION What club is R. H. C. Human who has a right arm medium pace bowling style a member of? ### CONTEXT CREATE TABLE table_name_41 (club VARCHAR, bowling_style VARCHAR, name VARCHAR) ### ANSWER SELECT club FROM table_name_41 WHERE bowling_style = "right arm medium pace" AND name = "r. h. c. human"
{ "answer": "SELECT club FROM table_name_41 WHERE bowling_style = \"right arm medium pace\" AND name = \"r. h. c. human\"", "context": "CREATE TABLE table_name_41 (club VARCHAR, bowling_style VARCHAR, name VARCHAR)", "question": "What club is R. H. C. Human who has a right arm medium pace bowling style a member of?" }
### QUESTION What is the tally in Kilkenny county with 10 as the total and opposition of Waterford? ### CONTEXT CREATE TABLE table_name_44 (tally VARCHAR, opposition VARCHAR, county VARCHAR, total VARCHAR) ### ANSWER SELECT tally FROM table_name_44 WHERE county = "kilkenny" AND total = 10 AND opposition = "waterford"
{ "answer": "SELECT tally FROM table_name_44 WHERE county = \"kilkenny\" AND total = 10 AND opposition = \"waterford\"", "context": "CREATE TABLE table_name_44 (tally VARCHAR, opposition VARCHAR, county VARCHAR, total VARCHAR)", "question": "What is the tally in Kilkenny county with 10 as the total and opposition of Waterford?" }
### QUESTION who is the driver with the engine era 1.5 l6 s and the chassis is era b? ### CONTEXT CREATE TABLE table_name_17 (driver VARCHAR, engine VARCHAR, chassis VARCHAR) ### ANSWER SELECT driver FROM table_name_17 WHERE engine = "era 1.5 l6 s" AND chassis = "era b"
{ "answer": "SELECT driver FROM table_name_17 WHERE engine = \"era 1.5 l6 s\" AND chassis = \"era b\"", "context": "CREATE TABLE table_name_17 (driver VARCHAR, engine VARCHAR, chassis VARCHAR)", "question": "who is the driver with the engine era 1.5 l6 s and the chassis is era b?" }
### QUESTION How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed? ### CONTEXT CREATE TABLE table_1341690_9 (incumbent VARCHAR, candidates VARCHAR) ### ANSWER SELECT COUNT(incumbent) FROM table_1341690_9 WHERE candidates = "Sam M. Gibbons (D) Unopposed"
{ "answer": "SELECT COUNT(incumbent) FROM table_1341690_9 WHERE candidates = \"Sam M. Gibbons (D) Unopposed\"", "context": "CREATE TABLE table_1341690_9 (incumbent VARCHAR, candidates VARCHAR)", "question": "How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed?" }
### QUESTION who is the constructor when the tyre is d, the engine is talbot 23cv 4.5 l6, the chassis is talbot-lago t26c and the entrant is ecurie belge? ### CONTEXT CREATE TABLE table_name_75 (constructor VARCHAR, entrant VARCHAR, chassis VARCHAR, tyre VARCHAR, engine VARCHAR) ### ANSWER SELECT constructor FROM table_name_75 WHERE tyre = "d" AND engine = "talbot 23cv 4.5 l6" AND chassis = "talbot-lago t26c" AND entrant = "ecurie belge"
{ "answer": "SELECT constructor FROM table_name_75 WHERE tyre = \"d\" AND engine = \"talbot 23cv 4.5 l6\" AND chassis = \"talbot-lago t26c\" AND entrant = \"ecurie belge\"", "context": "CREATE TABLE table_name_75 (constructor VARCHAR, entrant VARCHAR, chassis VARCHAR, tyre VARCHAR, engine VARCHAR)", "question": "who is the constructor when the tyre is d, the engine is talbot 23cv 4.5 l6, the chassis is talbot-lago t26c and the entrant is ecurie belge?" }
### QUESTION When was the first elected when the party was republican and the candidate were robert h. michel (r) 66.1% rosa lee fox (d) 33.9%? ### CONTEXT CREATE TABLE table_1341718_14 (first_elected INTEGER, party VARCHAR, candidates VARCHAR) ### ANSWER SELECT MIN(first_elected) FROM table_1341718_14 WHERE party = "Republican" AND candidates = "Robert H. Michel (R) 66.1% Rosa Lee Fox (D) 33.9%"
{ "answer": "SELECT MIN(first_elected) FROM table_1341718_14 WHERE party = \"Republican\" AND candidates = \"Robert H. Michel (R) 66.1% Rosa Lee Fox (D) 33.9%\"", "context": "CREATE TABLE table_1341718_14 (first_elected INTEGER, party VARCHAR, candidates VARCHAR)", "question": "When was the first elected when the party was republican and the candidate were robert h. michel (r) 66.1% rosa lee fox (d) 33.9%?" }
### QUESTION What party does incumbent edwin reinecke represent? ### CONTEXT CREATE TABLE table_1341738_6 (party VARCHAR, incumbent VARCHAR) ### ANSWER SELECT party FROM table_1341738_6 WHERE incumbent = "Edwin Reinecke"
{ "answer": "SELECT party FROM table_1341738_6 WHERE incumbent = \"Edwin Reinecke\"", "context": "CREATE TABLE table_1341738_6 (party VARCHAR, incumbent VARCHAR)", "question": "What party does incumbent edwin reinecke represent?" }
### QUESTION Who was featured in the election of charles edward bennett redistricted from 2nd? ### CONTEXT CREATE TABLE table_1341843_10 (candidates VARCHAR, incumbent VARCHAR) ### ANSWER SELECT candidates FROM table_1341843_10 WHERE incumbent = "Charles Edward Bennett Redistricted from 2nd"
{ "answer": "SELECT candidates FROM table_1341843_10 WHERE incumbent = \"Charles Edward Bennett Redistricted from 2nd\"", "context": "CREATE TABLE table_1341843_10 (candidates VARCHAR, incumbent VARCHAR)", "question": "Who was featured in the election of charles edward bennett redistricted from 2nd?" }
### QUESTION Which Model has a GCM (kg) Technical Capacity of 35000, a GVM (kg) Technical Capacity of 16000, and Cummins Interact 6.0-euro III (turbo intercooler) for the Engine? ### CONTEXT CREATE TABLE table_name_94 (model VARCHAR, engine_make_capacity VARCHAR, gcm__kg__technical_capacity VARCHAR, gvm__kg__technical_capacity VARCHAR) ### ANSWER SELECT model FROM table_name_94 WHERE gcm__kg__technical_capacity = "35000" AND gvm__kg__technical_capacity = "16000" AND engine_make_capacity = "cummins interact 6.0-euro iii (turbo intercooler)"
{ "answer": "SELECT model FROM table_name_94 WHERE gcm__kg__technical_capacity = \"35000\" AND gvm__kg__technical_capacity = \"16000\" AND engine_make_capacity = \"cummins interact 6.0-euro iii (turbo intercooler)\"", "context": "CREATE TABLE table_name_94 (model VARCHAR, engine_make_capacity VARCHAR, gcm__kg__technical_capacity VARCHAR, gvm__kg__technical_capacity VARCHAR)", "question": "Which Model has a GCM (kg) Technical Capacity of 35000, a GVM (kg) Technical Capacity of 16000, and Cummins Interact 6.0-euro III (turbo intercooler) for the Engine?" }
### QUESTION What party did Don Fuqua belong to? ### CONTEXT CREATE TABLE table_1341865_11 (party VARCHAR, incumbent VARCHAR) ### ANSWER SELECT party FROM table_1341865_11 WHERE incumbent = "Don Fuqua"
{ "answer": "SELECT party FROM table_1341865_11 WHERE incumbent = \"Don Fuqua\"", "context": "CREATE TABLE table_1341865_11 (party VARCHAR, incumbent VARCHAR)", "question": "What party did Don Fuqua belong to?" }
### QUESTION Name the candidates for massachusetts 8 ### CONTEXT CREATE TABLE table_1341884_23 (candidates VARCHAR, district VARCHAR) ### ANSWER SELECT candidates FROM table_1341884_23 WHERE district = "Massachusetts 8"
{ "answer": "SELECT candidates FROM table_1341884_23 WHERE district = \"Massachusetts 8\"", "context": "CREATE TABLE table_1341884_23 (candidates VARCHAR, district VARCHAR)", "question": "Name the candidates for massachusetts 8" }
### QUESTION For End of Fiscal Years past 1980 that also have as % of GDP Low-High of 83.4-84.4, and a Debt Held By Public ($Billions) smaller than 7,552 what would be the average Gross Debt in $Billions undeflated Treas. in said years? ### CONTEXT CREATE TABLE table_name_1 (gross_debt_in_ INTEGER, debt_held_by_public__$billions_ VARCHAR, end_of_fiscal_year VARCHAR, as__percentage_of_gdp_low_high VARCHAR) ### ANSWER SELECT AVG(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_1 WHERE end_of_fiscal_year > 1980 AND as__percentage_of_gdp_low_high = "83.4-84.4" AND debt_held_by_public__$billions_ < 7 OFFSET 552
{ "answer": "SELECT AVG(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_1 WHERE end_of_fiscal_year > 1980 AND as__percentage_of_gdp_low_high = \"83.4-84.4\" AND debt_held_by_public__$billions_ < 7 OFFSET 552", "context": "CREATE TABLE table_name_1 (gross_debt_in_ INTEGER, debt_held_by_public__$billions_ VARCHAR, end_of_fiscal_year VARCHAR, as__percentage_of_gdp_low_high VARCHAR)", "question": "For End of Fiscal Years past 1980 that also have as % of GDP Low-High of 83.4-84.4, and a Debt Held By Public ($Billions) smaller than 7,552 what would be the average Gross Debt in $Billions undeflated Treas. in said years?" }
### QUESTION For End of Fiscal Year(s) with a Debt Held By Public ($Billions) larger than 236.8, and as % of GDP Low-High of 33.4 what is the sum of the number of Gross Debt in $Billions undeflated Treas.? ### CONTEXT CREATE TABLE table_name_11 (gross_debt_in_ VARCHAR, debt_held_by_public__$billions_ VARCHAR, as__percentage_of_gdp_low_high VARCHAR) ### ANSWER SELECT COUNT(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_11 WHERE debt_held_by_public__$billions_ > 236.8 AND as__percentage_of_gdp_low_high = "33.4"
{ "answer": "SELECT COUNT(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_11 WHERE debt_held_by_public__$billions_ > 236.8 AND as__percentage_of_gdp_low_high = \"33.4\"", "context": "CREATE TABLE table_name_11 (gross_debt_in_ VARCHAR, debt_held_by_public__$billions_ VARCHAR, as__percentage_of_gdp_low_high VARCHAR)", "question": "For End of Fiscal Year(s) with a Debt Held By Public ($Billions) larger than 236.8, and as % of GDP Low-High of 33.4 what is the sum of the number of Gross Debt in $Billions undeflated Treas.?" }
### QUESTION What is the nationality of the player who played for the Peterborough Petes (OHL)? ### CONTEXT CREATE TABLE table_name_6 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### ANSWER SELECT nationality FROM table_name_6 WHERE college_junior_club_team__league_ = "peterborough petes (ohl)"
{ "answer": "SELECT nationality FROM table_name_6 WHERE college_junior_club_team__league_ = \"peterborough petes (ohl)\"", "context": "CREATE TABLE table_name_6 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)", "question": "What is the nationality of the player who played for the Peterborough Petes (OHL)?" }
### QUESTION Which round was Mike Peca (C) of Canada selected in? ### CONTEXT CREATE TABLE table_name_84 (round INTEGER, nationality VARCHAR, player VARCHAR) ### ANSWER SELECT SUM(round) FROM table_name_84 WHERE nationality = "canada" AND player = "mike peca (c)"
{ "answer": "SELECT SUM(round) FROM table_name_84 WHERE nationality = \"canada\" AND player = \"mike peca (c)\"", "context": "CREATE TABLE table_name_84 (round INTEGER, nationality VARCHAR, player VARCHAR)", "question": "Which round was Mike Peca (C) of Canada selected in?" }
### QUESTION What district featured an election between james a. byrne (d) 59.3% joseph r. burns (r) 40.7%? ### CONTEXT CREATE TABLE table_1341884_40 (district VARCHAR, candidates VARCHAR) ### ANSWER SELECT district FROM table_1341884_40 WHERE candidates = "James A. Byrne (D) 59.3% Joseph R. Burns (R) 40.7%"
{ "answer": "SELECT district FROM table_1341884_40 WHERE candidates = \"James A. Byrne (D) 59.3% Joseph R. Burns (R) 40.7%\"", "context": "CREATE TABLE table_1341884_40 (district VARCHAR, candidates VARCHAR)", "question": "What district featured an election between james a. byrne (d) 59.3% joseph r. burns (r) 40.7%?" }
### QUESTION What is the most laps for Ayrton Senna? ### CONTEXT CREATE TABLE table_name_6 (laps INTEGER, driver VARCHAR) ### ANSWER SELECT MAX(laps) FROM table_name_6 WHERE driver = "ayrton senna"
{ "answer": "SELECT MAX(laps) FROM table_name_6 WHERE driver = \"ayrton senna\"", "context": "CREATE TABLE table_name_6 (laps INTEGER, driver VARCHAR)", "question": "What is the most laps for Ayrton Senna?" }
### QUESTION what was the score of the parallel bars with a floor exercise score more than 9.137, vault more than 9.5 and horizontal bar of 9.225? ### CONTEXT CREATE TABLE table_name_87 (parallel_bars INTEGER, vault VARCHAR, floor_exercise VARCHAR, horizontal_bar VARCHAR) ### ANSWER SELECT SUM(parallel_bars) FROM table_name_87 WHERE floor_exercise > 9.137 AND horizontal_bar = 9.225 AND vault > 9.5
{ "answer": "SELECT SUM(parallel_bars) FROM table_name_87 WHERE floor_exercise > 9.137 AND horizontal_bar = 9.225 AND vault > 9.5", "context": "CREATE TABLE table_name_87 (parallel_bars INTEGER, vault VARCHAR, floor_exercise VARCHAR, horizontal_bar VARCHAR)", "question": "what was the score of the parallel bars with a floor exercise score more than 9.137, vault more than 9.5 and horizontal bar of 9.225?" }
### QUESTION Which venue was used on 10 september 2010? ### CONTEXT CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR) ### ANSWER SELECT venue FROM table_name_28 WHERE date = "10 september 2010"
{ "answer": "SELECT venue FROM table_name_28 WHERE date = \"10 september 2010\"", "context": "CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR)", "question": "Which venue was used on 10 september 2010?" }
### QUESTION What was the longest carry for kevin clemens with under 31 yards total? ### CONTEXT CREATE TABLE table_name_72 (long INTEGER, player VARCHAR, yards VARCHAR) ### ANSWER SELECT MAX(long) FROM table_name_72 WHERE player = "kevin clemens" AND yards < 31
{ "answer": "SELECT MAX(long) FROM table_name_72 WHERE player = \"kevin clemens\" AND yards < 31", "context": "CREATE TABLE table_name_72 (long INTEGER, player VARCHAR, yards VARCHAR)", "question": "What was the longest carry for kevin clemens with under 31 yards total?" }
### QUESTION What's the First Day Cover Cancellation with Denomination of $0.50 and Date of Issue as 13 June 2005? ### CONTEXT CREATE TABLE table_name_68 (first_day_cover_cancellation VARCHAR, denomination VARCHAR, date_of_issue VARCHAR) ### ANSWER SELECT first_day_cover_cancellation FROM table_name_68 WHERE denomination = "$0.50" AND date_of_issue = "13 june 2005"
{ "answer": "SELECT first_day_cover_cancellation FROM table_name_68 WHERE denomination = \"$0.50\" AND date_of_issue = \"13 june 2005\"", "context": "CREATE TABLE table_name_68 (first_day_cover_cancellation VARCHAR, denomination VARCHAR, date_of_issue VARCHAR)", "question": "What's the First Day Cover Cancellation with Denomination of $0.50 and Date of Issue as 13 June 2005?" }
### QUESTION What's the Denomination listed for the Date of Issue 12 April 2005? ### CONTEXT CREATE TABLE table_name_88 (denomination VARCHAR, date_of_issue VARCHAR) ### ANSWER SELECT denomination FROM table_name_88 WHERE date_of_issue = "12 april 2005"
{ "answer": "SELECT denomination FROM table_name_88 WHERE date_of_issue = \"12 april 2005\"", "context": "CREATE TABLE table_name_88 (denomination VARCHAR, date_of_issue VARCHAR)", "question": "What's the Denomination listed for the Date of Issue 12 April 2005?" }
### QUESTION Who is the candidate that was first elected in 1914? ### CONTEXT CREATE TABLE table_1341973_11 (candidates VARCHAR, first_elected VARCHAR) ### ANSWER SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914
{ "answer": "SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914", "context": "CREATE TABLE table_1341973_11 (candidates VARCHAR, first_elected VARCHAR)", "question": "Who is the candidate that was first elected in 1914?" }
### QUESTION What was the date when Steffi Graf was the opponent in the final and the score was 2–6, 0–6? ### CONTEXT CREATE TABLE table_name_49 (date VARCHAR, opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) ### ANSWER SELECT date FROM table_name_49 WHERE opponent_in_the_final = "steffi graf" AND score_in_the_final = "2–6, 0–6"
{ "answer": "SELECT date FROM table_name_49 WHERE opponent_in_the_final = \"steffi graf\" AND score_in_the_final = \"2–6, 0–6\"", "context": "CREATE TABLE table_name_49 (date VARCHAR, opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)", "question": "What was the date when Steffi Graf was the opponent in the final and the score was 2–6, 0–6?" }
### QUESTION What was the outcome of the Tournament of lugano , switzerland wta virginia slims, against bonnie gadusek? ### CONTEXT CREATE TABLE table_name_68 (outcome VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR) ### ANSWER SELECT outcome FROM table_name_68 WHERE tournament = "lugano , switzerland wta virginia slims" AND opponent_in_the_final = "bonnie gadusek"
{ "answer": "SELECT outcome FROM table_name_68 WHERE tournament = \"lugano , switzerland wta virginia slims\" AND opponent_in_the_final = \"bonnie gadusek\"", "context": "CREATE TABLE table_name_68 (outcome VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)", "question": "What was the outcome of the Tournament of lugano , switzerland wta virginia slims, against bonnie gadusek?" }
### QUESTION What is the outcome of the match against Sylvia Hanika on a hard (i) surface? ### CONTEXT CREATE TABLE table_name_75 (outcome VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR) ### ANSWER SELECT outcome FROM table_name_75 WHERE opponent_in_the_final = "sylvia hanika" AND surface = "hard (i)"
{ "answer": "SELECT outcome FROM table_name_75 WHERE opponent_in_the_final = \"sylvia hanika\" AND surface = \"hard (i)\"", "context": "CREATE TABLE table_name_75 (outcome VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR)", "question": "What is the outcome of the match against Sylvia Hanika on a hard (i) surface?" }
### QUESTION What type is the sorrento to sapri course with a distance of km (mi)? ### CONTEXT CREATE TABLE table_name_23 (type VARCHAR, distance VARCHAR, course VARCHAR) ### ANSWER SELECT type FROM table_name_23 WHERE distance = "km (mi)" AND course = "sorrento to sapri"
{ "answer": "SELECT type FROM table_name_23 WHERE distance = \"km (mi)\" AND course = \"sorrento to sapri\"", "context": "CREATE TABLE table_name_23 (type VARCHAR, distance VARCHAR, course VARCHAR)", "question": "What type is the sorrento to sapri course with a distance of km (mi)?" }
### QUESTION how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5% ### CONTEXT CREATE TABLE table_1342013_34 (party VARCHAR, candidates VARCHAR) ### ANSWER SELECT COUNT(party) FROM table_1342013_34 WHERE candidates = "John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%"
{ "answer": "SELECT COUNT(party) FROM table_1342013_34 WHERE candidates = \"John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%\"", "context": "CREATE TABLE table_1342013_34 (party VARCHAR, candidates VARCHAR)", "question": " how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%" }
### QUESTION What was the home team's score when Geelong was the away team? ### CONTEXT CREATE TABLE table_name_1 (home_team VARCHAR, away_team VARCHAR) ### ANSWER SELECT home_team AS score FROM table_name_1 WHERE away_team = "geelong"
{ "answer": "SELECT home_team AS score FROM table_name_1 WHERE away_team = \"geelong\"", "context": "CREATE TABLE table_name_1 (home_team VARCHAR, away_team VARCHAR)", "question": "What was the home team's score when Geelong was the away team?" }
### QUESTION how many first elected with incumbent being charles edward bennett ### CONTEXT CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR) ### ANSWER SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = "Charles Edward Bennett"
{ "answer": "SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = \"Charles Edward Bennett\"", "context": "CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR)", "question": " how many first elected with incumbent being charles edward bennett" }
### QUESTION what's the result with candidates being charles edward bennett (d) unopposed ### CONTEXT CREATE TABLE table_1342013_9 (result VARCHAR, candidates VARCHAR) ### ANSWER SELECT result FROM table_1342013_9 WHERE candidates = "Charles Edward Bennett (D) Unopposed"
{ "answer": "SELECT result FROM table_1342013_9 WHERE candidates = \"Charles Edward Bennett (D) Unopposed\"", "context": "CREATE TABLE table_1342013_9 (result VARCHAR, candidates VARCHAR)", "question": "what's the result with candidates being charles edward bennett (d) unopposed" }
### QUESTION What was the result of the election when Tic Forrester ran as an incumbent? ### CONTEXT CREATE TABLE table_1342149_11 (result VARCHAR, incumbent VARCHAR) ### ANSWER SELECT result FROM table_1342149_11 WHERE incumbent = "Tic Forrester"
{ "answer": "SELECT result FROM table_1342149_11 WHERE incumbent = \"Tic Forrester\"", "context": "CREATE TABLE table_1342149_11 (result VARCHAR, incumbent VARCHAR)", "question": "What was the result of the election when Tic Forrester ran as an incumbent?" }
### QUESTION What candidate was re-elected in the Louisiana 5 district? ### CONTEXT CREATE TABLE table_1342149_18 (candidates VARCHAR, result VARCHAR, district VARCHAR) ### ANSWER SELECT candidates FROM table_1342149_18 WHERE result = "Re-elected" AND district = "Louisiana 5"
{ "answer": "SELECT candidates FROM table_1342149_18 WHERE result = \"Re-elected\" AND district = \"Louisiana 5\"", "context": "CREATE TABLE table_1342149_18 (candidates VARCHAR, result VARCHAR, district VARCHAR)", "question": "What candidate was re-elected in the Louisiana 5 district? " }
### QUESTION Name the result for mississippi 2 ### CONTEXT CREATE TABLE table_1342149_24 (result VARCHAR, district VARCHAR) ### ANSWER SELECT result FROM table_1342149_24 WHERE district = "Mississippi 2"
{ "answer": "SELECT result FROM table_1342149_24 WHERE district = \"Mississippi 2\"", "context": "CREATE TABLE table_1342149_24 (result VARCHAR, district VARCHAR)", "question": "Name the result for mississippi 2" }
### QUESTION How many laps were driven in 2:54:23.8? ### CONTEXT CREATE TABLE table_name_45 (laps INTEGER, time_retired VARCHAR) ### ANSWER SELECT SUM(laps) FROM table_name_45 WHERE time_retired = "2:54:23.8"
{ "answer": "SELECT SUM(laps) FROM table_name_45 WHERE time_retired = \"2:54:23.8\"", "context": "CREATE TABLE table_name_45 (laps INTEGER, time_retired VARCHAR)", "question": "How many laps were driven in 2:54:23.8?" }
### QUESTION Which points classification shares a general classification of Bernard Hinault, a Trofeo Fast Tem of Bianchi, was won by Urs Freuler, and was stage 4? ### CONTEXT CREATE TABLE table_name_7 (points_classification VARCHAR, stage VARCHAR, winner VARCHAR, general_classification VARCHAR, trofeo_fast_team VARCHAR) ### ANSWER SELECT points_classification FROM table_name_7 WHERE general_classification = "bernard hinault" AND trofeo_fast_team = "bianchi" AND winner = "urs freuler" AND stage = "4"
{ "answer": "SELECT points_classification FROM table_name_7 WHERE general_classification = \"bernard hinault\" AND trofeo_fast_team = \"bianchi\" AND winner = \"urs freuler\" AND stage = \"4\"", "context": "CREATE TABLE table_name_7 (points_classification VARCHAR, stage VARCHAR, winner VARCHAR, general_classification VARCHAR, trofeo_fast_team VARCHAR)", "question": "Which points classification shares a general classification of Bernard Hinault, a Trofeo Fast Tem of Bianchi, was won by Urs Freuler, and was stage 4?" }
### QUESTION Who was the winner that had a Points Classification of Giuseppe Saronni, a Trofeo Fast Team of Bianchi, and was Stage 3? ### CONTEXT CREATE TABLE table_name_71 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR) ### ANSWER SELECT winner FROM table_name_71 WHERE points_classification = "giuseppe saronni" AND trofeo_fast_team = "bianchi" AND stage = "3"
{ "answer": "SELECT winner FROM table_name_71 WHERE points_classification = \"giuseppe saronni\" AND trofeo_fast_team = \"bianchi\" AND stage = \"3\"", "context": "CREATE TABLE table_name_71 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR)", "question": "Who was the winner that had a Points Classification of Giuseppe Saronni, a Trofeo Fast Team of Bianchi, and was Stage 3?" }
### QUESTION Who was the winner of Stage 12 with a Points Classification of Francesco Moser? ### CONTEXT CREATE TABLE table_name_85 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR) ### ANSWER SELECT winner FROM table_name_85 WHERE points_classification = "francesco moser" AND stage = "12"
{ "answer": "SELECT winner FROM table_name_85 WHERE points_classification = \"francesco moser\" AND stage = \"12\"", "context": "CREATE TABLE table_name_85 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR)", "question": "Who was the winner of Stage 12 with a Points Classification of Francesco Moser?" }
### 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 who is the candidate where district is louisiana 3? ### CONTEXT CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR) ### ANSWER SELECT candidates FROM table_1342198_18 WHERE district = "Louisiana 3"
{ "answer": "SELECT candidates FROM table_1342198_18 WHERE district = \"Louisiana 3\"", "context": "CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR)", "question": "who is the candidate where district is louisiana 3?" }
### QUESTION how many laps were there when the grid was 24? ### CONTEXT CREATE TABLE table_name_25 (laps VARCHAR, grid VARCHAR) ### ANSWER SELECT COUNT(laps) FROM table_name_25 WHERE grid = 24
{ "answer": "SELECT COUNT(laps) FROM table_name_25 WHERE grid = 24", "context": "CREATE TABLE table_name_25 (laps VARCHAR, grid VARCHAR)", "question": "how many laps were there when the grid was 24?" }
### QUESTION Ken Wright of the National Party was from which province? ### CONTEXT CREATE TABLE table_name_79 (province VARCHAR, party VARCHAR, name VARCHAR) ### ANSWER SELECT province FROM table_name_79 WHERE party = "national" AND name = "ken wright"
{ "answer": "SELECT province FROM table_name_79 WHERE party = \"national\" AND name = \"ken wright\"", "context": "CREATE TABLE table_name_79 (province VARCHAR, party VARCHAR, name VARCHAR)", "question": "Ken Wright of the National Party was from which province?" }
### QUESTION What was the score of the game on 27 January 1996? ### CONTEXT CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_15 WHERE date = "27 january 1996"
{ "answer": "SELECT score FROM table_name_15 WHERE date = \"27 january 1996\"", "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)", "question": "What was the score of the game on 27 January 1996?" }
### QUESTION What is the event with a result of 3-2? ### CONTEXT CREATE TABLE table_name_40 (competition VARCHAR, result VARCHAR) ### ANSWER SELECT competition FROM table_name_40 WHERE result = "3-2"
{ "answer": "SELECT competition FROM table_name_40 WHERE result = \"3-2\"", "context": "CREATE TABLE table_name_40 (competition VARCHAR, result VARCHAR)", "question": "What is the event with a result of 3-2?" }
### QUESTION What year was clair engle first elected? ### CONTEXT CREATE TABLE table_1342218_6 (first_elected VARCHAR, incumbent VARCHAR) ### ANSWER SELECT first_elected FROM table_1342218_6 WHERE incumbent = "Clair Engle"
{ "answer": "SELECT first_elected FROM table_1342218_6 WHERE incumbent = \"Clair Engle\"", "context": "CREATE TABLE table_1342218_6 (first_elected VARCHAR, incumbent VARCHAR)", "question": "What year was clair engle first elected?" }
### QUESTION Which country has a rollercoaster that opened in 2002, is a spinning coaster, and is located in Disney's Animal Kingdom? ### CONTEXT CREATE TABLE table_name_76 (country VARCHAR, park VARCHAR, opened VARCHAR, model VARCHAR) ### ANSWER SELECT country FROM table_name_76 WHERE opened = 2002 AND model = "spinning coaster" AND park = "disney's animal kingdom"
{ "answer": "SELECT country FROM table_name_76 WHERE opened = 2002 AND model = \"spinning coaster\" AND park = \"disney's animal kingdom\"", "context": "CREATE TABLE table_name_76 (country VARCHAR, park VARCHAR, opened VARCHAR, model VARCHAR)", "question": "Which country has a rollercoaster that opened in 2002, is a spinning coaster, and is located in Disney's Animal Kingdom?" }
### QUESTION what's the first elected with incumbent being clair engle ### CONTEXT CREATE TABLE table_1342233_6 (first_elected VARCHAR, incumbent VARCHAR) ### ANSWER SELECT first_elected FROM table_1342233_6 WHERE incumbent = "Clair Engle"
{ "answer": "SELECT first_elected FROM table_1342233_6 WHERE incumbent = \"Clair Engle\"", "context": "CREATE TABLE table_1342233_6 (first_elected VARCHAR, incumbent VARCHAR)", "question": "what's the first elected with incumbent being clair engle" }
### QUESTION Who is the runner(s)-up for a winning score of −3 (71-74-66-66=277)? ### CONTEXT CREATE TABLE table_name_65 (runner_s__up VARCHAR, winning_score VARCHAR) ### ANSWER SELECT runner_s__up FROM table_name_65 WHERE winning_score = −3(71 - 74 - 66 - 66 = 277)
{ "answer": "SELECT runner_s__up FROM table_name_65 WHERE winning_score = −3(71 - 74 - 66 - 66 = 277)", "context": "CREATE TABLE table_name_65 (runner_s__up VARCHAR, winning_score VARCHAR)", "question": "Who is the runner(s)-up for a winning score of −3 (71-74-66-66=277)?" }
### QUESTION Which incumbent was first elected in 1940? ### CONTEXT CREATE TABLE table_1342256_10 (incumbent VARCHAR, first_elected VARCHAR) ### ANSWER SELECT incumbent FROM table_1342256_10 WHERE first_elected = 1940
{ "answer": "SELECT incumbent FROM table_1342256_10 WHERE first_elected = 1940", "context": "CREATE TABLE table_1342256_10 (incumbent VARCHAR, first_elected VARCHAR)", "question": "Which incumbent was first elected in 1940?" }
### QUESTION Name all the candidates that ran for the seat where Harold D. Cooley is the incumbent? ### CONTEXT CREATE TABLE table_1342256_33 (candidates VARCHAR, incumbent VARCHAR) ### ANSWER SELECT candidates FROM table_1342256_33 WHERE incumbent = "Harold D. Cooley"
{ "answer": "SELECT candidates FROM table_1342256_33 WHERE incumbent = \"Harold D. Cooley\"", "context": "CREATE TABLE table_1342256_33 (candidates VARCHAR, incumbent VARCHAR)", "question": "Name all the candidates that ran for the seat where Harold D. Cooley is the incumbent?" }
### QUESTION What is the Set 2 with a Total with 45–12? ### CONTEXT CREATE TABLE table_name_42 (set_2 VARCHAR, total VARCHAR) ### ANSWER SELECT set_2 FROM table_name_42 WHERE total = "45–12"
{ "answer": "SELECT set_2 FROM table_name_42 WHERE total = \"45–12\"", "context": "CREATE TABLE table_name_42 (set_2 VARCHAR, total VARCHAR)", "question": "What is the Set 2 with a Total with 45–12?" }
### QUESTION Tell me the location for win with record of 8-5 ### CONTEXT CREATE TABLE table_name_52 (location VARCHAR, res VARCHAR, record VARCHAR) ### ANSWER SELECT location FROM table_name_52 WHERE res = "win" AND record = "8-5"
{ "answer": "SELECT location FROM table_name_52 WHERE res = \"win\" AND record = \"8-5\"", "context": "CREATE TABLE table_name_52 (location VARCHAR, res VARCHAR, record VARCHAR)", "question": "Tell me the location for win with record of 8-5" }
### QUESTION How many total units were built of Model ds-4-4-660 with a b-b wheel arrangement and a PRR Class of bs6? ### CONTEXT CREATE TABLE table_name_13 (total_produced INTEGER, builder’s_model VARCHAR, wheel_arrangement VARCHAR, prr_class VARCHAR) ### ANSWER SELECT SUM(total_produced) FROM table_name_13 WHERE wheel_arrangement = "b-b" AND prr_class = "bs6" AND builder’s_model = "ds-4-4-660"
{ "answer": "SELECT SUM(total_produced) FROM table_name_13 WHERE wheel_arrangement = \"b-b\" AND prr_class = \"bs6\" AND builder’s_model = \"ds-4-4-660\"", "context": "CREATE TABLE table_name_13 (total_produced INTEGER, builder’s_model VARCHAR, wheel_arrangement VARCHAR, prr_class VARCHAR)", "question": "How many total units were built of Model ds-4-4-660 with a b-b wheel arrangement and a PRR Class of bs6?" }
### QUESTION How many candidates were in the election featuring brooks hays (d) unopposed? ### CONTEXT CREATE TABLE table_1342256_5 (first_elected VARCHAR, candidates VARCHAR) ### ANSWER SELECT COUNT(first_elected) FROM table_1342256_5 WHERE candidates = "Brooks Hays (D) Unopposed"
{ "answer": "SELECT COUNT(first_elected) FROM table_1342256_5 WHERE candidates = \"Brooks Hays (D) Unopposed\"", "context": "CREATE TABLE table_1342256_5 (first_elected VARCHAR, candidates VARCHAR)", "question": "How many candidates were in the election featuring brooks hays (d) unopposed?" }
### QUESTION what's the incumbent with result being new seat republican gain ### CONTEXT CREATE TABLE table_1342256_6 (incumbent VARCHAR, result VARCHAR) ### ANSWER SELECT incumbent FROM table_1342256_6 WHERE result = "New seat Republican gain"
{ "answer": "SELECT incumbent FROM table_1342256_6 WHERE result = \"New seat Republican gain\"", "context": "CREATE TABLE table_1342256_6 (incumbent VARCHAR, result VARCHAR)", "question": "what's the incumbent with result being new seat republican gain" }
### QUESTION what is the maximum first elected with district being alabama 5 ### CONTEXT CREATE TABLE table_1342270_3 (first_elected INTEGER, district VARCHAR) ### ANSWER SELECT MAX(first_elected) FROM table_1342270_3 WHERE district = "Alabama 5"
{ "answer": "SELECT MAX(first_elected) FROM table_1342270_3 WHERE district = \"Alabama 5\"", "context": "CREATE TABLE table_1342270_3 (first_elected INTEGER, district VARCHAR)", "question": "what is the maximum first elected with district being alabama 5" }
### QUESTION what is the lowest grid when the time retired is clutch, the driver is peter collins and the laps is smaller than 26? ### CONTEXT CREATE TABLE table_name_88 (grid INTEGER, laps VARCHAR, time_retired VARCHAR, driver VARCHAR) ### ANSWER SELECT MIN(grid) FROM table_name_88 WHERE time_retired = "clutch" AND driver = "peter collins" AND laps < 26
{ "answer": "SELECT MIN(grid) FROM table_name_88 WHERE time_retired = \"clutch\" AND driver = \"peter collins\" AND laps < 26", "context": "CREATE TABLE table_name_88 (grid INTEGER, laps VARCHAR, time_retired VARCHAR, driver VARCHAR)", "question": "what is the lowest grid when the time retired is clutch, the driver is peter collins and the laps is smaller than 26?" }
### QUESTION What is the Dismissals with a Venue with source: cricinfo.com? ### CONTEXT CREATE TABLE table_name_43 (dismissals VARCHAR, venue VARCHAR) ### ANSWER SELECT dismissals FROM table_name_43 WHERE venue = "source: cricinfo.com"
{ "answer": "SELECT dismissals FROM table_name_43 WHERE venue = \"source: cricinfo.com\"", "context": "CREATE TABLE table_name_43 (dismissals VARCHAR, venue VARCHAR)", "question": "What is the Dismissals with a Venue with source: cricinfo.com?" }
### QUESTION How many parties does william b. cravens represent? ### CONTEXT CREATE TABLE table_1342292_4 (party VARCHAR, incumbent VARCHAR) ### ANSWER SELECT COUNT(party) FROM table_1342292_4 WHERE incumbent = "William B. Cravens"
{ "answer": "SELECT COUNT(party) FROM table_1342292_4 WHERE incumbent = \"William B. Cravens\"", "context": "CREATE TABLE table_1342292_4 (party VARCHAR, incumbent VARCHAR)", "question": "How many parties does william b. cravens represent?" }
### QUESTION What candidates ran in the election when john s. wood was the incumbent? ### CONTEXT CREATE TABLE table_1342331_11 (candidates VARCHAR, incumbent VARCHAR) ### ANSWER SELECT candidates FROM table_1342331_11 WHERE incumbent = "John S. Wood"
{ "answer": "SELECT candidates FROM table_1342331_11 WHERE incumbent = \"John S. Wood\"", "context": "CREATE TABLE table_1342331_11 (candidates VARCHAR, incumbent VARCHAR)", "question": "What candidates ran in the election when john s. wood was the incumbent?" }
### QUESTION What district has Riley Joseph Wilson as the incumbent? ### CONTEXT CREATE TABLE table_1342331_18 (district VARCHAR, incumbent VARCHAR) ### ANSWER SELECT district FROM table_1342331_18 WHERE incumbent = "Riley Joseph Wilson"
{ "answer": "SELECT district FROM table_1342331_18 WHERE incumbent = \"Riley Joseph Wilson\"", "context": "CREATE TABLE table_1342331_18 (district VARCHAR, incumbent VARCHAR)", "question": "What district has Riley Joseph Wilson as the incumbent?" }
### QUESTION Name the episode for year more than 1999 ### CONTEXT CREATE TABLE table_name_30 (episode VARCHAR, year INTEGER) ### ANSWER SELECT episode FROM table_name_30 WHERE year > 1999
{ "answer": "SELECT episode FROM table_name_30 WHERE year > 1999", "context": "CREATE TABLE table_name_30 (episode VARCHAR, year INTEGER)", "question": "Name the episode for year more than 1999" }
### QUESTION What is the highest round played by Chris Phillips? ### CONTEXT CREATE TABLE table_name_67 (round INTEGER, player VARCHAR) ### ANSWER SELECT MAX(round) FROM table_name_67 WHERE player = "chris phillips"
{ "answer": "SELECT MAX(round) FROM table_name_67 WHERE player = \"chris phillips\"", "context": "CREATE TABLE table_name_67 (round INTEGER, player VARCHAR)", "question": "What is the highest round played by Chris Phillips?" }
### QUESTION how many areas were in the election in 1912 ### CONTEXT CREATE TABLE table_1342379_10 (district VARCHAR, first_elected VARCHAR) ### ANSWER SELECT COUNT(district) FROM table_1342379_10 WHERE first_elected = 1912
{ "answer": "SELECT COUNT(district) FROM table_1342379_10 WHERE first_elected = 1912", "context": "CREATE TABLE table_1342379_10 (district VARCHAR, first_elected VARCHAR)", "question": "how many areas were in the election in 1912" }
### QUESTION who is the the candidates with district being mississippi 4 ### CONTEXT CREATE TABLE table_1342379_23 (candidates VARCHAR, district VARCHAR) ### ANSWER SELECT candidates FROM table_1342379_23 WHERE district = "Mississippi 4"
{ "answer": "SELECT candidates FROM table_1342379_23 WHERE district = \"Mississippi 4\"", "context": "CREATE TABLE table_1342379_23 (candidates VARCHAR, district VARCHAR)", "question": "who is the the candidates with district being mississippi 4" }
### QUESTION What was the delivery date of Congresswoman Kirsten Gillibrand's baby boy? ### CONTEXT CREATE TABLE table_name_55 (date_of_delivery VARCHAR, baby_gender VARCHAR, congresswoman VARCHAR) ### ANSWER SELECT date_of_delivery FROM table_name_55 WHERE baby_gender = "boy" AND congresswoman = "kirsten gillibrand"
{ "answer": "SELECT date_of_delivery FROM table_name_55 WHERE baby_gender = \"boy\" AND congresswoman = \"kirsten gillibrand\"", "context": "CREATE TABLE table_name_55 (date_of_delivery VARCHAR, baby_gender VARCHAR, congresswoman VARCHAR)", "question": "What was the delivery date of Congresswoman Kirsten Gillibrand's baby boy?" }
### QUESTION What is the least first elected for jeff busby? ### CONTEXT CREATE TABLE table_1342393_23 (first_elected INTEGER, incumbent VARCHAR) ### ANSWER SELECT MIN(first_elected) FROM table_1342393_23 WHERE incumbent = "Jeff Busby"
{ "answer": "SELECT MIN(first_elected) FROM table_1342393_23 WHERE incumbent = \"Jeff Busby\"", "context": "CREATE TABLE table_1342393_23 (first_elected INTEGER, incumbent VARCHAR)", "question": "What is the least first elected for jeff busby?" }
### QUESTION Which TNS-Sofres 5/26/09 has an Ipsos 5/25/09 of 1%? ### CONTEXT CREATE TABLE table_name_82 (tns_sofres_5_26_09 VARCHAR, ipsos_5_25_09 VARCHAR) ### ANSWER SELECT tns_sofres_5_26_09 FROM table_name_82 WHERE ipsos_5_25_09 = "1%"
{ "answer": "SELECT tns_sofres_5_26_09 FROM table_name_82 WHERE ipsos_5_25_09 = \"1%\"", "context": "CREATE TABLE table_name_82 (tns_sofres_5_26_09 VARCHAR, ipsos_5_25_09 VARCHAR)", "question": "Which TNS-Sofres 5/26/09 has an Ipsos 5/25/09 of 1%?" }
### QUESTION Which Ipsos 5/16/09 has an Ifop- La Croix 5/15/09 of 26%? ### CONTEXT CREATE TABLE table_name_89 (csa_5_20_09 VARCHAR, ifop__la_croix_5_15_09 VARCHAR) ### ANSWER SELECT csa_5_20_09 FROM table_name_89 WHERE ifop__la_croix_5_15_09 = "26%"
{ "answer": "SELECT csa_5_20_09 FROM table_name_89 WHERE ifop__la_croix_5_15_09 = \"26%\"", "context": "CREATE TABLE table_name_89 (csa_5_20_09 VARCHAR, ifop__la_croix_5_15_09 VARCHAR)", "question": "Which Ipsos 5/16/09 has an Ifop- La Croix 5/15/09 of 26%?" }
### QUESTION Name the lowest first elected for chester w. taylor ### CONTEXT CREATE TABLE table_1342426_5 (first_elected INTEGER, incumbent VARCHAR) ### ANSWER SELECT MIN(first_elected) FROM table_1342426_5 WHERE incumbent = "Chester W. Taylor"
{ "answer": "SELECT MIN(first_elected) FROM table_1342426_5 WHERE incumbent = \"Chester W. Taylor\"", "context": "CREATE TABLE table_1342426_5 (first_elected INTEGER, incumbent VARCHAR)", "question": "Name the lowest first elected for chester w. taylor" }
### QUESTION Who were the candidates when Henry Garland Dupré was incumbent? ### CONTEXT CREATE TABLE table_1342451_16 (candidates VARCHAR, incumbent VARCHAR) ### ANSWER SELECT candidates FROM table_1342451_16 WHERE incumbent = "Henry Garland Dupré"
{ "answer": "SELECT candidates FROM table_1342451_16 WHERE incumbent = \"Henry Garland Dupré\"", "context": "CREATE TABLE table_1342451_16 (candidates VARCHAR, incumbent VARCHAR)", "question": "Who were the candidates when Henry Garland Dupré was incumbent?" }
### QUESTION What district did James O'Connor belong to? ### CONTEXT CREATE TABLE table_1342451_16 (district VARCHAR, incumbent VARCHAR) ### ANSWER SELECT district FROM table_1342451_16 WHERE incumbent = "James O'Connor"
{ "answer": "SELECT district FROM table_1342451_16 WHERE incumbent = \"James O'Connor\"", "context": "CREATE TABLE table_1342451_16 (district VARCHAR, incumbent VARCHAR)", "question": "What district did James O'Connor belong to?" }
### QUESTION What is Mark Joseph Kong's pick? ### CONTEXT CREATE TABLE table_name_15 (pick INTEGER, player VARCHAR) ### ANSWER SELECT AVG(pick) FROM table_name_15 WHERE player = "mark joseph kong"
{ "answer": "SELECT AVG(pick) FROM table_name_15 WHERE player = \"mark joseph kong\"", "context": "CREATE TABLE table_name_15 (pick INTEGER, player VARCHAR)", "question": "What is Mark Joseph Kong's pick?" }
### QUESTION What are the locations with a panthers mascot? ### CONTEXT CREATE TABLE table_13456202_1 (location VARCHAR, mascot VARCHAR) ### ANSWER SELECT location FROM table_13456202_1 WHERE mascot = "Panthers"
{ "answer": "SELECT location FROM table_13456202_1 WHERE mascot = \"Panthers\"", "context": "CREATE TABLE table_13456202_1 (location VARCHAR, mascot VARCHAR)", "question": "What are the locations with a panthers mascot?" }