Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
16,100
<question>: What is the highest power (hp) of an OM314 engine? <context>: CREATE TABLE table_name_5 (power__hp_ INTEGER, engine VARCHAR) <answer>: SELECT MAX(power__hp_) FROM table_name_5 WHERE engine = "om314"
16,101
<question>: When was power (hp) less than 93 for the OM324 engine used? <context>: CREATE TABLE table_name_4 (used VARCHAR, power__hp_ VARCHAR, engine VARCHAR) <answer>: SELECT used FROM table_name_4 WHERE power__hp_ < 93 AND engine = "om324"
16,102
<question>: What is the name for Nagpur district, with a reserved for ( SC / ST /None) of none, and a Constituency number of 59? <context>: CREATE TABLE table_name_56 (name VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR) <answer>: SELECT name FROM table_name_56 WHERE distr...
16,103
<question>: What district shows reserved for (SC / ST /None) of total:? <context>: CREATE TABLE table_name_45 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR) <answer>: SELECT district FROM table_name_45 WHERE reserved_for___sc___st__none_ = "total:"
16,104
<question>: What is the number of electorates (2009) for Hingna? <context>: CREATE TABLE table_name_78 (number_of_electorates__2009_ INTEGER, name VARCHAR) <answer>: SELECT AVG(number_of_electorates__2009_) FROM table_name_78 WHERE name = "hingna"
16,105
<question>: What is the constituency number with a reserved for ( SC / ST /None) of none, for Katol? <context>: CREATE TABLE table_name_65 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR) <answer>: SELECT constituency_number FROM table_name_65 WHERE reserved_for___sc___st__none_ = "non...
16,106
<question>: What is the total number of electorates (2009) for Katol? <context>: CREATE TABLE table_name_57 (number_of_electorates__2009_ VARCHAR, name VARCHAR) <answer>: SELECT COUNT(number_of_electorates__2009_) FROM table_name_57 WHERE name = "katol"
16,107
<question>: Which Year has a Category of best performance by a leading actress in a musical? <context>: CREATE TABLE table_name_72 (year INTEGER, category VARCHAR) <answer>: SELECT MAX(year) FROM table_name_72 WHERE category = "best performance by a leading actress in a musical"
16,108
<question>: Which Award Ceremony has a Result of nominated, and a Category of best revival of a musical? <context>: CREATE TABLE table_name_75 (award_ceremony VARCHAR, result VARCHAR, category VARCHAR) <answer>: SELECT award_ceremony FROM table_name_75 WHERE result = "nominated" AND category = "best revival of a musica...
16,109
<question>: What is the analogue terrestrial channel when the internet shows channel4.com? <context>: CREATE TABLE table_name_95 (analogue_terrestrial_channel VARCHAR, internet VARCHAR) <answer>: SELECT analogue_terrestrial_channel FROM table_name_95 WHERE internet = "channel4.com"
16,110
<question>: What is the position when the channel shows channel 4? <context>: CREATE TABLE table_name_42 (position VARCHAR, channel VARCHAR) <answer>: SELECT position FROM table_name_42 WHERE channel = "channel 4"
16,111
<question>: What is the channel when the analogue terrestrial channel shows n/a, and the internet is itv.com, with a position larger than 6, and digital terrestrial channel is 6 27 (+1)? <context>: CREATE TABLE table_name_10 (channel VARCHAR, digital_terrestrial_channel VARCHAR, position VARCHAR, analogue_terrestrial_c...
16,112
<question>: What is the internet when the position is more than 13? <context>: CREATE TABLE table_name_12 (internet VARCHAR, position INTEGER) <answer>: SELECT internet FROM table_name_12 WHERE position > 13
16,113
<question>: What are the Notes when the Method is decision? <context>: CREATE TABLE table_name_74 (notes VARCHAR, method VARCHAR) <answer>: SELECT notes FROM table_name_74 WHERE method = "decision"
16,114
<question>: What was the result for the 2012 ibjjf world jiu-jitsu championships event when the method was points (4 x 0)? <context>: CREATE TABLE table_name_95 (result VARCHAR, event VARCHAR, method VARCHAR) <answer>: SELECT result FROM table_name_95 WHERE event = "2012 ibjjf world jiu-jitsu championships" AND method ...
16,115
<question>: Who was the opponent when the method was points (4 x 0)? <context>: CREATE TABLE table_name_55 (opponent VARCHAR, method VARCHAR) <answer>: SELECT opponent FROM table_name_55 WHERE method = "points (4 x 0)"
16,116
<question>: What was the result against opponent Amanda Lucas? <context>: CREATE TABLE table_name_36 (result VARCHAR, opponent VARCHAR) <answer>: SELECT result FROM table_name_36 WHERE opponent = "amanda lucas"
16,117
<question>: Which event has notes of women +60kg quarterfinal? <context>: CREATE TABLE table_name_43 (event VARCHAR, notes VARCHAR) <answer>: SELECT event FROM table_name_43 WHERE notes = "women +60kg quarterfinal"
16,118
<question>: On what date was the attendance more than 17,652? <context>: CREATE TABLE table_name_15 (date VARCHAR, attendance INTEGER) <answer>: SELECT date FROM table_name_15 WHERE attendance > 17 OFFSET 652
16,119
<question>: What is the record on January 18? <context>: CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR) <answer>: SELECT record FROM table_name_41 WHERE date = "january 18"
16,120
<question>: What was the lowest draw when the against was larger than 2638? <context>: CREATE TABLE table_name_50 (draws INTEGER, against INTEGER) <answer>: SELECT MIN(draws) FROM table_name_50 WHERE against > 2638
16,121
<question>: What was the lowest against when the draw was at least 0? <context>: CREATE TABLE table_name_16 (against INTEGER, draws INTEGER) <answer>: SELECT MIN(against) FROM table_name_16 WHERE draws > 0
16,122
<question>: What were the highest losses for a byes larger than 2? <context>: CREATE TABLE table_name_99 (losses INTEGER, byes INTEGER) <answer>: SELECT MAX(losses) FROM table_name_99 WHERE byes > 2
16,123
<question>: What position did the Belenenses club occupy in 1960/61? <context>: CREATE TABLE table_name_2 (position_in_1960_1961 VARCHAR, clubs VARCHAR) <answer>: SELECT position_in_1960_1961 FROM table_name_2 WHERE clubs = "belenenses"
16,124
<question>: Which club has played for 27 seasons at this level? <context>: CREATE TABLE table_name_10 (clubs VARCHAR, seasons_at_this_level VARCHAR) <answer>: SELECT clubs FROM table_name_10 WHERE seasons_at_this_level = "27 seasons"
16,125
<question>: What is the NFL team for Toledo? <context>: CREATE TABLE table_name_23 (nfl_team VARCHAR, college VARCHAR) <answer>: SELECT nfl_team FROM table_name_23 WHERE college = "toledo"
16,126
<question>: What is Northern Colorado's Rnd.? <context>: CREATE TABLE table_name_18 (rnd VARCHAR, college VARCHAR) <answer>: SELECT rnd FROM table_name_18 WHERE college = "northern colorado"
16,127
<question>: What is the lowest value for Draws, when South West DFL is "Tyrendarra", and when Byes is greater than 0? <context>: CREATE TABLE table_name_68 (draws INTEGER, south_west_dfl VARCHAR, byes VARCHAR) <answer>: SELECT MIN(draws) FROM table_name_68 WHERE south_west_dfl = "tyrendarra" AND byes > 0
16,128
<question>: What is the sum of Against, when Wins is greater than 8, and when Losses is greater than 6? <context>: CREATE TABLE table_name_19 (against INTEGER, wins VARCHAR, losses VARCHAR) <answer>: SELECT SUM(against) FROM table_name_19 WHERE wins > 8 AND losses > 6
16,129
<question>: What is the total number of Byes, when South West DFL is "Coleraine", and when Wins is less than 12? <context>: CREATE TABLE table_name_80 (byes VARCHAR, south_west_dfl VARCHAR, wins VARCHAR) <answer>: SELECT COUNT(byes) FROM table_name_80 WHERE south_west_dfl = "coleraine" AND wins < 12
16,130
<question>: What is the average value for Wins, when South West DFL is "Coleraine", and when Byes is greater than 0? <context>: CREATE TABLE table_name_73 (wins INTEGER, south_west_dfl VARCHAR, byes VARCHAR) <answer>: SELECT AVG(wins) FROM table_name_73 WHERE south_west_dfl = "coleraine" AND byes > 0
16,131
<question>: What is the lowest value for Wins, when South West DFL is "Cavendish", and when Byes is less than 0? <context>: CREATE TABLE table_name_58 (wins INTEGER, south_west_dfl VARCHAR, byes VARCHAR) <answer>: SELECT MIN(wins) FROM table_name_58 WHERE south_west_dfl = "cavendish" AND byes < 0
16,132
<question>: What is the total number of Wins, when Losses is less than 10, when Against is less than 1253, and when Byes is less than 0? <context>: CREATE TABLE table_name_42 (wins VARCHAR, byes VARCHAR, losses VARCHAR, against VARCHAR) <answer>: SELECT COUNT(wins) FROM table_name_42 WHERE losses < 10 AND against < 125...
16,133
<question>: What score has a year later than 1974, with hawthorn as the champion? <context>: CREATE TABLE table_name_31 (score VARCHAR, year VARCHAR, champion VARCHAR) <answer>: SELECT score FROM table_name_31 WHERE year > 1974 AND champion = "hawthorn"
16,134
<question>: What champion has north melbourne as the runner-up? <context>: CREATE TABLE table_name_92 (champion VARCHAR, runner_up VARCHAR) <answer>: SELECT champion FROM table_name_92 WHERE runner_up = "north melbourne"
16,135
<question>: What is the location for Egypt in 2013? <context>: CREATE TABLE table_name_81 (location VARCHAR, year VARCHAR, country VARCHAR) <answer>: SELECT location FROM table_name_81 WHERE year = "2013" AND country = "egypt"
16,136
<question>: What is the location for Yemen in 1994? <context>: CREATE TABLE table_name_1 (location VARCHAR, year VARCHAR, country VARCHAR) <answer>: SELECT location FROM table_name_1 WHERE year = "1994" AND country = "yemen"
16,137
<question>: What year is the location Ta'izz? <context>: CREATE TABLE table_name_61 (year VARCHAR, location VARCHAR) <answer>: SELECT year FROM table_name_61 WHERE location = "ta'izz"
16,138
<question>: Which location is in the Belgian Congo Tanganyika? <context>: CREATE TABLE table_name_49 (location VARCHAR, country VARCHAR) <answer>: SELECT location FROM table_name_49 WHERE country = "belgian congo tanganyika"
16,139
<question>: Who is the perpetrator in Bait Al-Aqari? <context>: CREATE TABLE table_name_64 (perpetrator VARCHAR, location VARCHAR) <answer>: SELECT perpetrator FROM table_name_64 WHERE location = "bait al-aqari"
16,140
<question>: Who is the perpetrator in Uganda who killed 12 in Kampala? <context>: CREATE TABLE table_name_54 (perpetrator VARCHAR, killed VARCHAR, country VARCHAR, location VARCHAR) <answer>: SELECT perpetrator FROM table_name_54 WHERE country = "uganda" AND location = "kampala" AND killed = "12"
16,141
<question>: Who was the home team when grimsby town was the away team? <context>: CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR) <answer>: SELECT home_team FROM table_name_91 WHERE away_team = "grimsby town"
16,142
<question>: How many goals for Kenton have a transfer window of Summer? <context>: CREATE TABLE table_name_36 (goals VARCHAR, transfer_window VARCHAR, name VARCHAR) <answer>: SELECT COUNT(goals) FROM table_name_36 WHERE transfer_window = "summer" AND name = "kenton"
16,143
<question>: What is the branding for callsign DWFM? <context>: CREATE TABLE table_name_53 (branding VARCHAR, callsign VARCHAR) <answer>: SELECT branding FROM table_name_53 WHERE callsign = "dwfm"
16,144
<question>: What is the frequency where the power is 25kw? <context>: CREATE TABLE table_name_10 (frequency VARCHAR, power__kw_ VARCHAR) <answer>: SELECT frequency FROM table_name_10 WHERE power__kw_ = "25kw"
16,145
<question>: What is the power at Baguio where the frequency is 102.3mhz? <context>: CREATE TABLE table_name_59 (power__kw_ VARCHAR, frequency VARCHAR, location VARCHAR) <answer>: SELECT power__kw_ FROM table_name_59 WHERE frequency = "102.3mhz" AND location = "baguio"
16,146
<question>: What is the location where the frequency is 92.3mhz? <context>: CREATE TABLE table_name_76 (location VARCHAR, frequency VARCHAR) <answer>: SELECT location FROM table_name_76 WHERE frequency = "92.3mhz"
16,147
<question>: What is the brand where the location is Cagayan De Oro? <context>: CREATE TABLE table_name_54 (branding VARCHAR, location VARCHAR) <answer>: SELECT branding FROM table_name_54 WHERE location = "cagayan de oro"
16,148
<question>: Which Established has a League of ontario australian football league? <context>: CREATE TABLE table_name_62 (established VARCHAR, league VARCHAR) <answer>: SELECT established FROM table_name_62 WHERE league = "ontario australian football league"
16,149
<question>: Which Championships have a League of ontario australian football league? <context>: CREATE TABLE table_name_70 (championships VARCHAR, league VARCHAR) <answer>: SELECT championships FROM table_name_70 WHERE league = "ontario australian football league"
16,150
<question>: Which Established has a Club of guelph rangers? <context>: CREATE TABLE table_name_61 (established VARCHAR, club VARCHAR) <answer>: SELECT established FROM table_name_61 WHERE club = "guelph rangers"
16,151
<question>: What is the earliest year with colin berry as the spokesperson and ray moore as the radio commentator? <context>: CREATE TABLE table_name_64 (year_s_ INTEGER, spokesperson VARCHAR, radio_commentator VARCHAR) <answer>: SELECT MIN(year_s_) FROM table_name_64 WHERE spokesperson = "colin berry" AND radio_commen...
16,152
<question>: Who is the spokesperson after 2012? <context>: CREATE TABLE table_name_33 (spokesperson VARCHAR, year_s_ INTEGER) <answer>: SELECT spokesperson FROM table_name_33 WHERE year_s_ > 2012
16,153
<question>: Who is the semi-final second television commentator with graham norton as the final television commentator and scott mills as the spokesperson before 2013? <context>: CREATE TABLE table_name_51 (semi_final_second_television_commentator VARCHAR, year_s_ VARCHAR, final_television_commentator VARCHAR, spokespe...
16,154
<question>: What kind of Wind has an Athlete of kerron stewart? <context>: CREATE TABLE table_name_26 (wind VARCHAR, athlete VARCHAR) <answer>: SELECT wind FROM table_name_26 WHERE athlete = "kerron stewart"
16,155
<question>: What kind of Wind has a Result of 21.69? <context>: CREATE TABLE table_name_69 (wind VARCHAR, result VARCHAR) <answer>: SELECT wind FROM table_name_69 WHERE result = "21.69"
16,156
<question>: Show the Result of inger miller? <context>: CREATE TABLE table_name_75 (result VARCHAR, athlete VARCHAR) <answer>: SELECT result FROM table_name_75 WHERE athlete = "inger miller"
16,157
<question>: How many byes for the team with more than 14 losses and more than 0 wins? <context>: CREATE TABLE table_name_92 (byes INTEGER, losses VARCHAR, wins VARCHAR) <answer>: SELECT AVG(byes) FROM table_name_92 WHERE losses > 14 AND wins > 0
16,158
<question>: How many wins for the Caramut team with fewer than 11 losses and fewer than 2 byes? <context>: CREATE TABLE table_name_48 (wins INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR) <answer>: SELECT MAX(wins) FROM table_name_48 WHERE losses < 11 AND mininera_dfl = "caramut" AND byes < 2
16,159
<question>: How many wins for the team with more than 1282 against and fewer than 14 losses? <context>: CREATE TABLE table_name_59 (wins INTEGER, against VARCHAR, losses VARCHAR) <answer>: SELECT MIN(wins) FROM table_name_59 WHERE against > 1282 AND losses < 14
16,160
<question>: How many wins for the team with fewer than 2 byes? <context>: CREATE TABLE table_name_1 (wins INTEGER, byes INTEGER) <answer>: SELECT AVG(wins) FROM table_name_1 WHERE byes < 2
16,161
<question>: How many against for the Moyston-Willaura team with 4 losses and fewer than 2 byes? <context>: CREATE TABLE table_name_15 (against INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR) <answer>: SELECT MAX(against) FROM table_name_15 WHERE losses = 4 AND mininera_dfl = "moyston-willaura" AND byes < 2...
16,162
<question>: Who is the player of the match at canberra stadium? <context>: CREATE TABLE table_name_89 (player VARCHAR, venue VARCHAR) <answer>: SELECT player FROM table_name_89 WHERE venue = "canberra stadium"
16,163
<question>: What is the average number of tries of player israel folau? <context>: CREATE TABLE table_name_25 (tries INTEGER, player VARCHAR) <answer>: SELECT AVG(tries) FROM table_name_25 WHERE player = "israel folau"
16,164
<question>: What round is player phil graham in? <context>: CREATE TABLE table_name_8 (round VARCHAR, player VARCHAR) <answer>: SELECT round FROM table_name_8 WHERE player = "phil graham"
16,165
<question>: Who is the opponent of the match at cua stadium? <context>: CREATE TABLE table_name_7 (opponent VARCHAR, venue VARCHAR) <answer>: SELECT opponent FROM table_name_7 WHERE venue = "cua stadium"
16,166
<question>: Who is the opponent of player phil graham? <context>: CREATE TABLE table_name_72 (opponent VARCHAR, player VARCHAR) <answer>: SELECT opponent FROM table_name_72 WHERE player = "phil graham"
16,167
<question>: Can you tell me the Money (£) that has the Country of england, and the Player of malcolm mackenzie? <context>: CREATE TABLE table_name_59 (money___£__ VARCHAR, country VARCHAR, player VARCHAR) <answer>: SELECT money___£__ FROM table_name_59 WHERE country = "england" AND player = "malcolm mackenzie"
16,168
<question>: Which Year has a Nominee of stephen sondheim, and a Category of the best original score? <context>: CREATE TABLE table_name_90 (year VARCHAR, nominee VARCHAR, category VARCHAR) <answer>: SELECT year FROM table_name_90 WHERE nominee = "stephen sondheim" AND category = "best original score"
16,169
<question>: Which Result has a Category of the best costume design? <context>: CREATE TABLE table_name_3 (result VARCHAR, category VARCHAR) <answer>: SELECT result FROM table_name_3 WHERE category = "best costume design"
16,170
<question>: Which Nominee has an Award Ceremony of tony award, and a Category of the best performance by a leading actor in a musical? <context>: CREATE TABLE table_name_73 (nominee VARCHAR, award_ceremony VARCHAR, category VARCHAR) <answer>: SELECT nominee FROM table_name_73 WHERE award_ceremony = "tony award" AND cat...
16,171
<question>: When there are more than 126 errors, more than 551 kills, and more than 40 assists for the 2007 season, what is the total of Solo Blocks? <context>: CREATE TABLE table_name_24 (solo_blocks INTEGER, assists VARCHAR, season VARCHAR, errors VARCHAR, kills VARCHAR) <answer>: SELECT SUM(solo_blocks) FROM table_n...
16,172
<question>: When there is less than 13 services aces with a percentage greater than 0.34900000000000003, what is the smallest total attempts? <context>: CREATE TABLE table_name_47 (total_attempts INTEGER, percentage VARCHAR, service_aces VARCHAR) <answer>: SELECT MIN(total_attempts) FROM table_name_47 WHERE percentage ...
16,173
<question>: When the percentage is 0.34900000000000003 with more than 13 solo blocks and less than 4713 total attempts, what is the greatest assists? <context>: CREATE TABLE table_name_63 (assists INTEGER, total_attempts VARCHAR, percentage VARCHAR, solo_blocks VARCHAR) <answer>: SELECT MAX(assists) FROM table_name_63 ...
16,174
<question>: When assists is more than 32 and total blocks is more than 88, what is the total of block assists? <context>: CREATE TABLE table_name_12 (Block INTEGER, assists VARCHAR, total_blocks VARCHAR) <answer>: SELECT SUM(Block) AS assists FROM table_name_12 WHERE assists > 32 AND total_blocks > 88
16,175
<question>: What is the total number of Against, when Losses is less than 52, when Matches is greater than 4, and when Draw is less than 2? <context>: CREATE TABLE table_name_66 (against VARCHAR, draw VARCHAR, losses VARCHAR, matches VARCHAR) <answer>: SELECT COUNT(against) FROM table_name_66 WHERE losses < 52 AND matc...
16,176
<question>: What is the total number of Against, when Draw is greater than 48? <context>: CREATE TABLE table_name_12 (against VARCHAR, draw INTEGER) <answer>: SELECT COUNT(against) FROM table_name_12 WHERE draw > 48
16,177
<question>: What is the highest Losses, when Wins is "1", and when Matches is less than 2? <context>: CREATE TABLE table_name_21 (losses INTEGER, wins VARCHAR, matches VARCHAR) <answer>: SELECT MAX(losses) FROM table_name_21 WHERE wins = 1 AND matches < 2
16,178
<question>: What is the highest Against, when Wins is greater than 2, and when Matches is less than 17? <context>: CREATE TABLE table_name_47 (against INTEGER, wins VARCHAR, matches VARCHAR) <answer>: SELECT MAX(against) FROM table_name_47 WHERE wins > 2 AND matches < 17
16,179
<question>: What is the lowest Matches, when Against is less than 7, and when Wins is greater than 1? <context>: CREATE TABLE table_name_74 (matches INTEGER, against VARCHAR, wins VARCHAR) <answer>: SELECT MIN(matches) FROM table_name_74 WHERE against < 7 AND wins > 1
16,180
<question>: What position did tomasz kiełbowicz play? <context>: CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR) <answer>: SELECT position FROM table_name_35 WHERE player = "tomasz kiełbowicz"
16,181
<question>: Which # of Episodes has a Mole of craig slike? <context>: CREATE TABLE table_name_55 (_number_of_episodes INTEGER, mole VARCHAR) <answer>: SELECT MIN(_number_of_episodes) FROM table_name_55 WHERE mole = "craig slike"
16,182
<question>: Which host has more than 11 episodes? <context>: CREATE TABLE table_name_95 (host VARCHAR, _number_of_episodes INTEGER) <answer>: SELECT host FROM table_name_95 WHERE _number_of_episodes > 11
16,183
<question>: Which Season has a Mole of frederique van der wal? <context>: CREATE TABLE table_name_77 (season INTEGER, mole VARCHAR) <answer>: SELECT MAX(season) FROM table_name_77 WHERE mole = "frederique van der wal"
16,184
<question>: What is Res., when Time is "1:09"? <context>: CREATE TABLE table_name_51 (res VARCHAR, time VARCHAR) <answer>: SELECT res FROM table_name_51 WHERE time = "1:09"
16,185
<question>: What is Res., when Round is greater than 2, and when Event is "Midwest Cage Championships 25: Inferno"? <context>: CREATE TABLE table_name_92 (res VARCHAR, round VARCHAR, event VARCHAR) <answer>: SELECT res FROM table_name_92 WHERE round > 2 AND event = "midwest cage championships 25: inferno"
16,186
<question>: What is Time, when Round is "3", when Method is "Decision (unanimous)", and when Record is "7-3"? <context>: CREATE TABLE table_name_45 (time VARCHAR, record VARCHAR, round VARCHAR, method VARCHAR) <answer>: SELECT time FROM table_name_45 WHERE round = 3 AND method = "decision (unanimous)" AND record = "7-3...
16,187
<question>: What is Record, when Location is "Des Moines, Iowa , United States", and when Method is "Submission (arm-triangle choke)"? <context>: CREATE TABLE table_name_31 (record VARCHAR, location VARCHAR, method VARCHAR) <answer>: SELECT record FROM table_name_31 WHERE location = "des moines, iowa , united states" A...
16,188
<question>: What is the score for the game with 213 attending? <context>: CREATE TABLE table_name_3 (score VARCHAR, attendance VARCHAR) <answer>: SELECT score FROM table_name_3 WHERE attendance = "213"
16,189
<question>: What was the away team for the game in Slough Town? <context>: CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR) <answer>: SELECT away_team FROM table_name_75 WHERE home_team = "slough town"
16,190
<question>: Who was the home team that played against Armthorpe Welfare? <context>: CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR) <answer>: SELECT home_team FROM table_name_51 WHERE away_team = "armthorpe welfare"
16,191
<question>: What is the Tie no for the game with the away team Whyteleafe? <context>: CREATE TABLE table_name_99 (tie_no VARCHAR, away_team VARCHAR) <answer>: SELECT tie_no FROM table_name_99 WHERE away_team = "whyteleafe"
16,192
<question>: What is home team Maine Road's score? <context>: CREATE TABLE table_name_46 (score VARCHAR, home_team VARCHAR) <answer>: SELECT score FROM table_name_46 WHERE home_team = "maine road"
16,193
<question>: What year was the US Open that had a partnering of Maikel Scheffers? <context>: CREATE TABLE table_name_56 (year INTEGER, partnering VARCHAR, championship VARCHAR) <answer>: SELECT SUM(year) FROM table_name_56 WHERE partnering = "maikel scheffers" AND championship = "us open"
16,194
<question>: What was the championship before 2012 that had Stephane Houdet Michael Jeremiasz as opponents? <context>: CREATE TABLE table_name_23 (championship VARCHAR, year VARCHAR, opponents_in_final VARCHAR) <answer>: SELECT championship FROM table_name_23 WHERE year < 2012 AND opponents_in_final = "stephane houdet m...
16,195
<question>: What was the score when the Shingo Kunieda Satoshi Saida were the opponents? <context>: CREATE TABLE table_name_84 (score_in_final VARCHAR, opponents_in_final VARCHAR) <answer>: SELECT score_in_final FROM table_name_84 WHERE opponents_in_final = "shingo kunieda satoshi saida"
16,196
<question>: What year were the opponents Shingo Kunieda Satoshi Saida? <context>: CREATE TABLE table_name_22 (year INTEGER, opponents_in_final VARCHAR) <answer>: SELECT MIN(year) FROM table_name_22 WHERE opponents_in_final = "shingo kunieda satoshi saida"
16,197
<question>: In what place is the golfer with a score of 68-69-73-70=280? <context>: CREATE TABLE table_name_24 (place VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_24 WHERE score = 68 - 69 - 73 - 70 = 280
16,198
<question>: What is the to par of the golfer with winnings of 40,850 and a score of 72-74-70-70=286? <context>: CREATE TABLE table_name_52 (to_par VARCHAR, money___£__ VARCHAR, score VARCHAR) <answer>: SELECT to_par FROM table_name_52 WHERE money___£__ = "40,850" AND score = 72 - 74 - 70 - 70 = 286
16,199
<question>: What is the to par for the player with winnings of 49,500? <context>: CREATE TABLE table_name_74 (to_par VARCHAR, money___£__ VARCHAR) <answer>: SELECT to_par FROM table_name_74 WHERE money___£__ = "49,500"