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