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