combined_text stringlengths 106 1.05k |
|---|
###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"###context:CREATE TABLE table_name_97 (general_cla... |
###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"###context:CREATE TABLE table_name_13 (combativity_award VARCHAR, winner 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###context:CREATE TABLE table_name_51 (air_date VARCHAR, order 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###context:CREATE TABLE table_name_1 (air_date VARCHAR, viewers 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###context:CREATE TABLE table_name_44 (viewers VARCHAR, order 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###context:CREATE TABLE table_name_45 (episode VARCHAR, air_date VARCHAR, viewers 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###context:CREATE TABLE table_name_19 (year INTEGER, copies_sold VARCHAR, oricon_position 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###context:CREATE TABLE table_name_85 (copies_sold VARCHAR, oricon_position VARCHAR, year VARCHAR) |
###question:What was the Winning Score on May 29, 1977?###answer:SELECT winning_score FROM table_name_2 WHERE date = "may 29, 1977"###context:CREATE TABLE table_name_2 (winning_score VARCHAR, date VARCHAR) |
###question:On what Date was Patty Sheehan Runner(s)-up?###answer: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 Judy Rankin Runner(s)-up?###answer: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 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)###context:CREATE TABLE table_name_95 (date VARCHAR, winning_score 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"###context:CREATE TABLE table_name_6 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR) |
###question:What date did the team play home in Toronto?###answer:SELECT date FROM table_name_64 WHERE home = "toronto"###context:CREATE TABLE table_name_64 (date VARCHAR, home 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)"###context:CREATE TABLE table_name_6 (attendance INTEGER, visitor VARCHAR, leading_s... |
###question:When did they play Utah at home?###answer:SELECT date FROM table_name_38 WHERE home = "utah"###context:CREATE TABLE table_name_38 (date VARCHAR, home VARCHAR) |
###question:What opponent has balboa stadium as the opponent?###answer:SELECT opponent FROM table_name_4 WHERE stadium = "balboa stadium"###context:CREATE TABLE table_name_4 (opponent VARCHAR, stadium 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###context:CREATE TABLE table_name_83 (attendance INTEGER, opponent VARCHAR, week VARCHAR) |
###question:Where is the headquarter of the conglomerate industry?###answer:SELECT headquarters FROM table_name_42 WHERE primary_industry = "conglomerate"###context:CREATE TABLE table_name_42 (headquarters VARCHAR, primary_industry 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"###context:CREATE TABLE table_name_70 (date VARCHAR, venue 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"###context:CREATE TABLE table_name_81 (bronze VARCHAR, location 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"###context:CREATE TABLE table_name_97 (gold VARCHAR, bronze 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"###context:CREATE TABLE table_name_16 (year INTEGER, gold VARCHAR) |
###question:Who won the bronze when the Asian Games were in Doha?###answer:SELECT bronze FROM table_name_70 WHERE location = "doha"###context:CREATE TABLE table_name_70 (bronze VARCHAR, location VARCHAR) |
###question:What was the Attendance on November 29, 1953?###answer:SELECT SUM(attendance) FROM table_name_56 WHERE date = "november 29, 1953"###context:CREATE TABLE table_name_56 (attendance INTEGER, date VARCHAR) |
###question:Which NFL team picked Patrick Collins?###answer: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 a player for the Wide Receiver position?###answer:SELECT nfl_team FROM table_name_19 WHERE position = "wide receiver"###context:CREATE TABLE table_name_19 (nfl_team VARCHAR, position VARCHAR) |
###question:What result has a year after 2002?###answer:SELECT result FROM table_name_35 WHERE year > 2002###context:CREATE TABLE table_name_35 (result VARCHAR, year INTEGER) |
###question:What tournament has a year prior to 2001?###answer:SELECT tournament FROM table_name_26 WHERE year < 2001###context:CREATE TABLE table_name_26 (tournament VARCHAR, year INTEGER) |
###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"###context:CREATE TABLE table_name_34 (date VARCHAR, points VARCHAR, visitor 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"###context:CREATE TABLE table_name_73 (date VARCHAR, record VARCHAR, visitor VARCHAR, points 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"###context:CREATE TABLE table_name_95 (fleet_number VARCHAR, model VARCHAR) |
###question:What is the width for the year of the 1970?###answer:SELECT width FROM table_name_38 WHERE year = "1970"###context:CREATE TABLE table_name_38 (width VARCHAR, year VARCHAR) |
###question:Which year has a fleet number of 603?###answer:SELECT year FROM table_name_22 WHERE fleet_number = "603"###context:CREATE TABLE table_name_22 (year 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"###context:CREATE TABLE table_name_62 (length VARCHAR, fleet_number VARCHAR) |
###question:What is fleet number for the year of 19xx?###answer:SELECT fleet_number FROM table_name_62 WHERE year = "19xx"###context:CREATE TABLE table_name_62 (fleet_number VARCHAR, year 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"###context:CREATE TABLE table_name_23 (fleet_number VARCHAR, model 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"###context:CREATE TABLE table_name_78 (round INTEGER, player VARCHAR, pick VARCHAR, position 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###context:CREATE TABLE table_name_29 (round INTEGER, player VARCHAR, pick VARCHAR) |
###question:Which player had a round of 27?###answer:SELECT player FROM table_name_4 WHERE round = 27###context:CREATE TABLE table_name_4 (player VARCHAR, round 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"###context:CREATE TABLE table_name_17 (position VARCHAR, round VARCHAR, school_club_team VARCHAR) |
###question:Location of hemisfair arena had what record?###answer:SELECT record FROM table_name_43 WHERE location = "hemisfair arena"###context:CREATE TABLE table_name_43 (record VARCHAR, location VARCHAR) |
###question:Record of 20–4 involved what highest game?###answer:SELECT MAX(game) FROM table_name_44 WHERE record = "20–4"###context:CREATE TABLE table_name_44 (game INTEGER, record VARCHAR) |
###question:Opponent of @ phoenix suns had what sum of game?###answer:SELECT SUM(game) FROM table_name_52 WHERE opponent = "@ phoenix suns"###context:CREATE TABLE table_name_52 (game INTEGER, opponent VARCHAR) |
###question:Score of 122–105 had what record?###answer:SELECT record FROM table_name_68 WHERE score = "122–105"###context:CREATE TABLE table_name_68 (record VARCHAR, score 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"###context:CREATE TABLE table_name_9 (opponents_in_the_final VARCHAR, partner 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"###context:CREATE TABLE table_name_35 (surface VARCHAR, date VARCHAR) |
###question:Which Date has a Record of 58–10?###answer: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 Score of 106–112?###answer:SELECT date FROM table_name_58 WHERE score = "106–112"###context:CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR) |
###question:Who was second when Martynas Norkus was the skip?###answer:SELECT second FROM table_name_86 WHERE skip = "martynas norkus"###context:CREATE TABLE table_name_86 (second VARCHAR, skip VARCHAR) |
###question:Who was the second when Ilian Kirilov was the lead?###answer:SELECT second FROM table_name_2 WHERE lead = "ilian kirilov"###context:CREATE TABLE table_name_2 (second VARCHAR, lead VARCHAR) |
###question:Who was the lead when Jamie Meikle was the skip?###answer: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 Ritvars Gulbis was the skip?###answer:SELECT lead FROM table_name_10 WHERE skip = "ritvars gulbis"###context:CREATE TABLE table_name_10 (lead VARCHAR, skip VARCHAR) |
###question:Who came in third in England?###answer:SELECT third FROM table_name_60 WHERE nation = "england"###context:CREATE TABLE table_name_60 (third VARCHAR, nation VARCHAR) |
###question:In what nation did Darko Sovran place third?###answer:SELECT nation FROM table_name_19 WHERE third = "darko sovran"###context:CREATE TABLE table_name_19 (nation VARCHAR, third 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"###context:CREATE TABLE table_name_62 (tournament VARCHAR, score VARCHAR, date 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"###context:CREATE TABLE table_name_94 (surface VARCHAR, tournament VARCHAR, score 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"###context:CREATE TABLE table_name_64 (tournament VARCHAR, surface VARCHAR, opponent 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"###context:CREATE TABLE table_name_90 (score VARCHAR, surface VARCHAR, date 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"###context:CREATE TABLE table_name_37 (surface VARCHAR, opponent VARCHAR) |
###question:what team scored in gomel###answer:SELECT team FROM table_name_10 WHERE location = "gomel"###context:CREATE TABLE table_name_10 (team VARCHAR, location 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###context:CREATE TABLE table_name_68 (conceded INTEGER, position VARCHAR, wins 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###context:CREATE TABLE table_name_30 (scored INTEGER, losses VARCHAR, draws VARCHAR, team VARCHAR) |
###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###context:CREATE TABLE table_name_72 (scored VARCHAR, position INTEGER) |
###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###context:CREATE TABLE table_name_32 (wins INTEGER, played VARCHAR, scored VARCHAR, conceded 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###context:CREATE TABLE table_name_73 (points INTEGER, losses VARCHAR, position 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"###context:CREATE TABLE table_name_23 (intercontinental_cup_1993 VARCHAR, supercopa_sudamericana... |
###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"###context:CREATE TABLE table_name_69 (november INTEGER, game VARCHAR, opponent 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"###context:CREATE TABLE table_name_8 (family_friendly VARCHAR, decade VARCHAR, genre VARCHAR) |
###question:Who is the artist of the rock song?###answer:SELECT artist FROM table_name_7 WHERE genre = "rock"###context:CREATE TABLE table_name_7 (artist VARCHAR, genre VARCHAR) |
###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###context:CREATE TABLE table_name_46 (bronze INTEGER, gold INTEGER) |
###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###context:CREATE TABLE table_name_53 (points INTEGER, player VARCHAR, extra_points 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###context:CREATE TABLE table_name_68 (field_goals INTEGER, points 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###context:CREATE TABLE table_name_80 (points INTEGER, player VARCHAR, touchdowns 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###context:CREATE TABLE table_name_33 (points INTEGER, extra_points VARCHAR, field_goals VARCHAR) |
###question:What was the result in the Golden Reel Awards?###answer:SELECT result FROM table_name_38 WHERE event = "golden reel awards"###context:CREATE TABLE table_name_38 (result VARCHAR, event VARCHAR) |
###question:Record of 16–29 is how many attendance?###answer:SELECT attendance FROM table_name_32 WHERE record = "16–29"###context:CREATE TABLE table_name_32 (attendance VARCHAR, record VARCHAR) |
###question:Loss of peavy (4–3) is what score?###answer:SELECT score FROM table_name_5 WHERE loss = "peavy (4–3)"###context:CREATE TABLE table_name_5 (score VARCHAR, loss 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"###context:CREATE TABLE table_name_21 (attendance INTEGER, 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"###context:CREATE TABLE table_name_96 (record VARCHAR, score VARCHAR, opponent 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###context:CREATE TABLE table_name_25 (cuts_made INTEGER, tournament VARCHAR, wins VARCHAR) |
###question:Which Top-25 has a Top-5 smaller than 0?###answer: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 larger than 9, and Wins smaller than 11?###answer: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-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###context:CREATE TABLE table_name_47 (top_5 INTEGER, wins 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###context:CREATE TABLE table_name_88 (top_5 INTEGER, cuts_made VARCHAR, events 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###context:CREATE TABLE table_name_39 (events INTEGER, top_10 VARCHAR, wins 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"###context:CREATE TABLE table_name_29 (score VARCHAR, surface VARCHAR, tournament 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"###context:CREATE TABLE table_name_51 (surface VARCHAR, outcome VARCHAR, opponent 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"###context:CREATE TABLE table_name_22 (opponent VARCHAR, tournament 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"###context:CREATE TABLE table_name_25 (opponent VARCHAR, outcome VARCHAR, date VARCHAR) |
###question:What was the opponent for the tournament of taranto?###answer:SELECT opponent FROM table_name_97 WHERE tournament = "taranto"###context:CREATE TABLE table_name_97 (opponent VARCHAR, tournament 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"###context:CREATE TABLE table_name_45 (fastest_lap VARCHAR, race_winner VARCHAR) |
###question:Who won the round in Europe?###answer:SELECT race_winner FROM table_name_1 WHERE round = "europe"###context:CREATE TABLE table_name_1 (race_winner VARCHAR, round 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###context:CREATE TABLE table_name_16 (game VARCHAR, score VARCHAR, january 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"###context:CREATE TABLE table_name_77 (opponent VARCHAR, score VARCHAR, january VARCHAR, game VARCHAR) |
###question:Which Game is the highest that has a January of 28?###answer:SELECT MAX(game) FROM table_name_51 WHERE january = 28###context:CREATE TABLE table_name_51 (game INTEGER, 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###context:CREATE TABLE table_name_19 (score VARCHAR, game VARCHAR, january 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"###context:CREATE TABLE table_name_39 (stroke VARCHAR, max_power 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"###context:CREATE TABLE table_name_60 (cr VARCHAR, vehicle VARCHAR) |
###question:What displacement has the code yd22ddt?###answer:SELECT displacement FROM table_name_22 WHERE code = "yd22ddt"###context:CREATE TABLE table_name_22 (displacement VARCHAR, code VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.