Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
45,100
<question>: Name the general classification with roman kreuziger and points classification of fabian cancellara <context>: CREATE TABLE table_name_97 (general_classification VARCHAR, young_rider_classification VARCHAR, points_classification VARCHAR)
SELECT general_classification FROM table_name_97 WHERE young_rider_classification = "roman kreuziger" AND points_classification = "fabian cancellara"
45,101
<question>: Name the combativity award with winner of luis león sánchez <context>: CREATE TABLE table_name_13 (combativity_award VARCHAR, winner VARCHAR)
SELECT combativity_award FROM table_name_13 WHERE winner = "luis león sánchez"
45,102
<question>: What is the sum of numbers listed in 18-49 for the episode that aired on June 25, 2009 with an order larger than 29? <context>: CREATE TABLE table_name_51 (air_date VARCHAR, order VARCHAR)
SELECT SUM(18 AS _49) FROM table_name_51 WHERE air_date = "june 25, 2009" AND order > 29
45,103
<question>: What is the total 18-49 for the episode that aired on July 2, 2009 with more than 3.5 viewers? <context>: CREATE TABLE table_name_1 (air_date VARCHAR, viewers VARCHAR)
SELECT COUNT(18 AS _49) FROM table_name_1 WHERE air_date = "july 2, 2009" AND viewers > 3.5
45,104
<question>: What is the average 18-49 for the episode that had an order number higher than 35 and less than 3.5 viewers? <context>: CREATE TABLE table_name_44 (viewers VARCHAR, order VARCHAR)
SELECT AVG(18 AS _49) FROM table_name_44 WHERE viewers < 3.5 AND order > 35
45,105
<question>: What is the episode name that aired on July 23, 2009 with more than 3.31 viewers? <context>: CREATE TABLE table_name_45 (episode VARCHAR, air_date VARCHAR, viewers VARCHAR)
SELECT episode FROM table_name_45 WHERE air_date = "july 23, 2009" AND viewers > 3.31
45,106
<question>: What year sold 1,695,900+ copies with an Oricon position larger than 1? <context>: CREATE TABLE table_name_19 (year INTEGER, copies_sold VARCHAR, oricon_position VARCHAR)
SELECT AVG(year) FROM table_name_19 WHERE copies_sold = "1,695,900+" AND oricon_position > 1
45,107
<question>: How many copies were sold where the position is lager than 1 in 1988? <context>: CREATE TABLE table_name_85 (copies_sold VARCHAR, oricon_position VARCHAR, year VARCHAR)
SELECT copies_sold FROM table_name_85 WHERE oricon_position > 1 AND year = 1988
45,108
<question>: What was the Winning Score on May 29, 1977? <context>: CREATE TABLE table_name_2 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_2 WHERE date = "may 29, 1977"
45,109
<question>: On what Date was Patty Sheehan Runner(s)-up? <context>: CREATE TABLE table_name_62 (date VARCHAR, runner_s__up VARCHAR)
SELECT date FROM table_name_62 WHERE runner_s__up = "patty sheehan"
45,110
<question>: On what Date was Judy Rankin Runner(s)-up? <context>: CREATE TABLE table_name_64 (date VARCHAR, runner_s__up VARCHAR)
SELECT date FROM table_name_64 WHERE runner_s__up = "judy rankin"
45,111
<question>: On what Date was the Winning score –8 (69-72-70-69=280)? <context>: CREATE TABLE table_name_95 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_name_95 WHERE winning_score = –8(69 - 72 - 70 - 69 = 280)
45,112
<question>: On what Date was Carole Charbonnier a Runner(s)-up with a 1 stroke Margin of victory? <context>: CREATE TABLE table_name_6 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT date FROM table_name_6 WHERE margin_of_victory = "1 stroke" AND runner_s__up = "carole charbonnier"
45,113
<question>: What date did the team play home in Toronto? <context>: CREATE TABLE table_name_64 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_64 WHERE home = "toronto"
45,114
<question>: How many people attended the game when Larry Hughes(33) was the leading scorer and cleveland was visiting? <context>: CREATE TABLE table_name_6 (attendance INTEGER, visitor VARCHAR, leading_scorer VARCHAR)
SELECT SUM(attendance) FROM table_name_6 WHERE visitor = "cleveland" AND leading_scorer = "larry hughes(33)"
45,115
<question>: When did they play Utah at home? <context>: CREATE TABLE table_name_38 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_38 WHERE home = "utah"
45,116
<question>: What opponent has balboa stadium as the opponent? <context>: CREATE TABLE table_name_4 (opponent VARCHAR, stadium VARCHAR)
SELECT opponent FROM table_name_4 WHERE stadium = "balboa stadium"
45,117
<question>: What is the highest attendance that has oakland raiders as the opponent, with a week greater than 9? <context>: CREATE TABLE table_name_83 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
SELECT MAX(attendance) FROM table_name_83 WHERE opponent = "oakland raiders" AND week > 9
45,118
<question>: Where is the headquarter of the conglomerate industry? <context>: CREATE TABLE table_name_42 (headquarters VARCHAR, primary_industry VARCHAR)
SELECT headquarters FROM table_name_42 WHERE primary_industry = "conglomerate"
45,119
<question>: What date was the game played at the venue of Hrazdan Stadium, Yerevan, Armenia? <context>: CREATE TABLE table_name_70 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_70 WHERE venue = "hrazdan stadium, yerevan, armenia"
45,120
<question>: Who was the bronze medal when the Asian Games were held in Busan? <context>: CREATE TABLE table_name_81 (bronze VARCHAR, location VARCHAR)
SELECT bronze FROM table_name_81 WHERE location = "busan"
45,121
<question>: Who won the gold when Kim Hyang-Mi won the bronze? <context>: CREATE TABLE table_name_97 (gold VARCHAR, bronze VARCHAR)
SELECT gold FROM table_name_97 WHERE bronze = "kim hyang-mi"
45,122
<question>: What was the earliest year that Park Jung-Ah won the gold? <context>: CREATE TABLE table_name_16 (year INTEGER, gold VARCHAR)
SELECT MIN(year) FROM table_name_16 WHERE gold = "park jung-ah"
45,123
<question>: Who won the bronze when the Asian Games were in Doha? <context>: CREATE TABLE table_name_70 (bronze VARCHAR, location VARCHAR)
SELECT bronze FROM table_name_70 WHERE location = "doha"
45,124
<question>: What was the Attendance on November 29, 1953? <context>: CREATE TABLE table_name_56 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_56 WHERE date = "november 29, 1953"
45,125
<question>: Which NFL team picked Patrick Collins? <context>: CREATE TABLE table_name_30 (nfl_team VARCHAR, player VARCHAR)
SELECT nfl_team FROM table_name_30 WHERE player = "patrick collins"
45,126
<question>: Which NFL team picked a player for the Wide Receiver position? <context>: CREATE TABLE table_name_19 (nfl_team VARCHAR, position VARCHAR)
SELECT nfl_team FROM table_name_19 WHERE position = "wide receiver"
45,127
<question>: What result has a year after 2002? <context>: CREATE TABLE table_name_35 (result VARCHAR, year INTEGER)
SELECT result FROM table_name_35 WHERE year > 2002
45,128
<question>: What tournament has a year prior to 2001? <context>: CREATE TABLE table_name_26 (tournament VARCHAR, year INTEGER)
SELECT tournament FROM table_name_26 WHERE year < 2001
45,129
<question>: On what date does visiting team Minnesota score higher than 47 points? <context>: CREATE TABLE table_name_34 (date VARCHAR, points VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_34 WHERE points > 47 AND visitor = "minnesota"
45,130
<question>: What date does visitor team Toronto score less than 49 points and has record of 18-17-7? <context>: CREATE TABLE table_name_73 (date VARCHAR, record VARCHAR, visitor VARCHAR, points VARCHAR)
SELECT date FROM table_name_73 WHERE visitor = "toronto" AND points < 49 AND record = "18-17-7"
45,131
<question>: What is the fleet number for the model of Gillig Phantom 3096TB? <context>: CREATE TABLE table_name_95 (fleet_number VARCHAR, model VARCHAR)
SELECT fleet_number FROM table_name_95 WHERE model = "gillig phantom 3096tb"
45,132
<question>: What is the width for the year of the 1970? <context>: CREATE TABLE table_name_38 (width VARCHAR, year VARCHAR)
SELECT width FROM table_name_38 WHERE year = "1970"
45,133
<question>: Which year has a fleet number of 603? <context>: CREATE TABLE table_name_22 (year VARCHAR, fleet_number VARCHAR)
SELECT year FROM table_name_22 WHERE fleet_number = "603"
45,134
<question>: What is the length of fleet number 501-506? <context>: CREATE TABLE table_name_62 (length VARCHAR, fleet_number VARCHAR)
SELECT length FROM table_name_62 WHERE fleet_number = "501-506"
45,135
<question>: What is fleet number for the year of 19xx? <context>: CREATE TABLE table_name_62 (fleet_number VARCHAR, year VARCHAR)
SELECT fleet_number FROM table_name_62 WHERE year = "19xx"
45,136
<question>: What is the fleet number of Model Orion 01.507? <context>: CREATE TABLE table_name_23 (fleet_number VARCHAR, model VARCHAR)
SELECT fleet_number FROM table_name_23 WHERE model = "orion 01.507"
45,137
<question>: What is the highest round of Ed Smith, who had a pick higher than 261 and played halfback? <context>: CREATE TABLE table_name_78 (round INTEGER, player VARCHAR, pick VARCHAR, position VARCHAR)
SELECT MAX(round) FROM table_name_78 WHERE pick < 261 AND position = "halfback" AND player = "ed smith"
45,138
<question>: What is the lowest round of Ed Smith, who had a pick lower than 19? <context>: CREATE TABLE table_name_29 (round INTEGER, player VARCHAR, pick VARCHAR)
SELECT MIN(round) FROM table_name_29 WHERE player = "ed smith" AND pick > 19
45,139
<question>: Which player had a round of 27? <context>: CREATE TABLE table_name_4 (player VARCHAR, round VARCHAR)
SELECT player FROM table_name_4 WHERE round = 27
45,140
<question>: What is the position of the player with a round less than 20 from the school/club Washington? <context>: CREATE TABLE table_name_17 (position VARCHAR, round VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_17 WHERE round < 20 AND school_club_team = "washington"
45,141
<question>: Location of hemisfair arena had what record? <context>: CREATE TABLE table_name_43 (record VARCHAR, location VARCHAR)
SELECT record FROM table_name_43 WHERE location = "hemisfair arena"
45,142
<question>: Record of 20–4 involved what highest game? <context>: CREATE TABLE table_name_44 (game INTEGER, record VARCHAR)
SELECT MAX(game) FROM table_name_44 WHERE record = "20–4"
45,143
<question>: Opponent of @ phoenix suns had what sum of game? <context>: CREATE TABLE table_name_52 (game INTEGER, opponent VARCHAR)
SELECT SUM(game) FROM table_name_52 WHERE opponent = "@ phoenix suns"
45,144
<question>: Score of 122–105 had what record? <context>: CREATE TABLE table_name_68 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_68 WHERE score = "122–105"
45,145
<question>: In the final, who are the opponents of partner Simon Aspelin? <context>: CREATE TABLE table_name_9 (opponents_in_the_final VARCHAR, partner VARCHAR)
SELECT opponents_in_the_final FROM table_name_9 WHERE partner = "simon aspelin"
45,146
<question>: For the tournament played on 26 February 2006, what surface was used? <context>: CREATE TABLE table_name_35 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_35 WHERE date = "26 february 2006"
45,147
<question>: Which Date has a Record of 58–10? <context>: CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_78 WHERE record = "58–10"
45,148
<question>: Which Date has a Score of 106–112? <context>: CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_58 WHERE score = "106–112"
45,149
<question>: Who was second when Martynas Norkus was the skip? <context>: CREATE TABLE table_name_86 (second VARCHAR, skip VARCHAR)
SELECT second FROM table_name_86 WHERE skip = "martynas norkus"
45,150
<question>: Who was the second when Ilian Kirilov was the lead? <context>: CREATE TABLE table_name_2 (second VARCHAR, lead VARCHAR)
SELECT second FROM table_name_2 WHERE lead = "ilian kirilov"
45,151
<question>: Who was the lead when Jamie Meikle was the skip? <context>: CREATE TABLE table_name_11 (lead VARCHAR, skip VARCHAR)
SELECT lead FROM table_name_11 WHERE skip = "jamie meikle"
45,152
<question>: Who was the lead when Ritvars Gulbis was the skip? <context>: CREATE TABLE table_name_10 (lead VARCHAR, skip VARCHAR)
SELECT lead FROM table_name_10 WHERE skip = "ritvars gulbis"
45,153
<question>: Who came in third in England? <context>: CREATE TABLE table_name_60 (third VARCHAR, nation VARCHAR)
SELECT third FROM table_name_60 WHERE nation = "england"
45,154
<question>: In what nation did Darko Sovran place third? <context>: CREATE TABLE table_name_19 (nation VARCHAR, third VARCHAR)
SELECT nation FROM table_name_19 WHERE third = "darko sovran"
45,155
<question>: What is the tournament with a w/o score on November 5, 2007? <context>: CREATE TABLE table_name_62 (tournament VARCHAR, score VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_62 WHERE score = "w/o" AND date = "november 5, 2007"
45,156
<question>: What is the surface of eckental tournament with a w/o score? <context>: CREATE TABLE table_name_94 (surface VARCHAR, tournament VARCHAR, score VARCHAR)
SELECT surface FROM table_name_94 WHERE tournament = "eckental" AND score = "w/o"
45,157
<question>: What is the tournament with a hard surface and Ruben de Kleijn as the opponent? <context>: CREATE TABLE table_name_64 (tournament VARCHAR, surface VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_64 WHERE surface = "hard" AND opponent = "ruben de kleijn"
45,158
<question>: What is the score of the tournament on November 5, 2007 with a carpet surface? <context>: CREATE TABLE table_name_90 (score VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score FROM table_name_90 WHERE surface = "carpet" AND date = "november 5, 2007"
45,159
<question>: What is the surface of the tournament with Sascha Kloer as the opponent? <context>: CREATE TABLE table_name_37 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_37 WHERE opponent = "sascha kloer"
45,160
<question>: what team scored in gomel <context>: CREATE TABLE table_name_10 (team VARCHAR, location VARCHAR)
SELECT team FROM table_name_10 WHERE location = "gomel"
45,161
<question>: What is the average conceded number of the team with a position lower than 8 and more than 2 wins? <context>: CREATE TABLE table_name_68 (conceded INTEGER, position VARCHAR, wins VARCHAR)
SELECT AVG(conceded) FROM table_name_68 WHERE position > 8 AND wins > 2
45,162
<question>: What is the averaged scored number of team guaraní, which has less than 6 draws and less than 5 losses? <context>: CREATE TABLE table_name_30 (scored INTEGER, losses VARCHAR, draws VARCHAR, team VARCHAR)
SELECT AVG(scored) FROM table_name_30 WHERE draws < 6 AND team = "guaraní" AND losses < 5
45,163
<question>: What is the total number scored of the team positioned lower than 10? <context>: CREATE TABLE table_name_72 (scored VARCHAR, position INTEGER)
SELECT COUNT(scored) FROM table_name_72 WHERE position > 10
45,164
<question>: What is the lowest number of wins of the team with less than 24 scored, 27 conceded, and more than 18 played? <context>: CREATE TABLE table_name_32 (wins INTEGER, played VARCHAR, scored VARCHAR, conceded VARCHAR)
SELECT MIN(wins) FROM table_name_32 WHERE scored < 24 AND conceded = 27 AND played > 18
45,165
<question>: What is the lowest number of points of the team with 2 losses and a lower than 1 position? <context>: CREATE TABLE table_name_73 (points INTEGER, losses VARCHAR, position VARCHAR)
SELECT MIN(points) FROM table_name_73 WHERE losses = 2 AND position > 1
45,166
<question>: What is the Intercontinental Cup 1993 result for a Supercopa Sudamericana 1993 result of round of 16? <context>: CREATE TABLE table_name_23 (intercontinental_cup_1993 VARCHAR, supercopa_sudamericana_1993 VARCHAR)
SELECT intercontinental_cup_1993 FROM table_name_23 WHERE supercopa_sudamericana_1993 = "round of 16"
45,167
<question>: What is the earliest game in November with more than 22 Games and Toronto Maple Leafs as the Opponent? <context>: CREATE TABLE table_name_69 (november INTEGER, game VARCHAR, opponent VARCHAR)
SELECT MIN(november) FROM table_name_69 WHERE game > 22 AND opponent = "toronto maple leafs"
45,168
<question>: What is the family friendly status of the punk genre song from the 1970s? <context>: CREATE TABLE table_name_8 (family_friendly VARCHAR, decade VARCHAR, genre VARCHAR)
SELECT family_friendly FROM table_name_8 WHERE decade = "1970s" AND genre = "punk"
45,169
<question>: Who is the artist of the rock song? <context>: CREATE TABLE table_name_7 (artist VARCHAR, genre VARCHAR)
SELECT artist FROM table_name_7 WHERE genre = "rock"
45,170
<question>: What is the highest number of bronze medals for nations with under 0 golds? <context>: CREATE TABLE table_name_46 (bronze INTEGER, gold INTEGER)
SELECT MAX(bronze) FROM table_name_46 WHERE gold < 0
45,171
<question>: How many points did Stuart have when he had 0 extra points? <context>: CREATE TABLE table_name_53 (points INTEGER, player VARCHAR, extra_points VARCHAR)
SELECT MIN(points) FROM table_name_53 WHERE player = "stuart" AND extra_points < 0
45,172
<question>: Who had the lowest field goals but had 10 points and more than 2 touchdowns? <context>: CREATE TABLE table_name_68 (field_goals INTEGER, points VARCHAR, touchdowns VARCHAR)
SELECT MIN(field_goals) FROM table_name_68 WHERE points = 10 AND touchdowns > 2
45,173
<question>: How many points did Stuart have when he had less than 1 touchdown? <context>: CREATE TABLE table_name_80 (points INTEGER, player VARCHAR, touchdowns VARCHAR)
SELECT SUM(points) FROM table_name_80 WHERE player = "stuart" AND touchdowns < 1
45,174
<question>: Who had a points average with 0 extra points and 0 field goals? <context>: CREATE TABLE table_name_33 (points INTEGER, extra_points VARCHAR, field_goals VARCHAR)
SELECT AVG(points) FROM table_name_33 WHERE extra_points = 0 AND field_goals > 0
45,175
<question>: What was the result in the Golden Reel Awards? <context>: CREATE TABLE table_name_38 (result VARCHAR, event VARCHAR)
SELECT result FROM table_name_38 WHERE event = "golden reel awards"
45,176
<question>: Record of 16–29 is how many attendance? <context>: CREATE TABLE table_name_32 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_32 WHERE record = "16–29"
45,177
<question>: Loss of peavy (4–3) is what score? <context>: CREATE TABLE table_name_5 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_5 WHERE loss = "peavy (4–3)"
45,178
<question>: Score of 3–2, and a Opponent of reds had what sum of attendance? <context>: CREATE TABLE table_name_21 (attendance INTEGER, score VARCHAR, opponent VARCHAR)
SELECT SUM(attendance) FROM table_name_21 WHERE score = "3–2" AND opponent = "reds"
45,179
<question>: Score of 6–4, and a Opponent of @ marlins had what record? <context>: CREATE TABLE table_name_96 (record VARCHAR, score VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_96 WHERE score = "6–4" AND opponent = "@ marlins"
45,180
<question>: Which Cuts made has a Tournament of totals, and Wins smaller than 11? <context>: CREATE TABLE table_name_25 (cuts_made INTEGER, tournament VARCHAR, wins VARCHAR)
SELECT AVG(cuts_made) FROM table_name_25 WHERE tournament = "totals" AND wins < 11
45,181
<question>: Which Top-25 has a Top-5 smaller than 0? <context>: CREATE TABLE table_name_3 (top_25 INTEGER, top_5 INTEGER)
SELECT SUM(top_25) FROM table_name_3 WHERE top_5 < 0
45,182
<question>: Which Top-25 has a Top-5 larger than 9, and Wins smaller than 11? <context>: CREATE TABLE table_name_71 (top_25 INTEGER, top_5 VARCHAR, wins VARCHAR)
SELECT SUM(top_25) FROM table_name_71 WHERE top_5 > 9 AND wins < 11
45,183
<question>: Which Top-5 is the highest one that has Wins of 0, and Events larger than 6? <context>: CREATE TABLE table_name_47 (top_5 INTEGER, wins VARCHAR, events VARCHAR)
SELECT MAX(top_5) FROM table_name_47 WHERE wins = 0 AND events > 6
45,184
<question>: Which Top-5 is the lowest one that has Cuts made of 10, and Events larger than 10? <context>: CREATE TABLE table_name_88 (top_5 INTEGER, cuts_made VARCHAR, events VARCHAR)
SELECT MIN(top_5) FROM table_name_88 WHERE cuts_made = 10 AND events > 10
45,185
<question>: Which Events is the highest one that has a Top-10 larger than 7, and Wins smaller than 2? <context>: CREATE TABLE table_name_39 (events INTEGER, top_10 VARCHAR, wins VARCHAR)
SELECT MAX(events) FROM table_name_39 WHERE top_10 > 7 AND wins < 2
45,186
<question>: When the surface is clay, and the tournament of barcelona what is the score? <context>: CREATE TABLE table_name_29 (score VARCHAR, surface VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_29 WHERE surface = "clay" AND tournament = "barcelona"
45,187
<question>: What was the surface when the opponent was judith wiesner, and the outcome was winner? <context>: CREATE TABLE table_name_51 (surface VARCHAR, outcome VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_51 WHERE outcome = "winner" AND opponent = "judith wiesner"
45,188
<question>: What is the opponent for the tournament of rio de janeiro? <context>: CREATE TABLE table_name_22 (opponent VARCHAR, tournament VARCHAR)
SELECT opponent FROM table_name_22 WHERE tournament = "rio de janeiro"
45,189
<question>: What is the opponent with the outcome of runner-up with a date of 19 september 1994? <context>: CREATE TABLE table_name_25 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_25 WHERE outcome = "runner-up" AND date = "19 september 1994"
45,190
<question>: What was the opponent for the tournament of taranto? <context>: CREATE TABLE table_name_97 (opponent VARCHAR, tournament VARCHAR)
SELECT opponent FROM table_name_97 WHERE tournament = "taranto"
45,191
<question>: Who had the fastest lap where Joan Lascorz was the winner? <context>: CREATE TABLE table_name_45 (fastest_lap VARCHAR, race_winner VARCHAR)
SELECT fastest_lap FROM table_name_45 WHERE race_winner = "joan lascorz"
45,192
<question>: Who won the round in Europe? <context>: CREATE TABLE table_name_1 (race_winner VARCHAR, round VARCHAR)
SELECT race_winner FROM table_name_1 WHERE round = "europe"
45,193
<question>: How many games have a Score of 3–0, and a January larger than 12? <context>: CREATE TABLE table_name_16 (game VARCHAR, score VARCHAR, january VARCHAR)
SELECT COUNT(game) FROM table_name_16 WHERE score = "3–0" AND january > 12
45,194
<question>: Which Opponent has a January larger than 8, and a Game smaller than 48, and a Score of 5–3? <context>: CREATE TABLE table_name_77 (opponent VARCHAR, score VARCHAR, january VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_77 WHERE january > 8 AND game < 48 AND score = "5–3"
45,195
<question>: Which Game is the highest that has a January of 28? <context>: CREATE TABLE table_name_51 (game INTEGER, january VARCHAR)
SELECT MAX(game) FROM table_name_51 WHERE january = 28
45,196
<question>: Which Score has a Game larger than 47, and a January smaller than 25? <context>: CREATE TABLE table_name_19 (score VARCHAR, game VARCHAR, january VARCHAR)
SELECT score FROM table_name_19 WHERE game > 47 AND january < 25
45,197
<question>: What stroke has a max power of 109 ps(80kw)@4000 rpm? <context>: CREATE TABLE table_name_39 (stroke VARCHAR, max_power VARCHAR)
SELECT stroke FROM table_name_39 WHERE max_power = "109 ps(80kw)@4000 rpm"
45,198
<question>: The nissan primera p12 nissan almera n16 has what C.R.? <context>: CREATE TABLE table_name_60 (cr VARCHAR, vehicle VARCHAR)
SELECT cr FROM table_name_60 WHERE vehicle = "nissan primera p12 nissan almera n16"
45,199
<question>: What displacement has the code yd22ddt? <context>: CREATE TABLE table_name_22 (displacement VARCHAR, code VARCHAR)
SELECT displacement FROM table_name_22 WHERE code = "yd22ddt"