question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the type of the locomotive which was delivered in 1857-59?
CREATE TABLE table_name_7 (type VARCHAR, delivered VARCHAR)
{ "SQL_Query": "SELECT type FROM table_name_7 WHERE delivered = \"1857-59\"" }
What is the lowest quantity of the 1b n2 type, which was retired in 1907-12?
CREATE TABLE table_name_50 (quantity INTEGER, type VARCHAR, retired VARCHAR)
{ "SQL_Query": "SELECT MIN(quantity) FROM table_name_50 WHERE type = \"1b n2\" AND retired = \"1907-12\"" }
What district is Jim Moran the incumbent for.
CREATE TABLE table_name_40 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_name_40 WHERE incumbent = \"jim moran\"" }
What was the election result before 2004 where Eric Cantor was the incumbent?
CREATE TABLE table_name_61 (results VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT results FROM table_name_61 WHERE first_elected < 2004 AND incumbent = \"eric cantor\"" }
What is the common English for the Italian word san gallo?
CREATE TABLE table_name_50 (common_english VARCHAR, italian VARCHAR)
{ "SQL_Query": "SELECT common_english FROM table_name_50 WHERE italian = \"san gallo\"" }
What is the italian word for Glarus?
CREATE TABLE table_name_44 (italian VARCHAR, common_english VARCHAR)
{ "SQL_Query": "SELECT italian FROM table_name_44 WHERE common_english = \"glarus\"" }
What is the common english word with the abbr of ai?
CREATE TABLE table_name_81 (common_english VARCHAR, abbr VARCHAR)
{ "SQL_Query": "SELECT common_english FROM table_name_81 WHERE abbr = \"ai\"" }
What is the abbr of argovia?
CREATE TABLE table_name_65 (abbr VARCHAR, italian VARCHAR)
{ "SQL_Query": "SELECT abbr FROM table_name_65 WHERE italian = \"argovia\"" }
What is the french word for fribourg?
CREATE TABLE table_name_72 (french VARCHAR, common_english VARCHAR)
{ "SQL_Query": "SELECT french FROM table_name_72 WHERE common_english = \"fribourg\"" }
What is the abbr for zug?
CREATE TABLE table_name_75 (abbr VARCHAR, common_english VARCHAR)
{ "SQL_Query": "SELECT abbr FROM table_name_75 WHERE common_english = \"zug\"" }
What is the Finish on June 1, 2008?
CREATE TABLE table_name_61 (finish VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT finish FROM table_name_61 WHERE date = \"june 1, 2008\"" }
What is the Track in Louisville, Kentucky?
CREATE TABLE table_name_56 (track VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT track FROM table_name_56 WHERE location = \"louisville, kentucky\"" }
What is the Location of the Event on March 30, 2008?
CREATE TABLE table_name_73 (location VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_73 WHERE date = \"march 30, 2008\"" }
What Race has a Purse of $300,000?
CREATE TABLE table_name_43 (race VARCHAR, purse VARCHAR)
{ "SQL_Query": "SELECT race FROM table_name_43 WHERE purse = \"$300,000\"" }
What is the Purse on January 3, 2010?
CREATE TABLE table_name_33 (purse VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT purse FROM table_name_33 WHERE date = \"january 3, 2010\"" }
What did United States place when the score was 71-70-72-68=281?
CREATE TABLE table_name_17 (place VARCHAR, country VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_17 WHERE country = \"united states\" AND score = 71 - 70 - 72 - 68 = 281" }
What was the average money for United States when Lanny Wadkins played?
CREATE TABLE table_name_94 (money___ INTEGER, country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT AVG(money___) AS $__ FROM table_name_94 WHERE country = \"united states\" AND player = \"lanny wadkins\"" }
What was the to par when the score was 71-70-72-68=281?
CREATE TABLE table_name_92 (to_par VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_92 WHERE score = 71 - 70 - 72 - 68 = 281" }
What is the away team of the game with an attendance of 117?
CREATE TABLE table_name_58 (away_team VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT away_team FROM table_name_58 WHERE attendance = 117" }
Madrid (Stuttgart) tournament with a 1996 of A has this for a Career SR?
CREATE TABLE table_name_66 (career_sr VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT career_sr FROM table_name_66 WHERE 1996 = \"a\" AND tournament = \"madrid (stuttgart)\"" }
Which election has a conservative first party, Rowland Smith as first member, and Sir Henry Wilmot, Bt as second member?
CREATE TABLE table_name_11 (election VARCHAR, second_member VARCHAR, first_party VARCHAR, first_member VARCHAR)
{ "SQL_Query": "SELECT election FROM table_name_11 WHERE first_party = \"conservative\" AND first_member = \"rowland smith\" AND second_member = \"sir henry wilmot, bt\"" }
Which of the first parties has second member as Charles Robert Colvile, and a liberal second party?
CREATE TABLE table_name_50 (first_party VARCHAR, second_member VARCHAR, second_party VARCHAR)
{ "SQL_Query": "SELECT first_party FROM table_name_50 WHERE second_member = \"charles robert colvile\" AND second_party = \"liberal\"" }
Which election has second member Charles Robert Colvile, a conservative first party, and first member William Mundy?
CREATE TABLE table_name_40 (election VARCHAR, first_member VARCHAR, second_member VARCHAR, first_party VARCHAR)
{ "SQL_Query": "SELECT election FROM table_name_40 WHERE second_member = \"charles robert colvile\" AND first_party = \"conservative\" AND first_member = \"william mundy\"" }
Which of the second parties has second member Charles Robert Colvile, a conservative first party, and first member William Mundy?
CREATE TABLE table_name_31 (second_party VARCHAR, first_member VARCHAR, second_member VARCHAR, first_party VARCHAR)
{ "SQL_Query": "SELECT second_party FROM table_name_31 WHERE second_member = \"charles robert colvile\" AND first_party = \"conservative\" AND first_member = \"william mundy\"" }
Who is the first member in the 1868 election?
CREATE TABLE table_name_79 (first_member VARCHAR, election VARCHAR)
{ "SQL_Query": "SELECT first_member FROM table_name_79 WHERE election = \"1868\"" }
WHAT IS THE SOURCE WITH A TYPE OF TRANSFER AND MEX?
CREATE TABLE table_name_14 (source VARCHAR, type VARCHAR, nat VARCHAR)
{ "SQL_Query": "SELECT source FROM table_name_14 WHERE type = \"transfer\" AND nat = \"mex\"" }
WHAT IS THE NAME WITH BAYER LEVERKUSEN?
CREATE TABLE table_name_53 (name VARCHAR, moving_to VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_53 WHERE moving_to = \"bayer leverkusen\"" }
WHAT NAME HAS A FREE TRANSFER FREE AND RETIRED?
CREATE TABLE table_name_74 (name VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_74 WHERE transfer_fee = \"free\" AND moving_to = \"retired\"" }
WHAT TRANSFER FEE HAS A TYPE OF TRANSFER FOR DOS SANTOS?
CREATE TABLE table_name_62 (transfer_fee VARCHAR, type VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT transfer_fee FROM table_name_62 WHERE type = \"transfer\" AND name = \"dos santos\"" }
What is the sum of the all around with a 37.75 total?
CREATE TABLE table_name_68 (all_around INTEGER, total VARCHAR)
{ "SQL_Query": "SELECT SUM(all_around) FROM table_name_68 WHERE total = 37.75" }
What is the average final with an all around larger than 19.4 and total more than 39.9?
CREATE TABLE table_name_12 (final INTEGER, all_around VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT AVG(final) FROM table_name_12 WHERE all_around > 19.4 AND total > 39.9" }
What is the name of the storm active during season aggregates?
CREATE TABLE table_name_48 (name VARCHAR, dates_active VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_48 WHERE dates_active = \"season aggregates\"" }
What report has tour match as the status, with an against less than 22?
CREATE TABLE table_name_92 (report VARCHAR, status VARCHAR, against VARCHAR)
{ "SQL_Query": "SELECT report FROM table_name_92 WHERE status = \"tour match\" AND against < 22" }
How many againsts have asba park, kimberley as the venue?
CREATE TABLE table_name_66 (against INTEGER, venue VARCHAR)
{ "SQL_Query": "SELECT SUM(against) FROM table_name_66 WHERE venue = \"asba park, kimberley\"" }
What status has gauteng falcons as the opposing team?
CREATE TABLE table_name_2 (status VARCHAR, opposing_team VARCHAR)
{ "SQL_Query": "SELECT status FROM table_name_2 WHERE opposing_team = \"gauteng falcons\"" }
What opposing team has second test as the status?
CREATE TABLE table_name_12 (opposing_team VARCHAR, status VARCHAR)
{ "SQL_Query": "SELECT opposing_team FROM table_name_12 WHERE status = \"second test\"" }
What report has gauteng falcons as the opposing team?
CREATE TABLE table_name_81 (report VARCHAR, opposing_team VARCHAR)
{ "SQL_Query": "SELECT report FROM table_name_81 WHERE opposing_team = \"gauteng falcons\"" }
What status has 18 as the against?
CREATE TABLE table_name_34 (status VARCHAR, against VARCHAR)
{ "SQL_Query": "SELECT status FROM table_name_34 WHERE against = 18" }
What is the number of recepits per arrival in 2010 (col 2)/(col 1) USD with colombia (1) as the selected carribean and latin american country?
CREATE TABLE table_name_71 (receipts_per_arrival_2010__col_2___col_1____usd__ VARCHAR, selected_caribbean_and_n_latin_america_countries VARCHAR)
{ "SQL_Query": "SELECT receipts_per_arrival_2010__col_2___col_1____usd__ FROM table_name_71 WHERE selected_caribbean_and_n_latin_america_countries = \"colombia (1)\"" }
What is 17th c., when Initial-Syllable Open/Semi-Open Unstressed Vowels is "o /ɵ/"?
CREATE TABLE table_name_76 (initial_syllable_open_semi_open_unstressed_vowels VARCHAR)
{ "SQL_Query": "SELECT 17 AS th_c FROM table_name_76 WHERE initial_syllable_open_semi_open_unstressed_vowels = \"o /ɵ/\"" }
What is British, when Examples is "November, rotunda, colossus, proscenium"?
CREATE TABLE table_name_12 (british VARCHAR, examples VARCHAR)
{ "SQL_Query": "SELECT british FROM table_name_12 WHERE examples = \"november, rotunda, colossus, proscenium\"" }
What is American, when British is "ɪ, ə", and when Initial-Syllable Open/Semi-Open Unstressed Vowels is "æ /ɨ/"?
CREATE TABLE table_name_23 (american VARCHAR, british VARCHAR, initial_syllable_open_semi_open_unstressed_vowels VARCHAR)
{ "SQL_Query": "SELECT american FROM table_name_23 WHERE british = \"ɪ, ə\" AND initial_syllable_open_semi_open_unstressed_vowels = \"æ /ɨ/\"" }
What is Initial-Syllable Open/Semi-Open Unstresses Vowels, when Australian is "ə"?
CREATE TABLE table_name_15 (initial_syllable_open_semi_open_unstressed_vowels VARCHAR, australian VARCHAR)
{ "SQL_Query": "SELECT initial_syllable_open_semi_open_unstressed_vowels FROM table_name_15 WHERE australian = \"ə\"" }
What is Australian, when British is "aɪ, ɪ, ə"?
CREATE TABLE table_name_12 (australian VARCHAR, british VARCHAR)
{ "SQL_Query": "SELECT australian FROM table_name_12 WHERE british = \"aɪ, ɪ, ə\"" }
What is American, when Initial-Syllable Open/Semi-Open Unstressed Vowels is "y /aɪ, ɨ/"?
CREATE TABLE table_name_7 (american VARCHAR, initial_syllable_open_semi_open_unstressed_vowels VARCHAR)
{ "SQL_Query": "SELECT american FROM table_name_7 WHERE initial_syllable_open_semi_open_unstressed_vowels = \"y /aɪ, ɨ/\"" }
What is the date for catalog RCD 10160?
CREATE TABLE table_name_15 (date VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_15 WHERE catalog = \"rcd 10160\"" }
What country has CD format and catalog RCD 10523?
CREATE TABLE table_name_45 (country VARCHAR, format VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_45 WHERE format = \"cd\" AND catalog = \"rcd 10523\"" }
Which country is dated October 20, 1976?
CREATE TABLE table_name_83 (country VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_83 WHERE date = \"october 20, 1976\"" }
Which label has the catalog CDZAP22?
CREATE TABLE table_name_65 (label VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_65 WHERE catalog = \"cdzap22\"" }
What is the date for the catalog CDZAP22 in the United Kingdom?
CREATE TABLE table_name_69 (date VARCHAR, country VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_69 WHERE country = \"united kingdom\" AND catalog = \"cdzap22\"" }
What is Place, when Score is "66", when Country is "United States", and when Player is "Dudley Hart"?
CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR, score VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_84 WHERE score = 66 AND country = \"united states\" AND player = \"dudley hart\"" }
What is the lowest Score, when Place is "1"?
CREATE TABLE table_name_32 (score INTEGER, place VARCHAR)
{ "SQL_Query": "SELECT MIN(score) FROM table_name_32 WHERE place = \"1\"" }
What is To Par, when Score is "66", and when Player is "Brad Faxon"?
CREATE TABLE table_name_25 (to_par VARCHAR, score VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_25 WHERE score = 66 AND player = \"brad faxon\"" }
What is the Opponent in the final after 2008 at the Paul Hunter Classic?
CREATE TABLE table_name_1 (opponent_in_the_final VARCHAR, year VARCHAR, championship VARCHAR)
{ "SQL_Query": "SELECT opponent_in_the_final FROM table_name_1 WHERE year > 2008 AND championship = \"paul hunter classic\"" }
What is the latest year for first elected with john hostettler as incumbent and a result of lost re-election democratic gain?
CREATE TABLE table_name_40 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT MAX(first_elected) FROM table_name_40 WHERE results = \"lost re-election democratic gain\" AND incumbent = \"john hostettler\"" }
Who is the owner/operator of the line from Kambalda to Esperance?
CREATE TABLE table_name_18 (owner_operator VARCHAR, from_to VARCHAR)
{ "SQL_Query": "SELECT owner_operator FROM table_name_18 WHERE from_to = \"kambalda to esperance\"" }
What is the name of the line from Karratha to Port Hedland?
CREATE TABLE table_name_74 (name__year_commissioned_ VARCHAR, from_to VARCHAR)
{ "SQL_Query": "SELECT name__year_commissioned_ FROM table_name_74 WHERE from_to = \"karratha to port hedland\"" }
What is the maximum diameter of the Mid West Gas Pipeline (1999)?
CREATE TABLE table_name_57 (maximum_diameter VARCHAR, name__year_commissioned_ VARCHAR)
{ "SQL_Query": "SELECT maximum_diameter FROM table_name_57 WHERE name__year_commissioned_ = \"mid west gas pipeline (1999)\"" }
Who is the owner operator who has license number PL 59?
CREATE TABLE table_name_85 (owner_operator VARCHAR, licence_number VARCHAR)
{ "SQL_Query": "SELECT owner_operator FROM table_name_85 WHERE licence_number = \"pl 59\"" }
What is the license number where the maximum diameter is 400 mm?
CREATE TABLE table_name_14 (licence_number VARCHAR, maximum_diameter VARCHAR)
{ "SQL_Query": "SELECT licence_number FROM table_name_14 WHERE maximum_diameter = \"400 mm\"" }
What is the name where the license number is PL 22?
CREATE TABLE table_name_7 (name__year_commissioned_ VARCHAR, licence_number VARCHAR)
{ "SQL_Query": "SELECT name__year_commissioned_ FROM table_name_7 WHERE licence_number = \"pl 22\"" }
Which venue has 16 against?
CREATE TABLE table_name_5 (venue VARCHAR, against VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_5 WHERE against = 16" }
What is the against for the opposing team of Wales with the status of Five Nations?
CREATE TABLE table_name_52 (against INTEGER, status VARCHAR, opposing_teams VARCHAR)
{ "SQL_Query": "SELECT AVG(against) FROM table_name_52 WHERE status = \"five nations\" AND opposing_teams = \"wales\"" }
Can you tell me the average Average that has the Rank larger than 4, and the Player of dean minors?
CREATE TABLE table_name_77 (average INTEGER, rank VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT AVG(average) FROM table_name_77 WHERE rank > 4 AND player = \"dean minors\"" }
What is the venue where john zibnack was the runner-up?
CREATE TABLE table_name_54 (venue VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_54 WHERE runner_up = \"john zibnack\"" }
Who is the winner in des moines, iowa where p.h. finkbank was the runner-up?
CREATE TABLE table_name_14 (winner VARCHAR, location VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_14 WHERE location = \"des moines, iowa\" AND runner_up = \"p.h. finkbank\"" }
What is the location where ed c. kingsley was the runner-up in 1939?
CREATE TABLE table_name_63 (location VARCHAR, runner_up VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_63 WHERE runner_up = \"ed c. kingsley\" AND year = \"1939\"" }
Who is the winner when mark fuller was the runner-up?
CREATE TABLE table_name_81 (winner VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_81 WHERE runner_up = \"mark fuller\"" }
What is the venue in 2002?
CREATE TABLE table_name_86 (venue VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_86 WHERE year = \"2002\"" }
Who is the runner-up in 1901?
CREATE TABLE table_name_78 (runner_up VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT runner_up FROM table_name_78 WHERE year = \"1901\"" }
What Australian sound is equivalent to e /ɛ/?
CREATE TABLE table_name_81 (australian VARCHAR, short_vowels VARCHAR)
{ "SQL_Query": "SELECT australian FROM table_name_81 WHERE short_vowels = \"e /ɛ/\"" }
What was the score of the game when they played at new york islanders?
CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_99 WHERE home = \"new york islanders\"" }
Which of the R. Epp, has J Thiessen of Tjoatj?
CREATE TABLE table_name_90 (r_epp VARCHAR, j_thiessen VARCHAR)
{ "SQL_Query": "SELECT r_epp FROM table_name_90 WHERE j_thiessen = \"tjoatj\"" }
Which of the R. Epp, has Ed Zacharias from Rollen, Jerolt, Golt?
CREATE TABLE table_name_97 (r_epp VARCHAR, ed_zacharias VARCHAR)
{ "SQL_Query": "SELECT r_epp FROM table_name_97 WHERE ed_zacharias = \"rollen, jerolt, golt\"" }
Which of the A. Dyck has J. Thiessen of Du?
CREATE TABLE table_name_68 (a_dyck VARCHAR, j_thiessen VARCHAR)
{ "SQL_Query": "SELECT a_dyck FROM table_name_68 WHERE j_thiessen = \"du\"" }
Which of the H. Rempel has J. J. Neufeld of Sajen?
CREATE TABLE table_name_31 (h_rempel VARCHAR, j_j_neufeld VARCHAR)
{ "SQL_Query": "SELECT h_rempel FROM table_name_31 WHERE j_j_neufeld = \"sajen\"" }
What is the sum of Against, when Status is "Six Nations", and when Date is "30/03/2003"?
CREATE TABLE table_name_20 (against INTEGER, status VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT SUM(against) FROM table_name_20 WHERE status = \"six nations\" AND date = \"30/03/2003\"" }
What is Opposing Teams, when Against is less than 6?
CREATE TABLE table_name_86 (opposing_teams VARCHAR, against INTEGER)
{ "SQL_Query": "SELECT opposing_teams FROM table_name_86 WHERE against < 6" }
What is Date, when Against is "22"?
CREATE TABLE table_name_87 (date VARCHAR, against VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_87 WHERE against = 22" }
What shows for money (£) when South Africa is the country?
CREATE TABLE table_name_44 (money___ INTEGER, country VARCHAR)
{ "SQL_Query": "SELECT MAX(money___) AS £__ FROM table_name_44 WHERE country = \"south africa\"" }
What is the To par when Lanny Wadkins is the player?
CREATE TABLE table_name_66 (to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_66 WHERE player = \"lanny wadkins\"" }
What was the score of the marco island tournament match when Kathleen Horvath won runner-up?
CREATE TABLE table_name_91 (score VARCHAR, outcome VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_91 WHERE outcome = \"runner-up\" AND tournament = \"marco island\"" }
What was the tournament that was on july 6, 1987?
CREATE TABLE table_name_55 (tournament VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_55 WHERE date = \"july 6, 1987\"" }
What is pick 246's position?
CREATE TABLE table_name_94 (position VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_94 WHERE pick = 246" }
Which Pick has a Player of chuck bryant, and an NFL Club of san diego chargers?
CREATE TABLE table_name_58 (pick VARCHAR, player VARCHAR, nfl_club VARCHAR)
{ "SQL_Query": "SELECT pick FROM table_name_58 WHERE player = \"chuck bryant\" AND nfl_club = \"san diego chargers\"" }
What is the position of the pittsburgh steelers?
CREATE TABLE table_name_29 (position VARCHAR, nfl_club VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_29 WHERE nfl_club = \"pittsburgh steelers\"" }
Which NFL Club has a Player of sam tidmore, and a Pick of 81?
CREATE TABLE table_name_43 (nfl_club VARCHAR, player VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT nfl_club FROM table_name_43 WHERE player = \"sam tidmore\" AND pick = 81" }
Which club had round of group stage round 1 and 5?
CREATE TABLE table_name_1 (club VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_1 WHERE round = \"group stage round 1 and 5\"" }
What is the aggregate for the first round for K.S.V. Waregem?
CREATE TABLE table_name_54 (aggregate VARCHAR, round VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT aggregate FROM table_name_54 WHERE round = \"first round\" AND club = \"k.s.v. waregem\"" }
What is the away where the round is the second round?
CREATE TABLE table_name_40 (away VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT away FROM table_name_40 WHERE round = \"second round\"" }
What was the broadcaste date for the episode with a run time of 24:44?
CREATE TABLE table_name_60 (broadcast_date VARCHAR, run_time VARCHAR)
{ "SQL_Query": "SELECT broadcast_date FROM table_name_60 WHERE run_time = \"24:44\"" }
Which Episode had 9.1 million viewers?
CREATE TABLE table_name_65 (episode VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT episode FROM table_name_65 WHERE viewers__in_millions_ = \"9.1\"" }
What is Country, when Previous Team (League) is "Kingston Frontenacs ( OHL )", and when Player is "Anthony Stewart Category:Articles with hCards"?
CREATE TABLE table_name_45 (country VARCHAR, previous_team__league_ VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_45 WHERE previous_team__league_ = \"kingston frontenacs ( ohl )\" AND player = \"anthony stewart category:articles with hcards\"" }
What is Player, when Pick is "3", when Position is "Defense", and when Year is less than 2010?
CREATE TABLE table_name_80 (player VARCHAR, year VARCHAR, pick VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_80 WHERE pick = \"3\" AND position = \"defense\" AND year < 2010" }
What is Position, when Year is less than 2000, and when Player is "Radek Dvorak Category:Articles with hCards"?
CREATE TABLE table_name_81 (position VARCHAR, year VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_81 WHERE year < 2000 AND player = \"radek dvorak category:articles with hcards\"" }
What is Player, when Previous Team (League) is "Medicine Hat Tigers ( WHL )", and when Year is less than 2002?
CREATE TABLE table_name_90 (player VARCHAR, previous_team__league_ VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_90 WHERE previous_team__league_ = \"medicine hat tigers ( whl )\" AND year < 2002" }
What is Country, when Year is "1994"?
CREATE TABLE table_name_93 (country VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_93 WHERE year = 1994" }
What episode has 7.8 million viewers?
CREATE TABLE table_name_13 (episode VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT episode FROM table_name_13 WHERE viewers__in_millions_ = \"7.8\"" }
What episode has a run time of 25:12?
CREATE TABLE table_name_51 (episode VARCHAR, run_time VARCHAR)
{ "SQL_Query": "SELECT episode FROM table_name_51 WHERE run_time = \"25:12\"" }
What is the broadcast date with 7.0 million viewers?
CREATE TABLE table_name_46 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT broadcast_date FROM table_name_46 WHERE viewers__in_millions_ = \"7.0\"" }