question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
How many Mixed Doubles won when Oliver Pongratz won the Men's Singles?
CREATE TABLE table_12164707_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)
{ "SQL_Query": "SELECT COUNT(mixed_doubles) FROM table_12164707_1 WHERE mens_singles = \"Oliver Pongratz\"" }
Who won the Men's Doubles when Guo Xin won the Women's Singles?
CREATE TABLE table_12164707_1 (mens_doubles VARCHAR, womens_singles VARCHAR)
{ "SQL_Query": "SELECT mens_doubles FROM table_12164707_1 WHERE womens_singles = \"Guo Xin\"" }
Which college did Dennis Byrd come from?
CREATE TABLE table_12165999_1 (college VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college FROM table_12165999_1 WHERE player = \"Dennis Byrd\"" }
Bob Johnson plays for which AFL team?
CREATE TABLE table_12165999_1 (afl_team VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT afl_team FROM table_12165999_1 WHERE player = \"Bob Johnson\"" }
What position does the Cincinnati Bengals' player have?
CREATE TABLE table_12165999_1 (position VARCHAR, afl_team VARCHAR)
{ "SQL_Query": "SELECT position FROM table_12165999_1 WHERE afl_team = \"Cincinnati Bengals\"" }
What position does Syracuse's player have?
CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT position FROM table_12165999_1 WHERE college = \"Syracuse\"" }
What college did the Cincinnati Bengals' player come from?
CREATE TABLE table_12165999_1 (college VARCHAR, afl_team VARCHAR)
{ "SQL_Query": "SELECT college FROM table_12165999_1 WHERE afl_team = \"Cincinnati Bengals\"" }
What is the pinyin for explaining music?
CREATE TABLE table_1216675_1 (pinyin VARCHAR, translation VARCHAR)
{ "SQL_Query": "SELECT pinyin FROM table_1216675_1 WHERE translation = \"Explaining Music\"" }
How many subjects have the pinyin shixun?
CREATE TABLE table_1216675_1 (subject VARCHAR, pinyin VARCHAR)
{ "SQL_Query": "SELECT COUNT(subject) FROM table_1216675_1 WHERE pinyin = \"Shixun\"" }
What is the pinyin for explaining beasts?
CREATE TABLE table_1216675_1 (pinyin VARCHAR, translation VARCHAR)
{ "SQL_Query": "SELECT pinyin FROM table_1216675_1 WHERE translation = \"Explaining Beasts\"" }
How many pinyin transaltions are available for the chinese phrase 釋蟲?
CREATE TABLE table_1216675_1 (pinyin VARCHAR, chinese VARCHAR)
{ "SQL_Query": "SELECT COUNT(pinyin) FROM table_1216675_1 WHERE chinese = \"釋蟲\"" }
What chapter number is Shiqiu?
CREATE TABLE table_1216675_1 (chapter INTEGER, pinyin VARCHAR)
{ "SQL_Query": "SELECT MIN(chapter) FROM table_1216675_1 WHERE pinyin = \"Shiqiu\"" }
How many mens doubles when womens doubles is catrine bengtsson margit borg?
CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)
{ "SQL_Query": "SELECT COUNT(mens_doubles) FROM table_12171145_1 WHERE womens_doubles = \"Catrine Bengtsson Margit Borg\"" }
Who is the mens doubles when womens doubles is anastasia chervyakova romina gabdullina?
CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)
{ "SQL_Query": "SELECT mens_doubles FROM table_12171145_1 WHERE womens_doubles = \"Anastasia Chervyakova Romina Gabdullina\"" }
Who is themens doubles when the mens singles is flemming delfs?
CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
{ "SQL_Query": "SELECT mens_doubles FROM table_12171145_1 WHERE mens_singles = \"Flemming Delfs\"" }
Who was the womens doubles when the mixed doubles is jacco arends selena piek?
CREATE TABLE table_12171145_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)
{ "SQL_Query": "SELECT womens_doubles FROM table_12171145_1 WHERE mixed_doubles = \"Jacco Arends Selena Piek\"" }
Who was the mens doubles when womens singles is mette sørensen?
CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, womens_singles VARCHAR)
{ "SQL_Query": "SELECT mens_doubles FROM table_12171145_1 WHERE womens_singles = \"Mette Sørensen\"" }
Who is the Motogp winnder for the Catalunya Circuit?
CREATE TABLE table_12186237_1 (motogp_winner VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT motogp_winner FROM table_12186237_1 WHERE circuit = \"Catalunya\"" }
Who is the 125cc winnder for the Phillip Island circuit?
CREATE TABLE table_12186237_1 (circuit VARCHAR)
{ "SQL_Query": "SELECT 125 AS cc_winner FROM table_12186237_1 WHERE circuit = \"Phillip Island\"" }
What is the date of the German Grand Prix?
CREATE TABLE table_12186237_1 (date VARCHAR, grand_prix VARCHAR)
{ "SQL_Query": "SELECT date FROM table_12186237_1 WHERE grand_prix = \"German grand_prix\"" }
What circuit was on the date 4 May?
CREATE TABLE table_12186237_1 (circuit VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT circuit FROM table_12186237_1 WHERE date = \"4 May\"" }
Name the number of mens doubles for 2004/2005
CREATE TABLE table_12193259_1 (mens_doubles VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT COUNT(mens_doubles) FROM table_12193259_1 WHERE season = \"2004/2005\"" }
Name the total number for mens single for 2002/2003
CREATE TABLE table_12193259_1 (mens_singles VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT COUNT(mens_singles) FROM table_12193259_1 WHERE season = \"2002/2003\"" }
Name the mens singles for 1944/1945
CREATE TABLE table_12193259_1 (mens_singles VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT mens_singles FROM table_12193259_1 WHERE season = \"1944/1945\"" }
How many times was pernell whitaker an opponent?
CREATE TABLE table_12206918_2 (date VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT COUNT(date) FROM table_12206918_2 WHERE opponent = \"Pernell Whitaker\"" }
How many times was iran barkley an opponent?
CREATE TABLE table_12206918_2 (number VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT number FROM table_12206918_2 WHERE opponent = \"Iran Barkley\"" }
Who was the opponent when the result was ud 12/12 and date was 1993-05-22?
CREATE TABLE table_12206918_2 (opponent VARCHAR, result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_12206918_2 WHERE result = \"UD 12/12\" AND date = \"1993-05-22\"" }
How many opponents fought on 1982-12-03?
CREATE TABLE table_12206918_2 (opponent VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(opponent) FROM table_12206918_2 WHERE date = \"1982-12-03\"" }
What is the name of the title winner in the ring light heavyweight (175) division?
CREATE TABLE table_12206918_2 (name VARCHAR, titles VARCHAR)
{ "SQL_Query": "SELECT name FROM table_12206918_2 WHERE titles = \"The Ring Light heavyweight (175)\"" }
How many trains call at Castor, Overton, Peterborough East and are operated by LNWR?
CREATE TABLE table_12221135_3 (arrival VARCHAR, operator VARCHAR, calling_at VARCHAR)
{ "SQL_Query": "SELECT COUNT(arrival) FROM table_12221135_3 WHERE operator = \"LNWR\" AND calling_at = \"Castor, Overton, Peterborough East\"" }
Who won the mens singles in 2009?
CREATE TABLE table_12204717_1 (mens_singles VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT mens_singles FROM table_12204717_1 WHERE year = 2009" }
What are the the University of Richmond's school colors?
CREATE TABLE table_1221089_1 (colors VARCHAR, institution VARCHAR)
{ "SQL_Query": "SELECT colors FROM table_1221089_1 WHERE institution = \"University of Richmond\"" }
What are the school colors of the University of New Hampshire?
CREATE TABLE table_1221089_1 (colors VARCHAR, institution VARCHAR)
{ "SQL_Query": "SELECT colors FROM table_1221089_1 WHERE institution = \"University of New Hampshire\"" }
What's the name of the central bank in the country where Colombian Peso (cop) is the local currency?
CREATE TABLE table_1222653_10 (central_bank VARCHAR, currency VARCHAR)
{ "SQL_Query": "SELECT central_bank FROM table_1222653_10 WHERE currency = \"Colombian peso (COP)\"" }
what's the minimum production code written by jay sommers & dick chevillat and al schwartz
CREATE TABLE table_12226390_3 (production_code INTEGER, written_by VARCHAR)
{ "SQL_Query": "SELECT MIN(production_code) FROM table_12226390_3 WHERE written_by = \"Jay Sommers & Dick Chevillat and Al Schwartz\"" }
what's the total number of title for production code 39
CREATE TABLE table_12226390_3 (title VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT COUNT(title) FROM table_12226390_3 WHERE production_code = 39" }
Who wrote the episode 14 in series?
CREATE TABLE table_12226390_2 (written_by VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_12226390_2 WHERE no_in_series = 14" }
Who directed the episode with production code 28?
CREATE TABLE table_12226390_2 (directed_by VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_12226390_2 WHERE production_code = 28" }
What's the title of the episode with a season number 25?
CREATE TABLE table_12226390_6 (title VARCHAR, no_in_season VARCHAR)
{ "SQL_Query": "SELECT title FROM table_12226390_6 WHERE no_in_season = 25" }
What's the title of the episode with a production code 136?
CREATE TABLE table_12226390_6 (title VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT title FROM table_12226390_6 WHERE production_code = 136" }
What episode was written by Bobby Bell and Bill Lee?
CREATE TABLE table_12226390_4 (no_in_season INTEGER, written_by VARCHAR)
{ "SQL_Query": "SELECT MAX(no_in_season) FROM table_12226390_4 WHERE written_by = \"Bobby Bell and Bill Lee\"" }
How many women doubles teams competed in the same year as when Jamie van Hooijdonk competed in men singles?
CREATE TABLE table_12232843_1 (womens_doubles VARCHAR, mens_singles VARCHAR)
{ "SQL_Query": "SELECT COUNT(womens_doubles) FROM table_12232843_1 WHERE mens_singles = \"Jamie van Hooijdonk\"" }
what is the maximum number of hull numbers?
CREATE TABLE table_12232526_2 (hull_numbers INTEGER)
{ "SQL_Query": "SELECT MAX(hull_numbers) FROM table_12232526_2" }
who is the class where note is reportedly still active as of 2012?
CREATE TABLE table_12232526_2 (class VARCHAR, note VARCHAR)
{ "SQL_Query": "SELECT class FROM table_12232526_2 WHERE note = \"Reportedly still active as of 2012\"" }
what is the maximum number of hull nunbers where ship name is kri yos sudarso?
CREATE TABLE table_12232526_2 (hull_numbers INTEGER, ship_name VARCHAR)
{ "SQL_Query": "SELECT MAX(hull_numbers) FROM table_12232526_2 WHERE ship_name = \"KRI Yos Sudarso\"" }
What titles were fought for on 1997-04-12?
CREATE TABLE table_12262182_2 (titles VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT titles FROM table_12262182_2 WHERE date = \"1997-04-12\"" }
What is the date of the match for the lineal super lightweight (140)?
CREATE TABLE table_12262182_2 (date VARCHAR, titles VARCHAR)
{ "SQL_Query": "SELECT date FROM table_12262182_2 WHERE titles = \"Lineal Super lightweight (140)\"" }
What is the date of the match for the wbc flyweight (112) title?
CREATE TABLE table_12262182_2 (date VARCHAR, titles VARCHAR)
{ "SQL_Query": "SELECT date FROM table_12262182_2 WHERE titles = \"WBC Flyweight (112)\"" }
Who's the leader in the young rider classification in stage 12?
CREATE TABLE table_12261714_2 (young_rider_classification VARCHAR, stage VARCHAR)
{ "SQL_Query": "SELECT young_rider_classification FROM table_12261714_2 WHERE stage = \"12\"" }
Who's leading in the general classification in stage 1a?
CREATE TABLE table_12261714_2 (general_classification VARCHAR, stage VARCHAR)
{ "SQL_Query": "SELECT general_classification FROM table_12261714_2 WHERE stage = \"1a\"" }
How many leaders are there in the intergiro classification in stage 20?
CREATE TABLE table_12261714_2 (intergiro_classification VARCHAR, stage VARCHAR)
{ "SQL_Query": "SELECT COUNT(intergiro_classification) FROM table_12261714_2 WHERE stage = \"20\"" }
What's the leader team in the Trofeo Fast Team in stage 20?
CREATE TABLE table_12261714_2 (trofeo_fast_team VARCHAR, stage VARCHAR)
{ "SQL_Query": "SELECT trofeo_fast_team FROM table_12261714_2 WHERE stage = \"20\"" }
Who's the winner in stage 1a, where the leader in the young rider classification is Francesco Casagrande?
CREATE TABLE table_12261714_2 (winner VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_12261714_2 WHERE young_rider_classification = \"Francesco Casagrande\" AND stage = \"1a\"" }
Name the general classification of stage 15
CREATE TABLE table_12261806_2 (general_classification VARCHAR, stage VARCHAR)
{ "SQL_Query": "SELECT COUNT(general_classification) FROM table_12261806_2 WHERE stage = \"15\"" }
Name the trofeo fast team of stage 2
CREATE TABLE table_12261806_2 (trofeo_fast_team VARCHAR, stage VARCHAR)
{ "SQL_Query": "SELECT trofeo_fast_team FROM table_12261806_2 WHERE stage = \"2\"" }
Name the young rider classification with laudelino cubino
CREATE TABLE table_12261806_2 (young_rider_classification VARCHAR, winner VARCHAR)
{ "SQL_Query": "SELECT young_rider_classification FROM table_12261806_2 WHERE winner = \"Laudelino Cubino\"" }
Name the total number of trofeo fast team of stage 16
CREATE TABLE table_12261806_2 (trofeo_fast_team VARCHAR, stage VARCHAR)
{ "SQL_Query": "SELECT COUNT(trofeo_fast_team) FROM table_12261806_2 WHERE stage = \"16\"" }
What kind of bleeding does aspirin cause?
CREATE TABLE table_1226250_1 (bleeding_time VARCHAR, condition VARCHAR)
{ "SQL_Query": "SELECT bleeding_time FROM table_1226250_1 WHERE condition = \"Aspirin\"" }
How in prothrombin affected by glanzmann's thrombasthenia.
CREATE TABLE table_1226250_1 (prothrombin_time VARCHAR, condition VARCHAR)
{ "SQL_Query": "SELECT prothrombin_time FROM table_1226250_1 WHERE condition = \"Glanzmann's thrombasthenia\"" }
How long does thromboplastin last when prothrombin is unaffected?
CREATE TABLE table_1226250_1 (partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)
{ "SQL_Query": "SELECT partial_thromboplastin_time FROM table_1226250_1 WHERE bleeding_time = \"Unaffected\" AND prothrombin_time = \"Unaffected\"" }
Is uremia affect prothrombin?
CREATE TABLE table_1226250_1 (prothrombin_time VARCHAR, condition VARCHAR)
{ "SQL_Query": "SELECT prothrombin_time FROM table_1226250_1 WHERE condition = \"Uremia\"" }
Is prothrombin time long when thromboplastin is prolonged?
CREATE TABLE table_1226250_1 (prothrombin_time VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)
{ "SQL_Query": "SELECT prothrombin_time FROM table_1226250_1 WHERE bleeding_time = \"Prolonged\" AND partial_thromboplastin_time = \"Prolonged\"" }
How many live births were there in 2006 in South Yorkshire (met county)?
CREATE TABLE table_12251936_1 (live_births_2006 VARCHAR, county VARCHAR)
{ "SQL_Query": "SELECT live_births_2006 FROM table_12251936_1 WHERE county = \"South Yorkshire (Met county)\"" }
How many TFR were there in 2006 when the GFR was 53.8?
CREATE TABLE table_12251936_1 (tfr_2006 VARCHAR, gfr_2006 VARCHAR)
{ "SQL_Query": "SELECT tfr_2006 FROM table_12251936_1 WHERE gfr_2006 = \"53.8\"" }
How many times was the GFR 2006 equal to 53.2?
CREATE TABLE table_12251936_1 (whites_as__percentage_of_pop VARCHAR, gfr_2006 VARCHAR)
{ "SQL_Query": "SELECT COUNT(whites_as__percentage_of_pop) FROM table_12251936_1 WHERE gfr_2006 = \"53.2\"" }
How many mens doubles took place in 1970/1971?
CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT COUNT(mens_doubles) FROM table_12266757_1 WHERE season = \"1970/1971\"" }
Where were the Womens Doubles in the 1951/1952 season and who won?
CREATE TABLE table_12266757_1 (womens_doubles VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT womens_doubles FROM table_12266757_1 WHERE season = \"1951/1952\"" }
Who was the womens singles winnerwhen the mens doubles were stefan karlsson claes nordin , bk aura gbk?
CREATE TABLE table_12266757_1 (womens_singles VARCHAR, mens_doubles VARCHAR)
{ "SQL_Query": "SELECT womens_singles FROM table_12266757_1 WHERE mens_doubles = \"Stefan Karlsson Claes Nordin , BK Aura GBK\"" }
Who were the winners of mens doubles in the 1986/1987 season held?
CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT mens_doubles FROM table_12266757_1 WHERE season = \"1986/1987\"" }
Who won the Mens Singles when the Mixed doubles went to Stellan Mohlin Kerstin Ståhl , Aik?
CREATE TABLE table_12266757_1 (mens_singles VARCHAR, mixed_doubles VARCHAR)
{ "SQL_Query": "SELECT mens_singles FROM table_12266757_1 WHERE mixed_doubles = \"Stellan Mohlin Kerstin Ståhl , AIK\"" }
Who won the womens singles in the 1958/1959 season?
CREATE TABLE table_12266757_1 (womens_singles VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT womens_singles FROM table_12266757_1 WHERE season = \"1958/1959\"" }
What county is in isolation of 29?
CREATE TABLE table_12280396_1 (county VARCHAR, isolation__km_ VARCHAR)
{ "SQL_Query": "SELECT county FROM table_12280396_1 WHERE isolation__km_ = 29" }
What is the county with an elevation of 1262?
CREATE TABLE table_12280396_1 (county VARCHAR, elevation__m_ VARCHAR)
{ "SQL_Query": "SELECT county FROM table_12280396_1 WHERE elevation__m_ = 1262" }
Name the rank where the municipality is sunndal?
CREATE TABLE table_12280396_1 (rank VARCHAR, municipality VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_12280396_1 WHERE municipality = \"Sunndal\"" }
Name the county with the peak being indre russetind?
CREATE TABLE table_12280396_1 (county VARCHAR, peak VARCHAR)
{ "SQL_Query": "SELECT county FROM table_12280396_1 WHERE peak = \"Indre Russetind\"" }
What is the number of rank of peak fresvikbreen?
CREATE TABLE table_12280396_1 (rank VARCHAR, peak VARCHAR)
{ "SQL_Query": "SELECT COUNT(rank) FROM table_12280396_1 WHERE peak = \"Fresvikbreen\"" }
Who won the mens singles when sayaka sato won the womens singles?
CREATE TABLE table_12275551_1 (mens_singles VARCHAR, womens_singles VARCHAR)
{ "SQL_Query": "SELECT mens_singles FROM table_12275551_1 WHERE womens_singles = \"Sayaka Sato\"" }
When did Chetan Anand win his first men's single?
CREATE TABLE table_12275654_1 (year INTEGER, mens_singles VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_12275654_1 WHERE mens_singles = \"Chetan Anand\"" }
How many times did Niels Christian Kaldau win the men's single and Pi Hongyan win the women's single in the same year?
CREATE TABLE table_12275654_1 (year VARCHAR, mens_singles VARCHAR, womens_singles VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_12275654_1 WHERE mens_singles = \"Niels Christian Kaldau\" AND womens_singles = \"Pi Hongyan\"" }
Who won the men's double when Chou Tien-Chen won the men's single?
CREATE TABLE table_12275654_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
{ "SQL_Query": "SELECT mens_doubles FROM table_12275654_1 WHERE mens_singles = \"Chou Tien-chen\"" }
What team was promoted in the Serbian League East in the same season when Kolubara was promoted in the Serbian League Belgrade?
CREATE TABLE table_12283621_6 (serbian_league_east VARCHAR, serbian_league_belgrade VARCHAR)
{ "SQL_Query": "SELECT serbian_league_east FROM table_12283621_6 WHERE serbian_league_belgrade = \"Kolubara\"" }
what's the series with reverse being swimming
CREATE TABLE table_12284476_8 (series VARCHAR, reverse VARCHAR)
{ "SQL_Query": "SELECT series FROM table_12284476_8 WHERE reverse = \"Swimming\"" }
what's the alloy with series being ii series
CREATE TABLE table_12284476_8 (alloy VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT alloy FROM table_12284476_8 WHERE series = \"II series\"" }
what's the denomination with year being 2008 and reverse being football
CREATE TABLE table_12284476_8 (denomination VARCHAR, year VARCHAR, reverse VARCHAR)
{ "SQL_Query": "SELECT denomination FROM table_12284476_8 WHERE year = 2008 AND reverse = \"Football\"" }
how many reverse with series being iii series
CREATE TABLE table_12284476_8 (reverse VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT COUNT(reverse) FROM table_12284476_8 WHERE series = \"III series\"" }
How many times did kingfisher east bengal fc win?
CREATE TABLE table_12303563_1 (winners INTEGER, nation VARCHAR)
{ "SQL_Query": "SELECT MIN(winners) FROM table_12303563_1 WHERE nation = \"Kingfisher East Bengal FC\"" }
How many times did bec tero sasana win?
CREATE TABLE table_12303563_1 (winners INTEGER, nation VARCHAR)
{ "SQL_Query": "SELECT MAX(winners) FROM table_12303563_1 WHERE nation = \"BEC Tero Sasana\"" }
Nigeria competed on July2, 1999.
CREATE TABLE table_1231316_5 (date VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT date FROM table_1231316_5 WHERE nation = \"Nigeria\"" }
Nigeria had the fastest time once.
CREATE TABLE table_1231316_5 (fastest_time__s_ VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT COUNT(fastest_time__s_) FROM table_1231316_5 WHERE nation = \"Nigeria\"" }
how many runners-up with nation being india
CREATE TABLE table_12303563_2 (runners_up VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT COUNT(runners_up) FROM table_12303563_2 WHERE nation = \"India\"" }
what's the runners-up with nation being malaysia
CREATE TABLE table_12303563_2 (runners_up VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT runners_up FROM table_12303563_2 WHERE nation = \"Malaysia\"" }
how many winners with # being 4
CREATE TABLE table_12303563_2 (winners VARCHAR, _number VARCHAR)
{ "SQL_Query": "SELECT COUNT(winners) FROM table_12303563_2 WHERE _number = 4" }
how many maximum winners
CREATE TABLE table_12303563_2 (winners INTEGER)
{ "SQL_Query": "SELECT MAX(winners) FROM table_12303563_2" }
how many winners from vietnam
CREATE TABLE table_12303563_2 (winners VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT winners FROM table_12303563_2 WHERE nation = \"Vietnam\"" }
What was the total of arlenes vote when craig voted for brian and karen?
CREATE TABLE table_12305325_4 (arlenes_vote VARCHAR, craigs_vote VARCHAR)
{ "SQL_Query": "SELECT COUNT(arlenes_vote) FROM table_12305325_4 WHERE craigs_vote = \"Brian and Karen\"" }
What is the max week where kate and anton are eliminated?
CREATE TABLE table_12305325_4 (week INTEGER, eliminated VARCHAR)
{ "SQL_Query": "SELECT MAX(week) FROM table_12305325_4 WHERE eliminated = \"Kate and Anton\"" }
What is the number eliminated when kelly and brendan are safe?
CREATE TABLE table_12305325_4 (eliminated VARCHAR, safe VARCHAR)
{ "SQL_Query": "SELECT COUNT(eliminated) FROM table_12305325_4 WHERE safe = \"Kelly and Brendan\"" }
Who is safe if John and Nicole are eliminated?
CREATE TABLE table_12305325_4 (safe VARCHAR, eliminated VARCHAR)
{ "SQL_Query": "SELECT safe FROM table_12305325_4 WHERE eliminated = \"John and Nicole\"" }
What is the total number of brunos vote when willie and erin are eliminated?
CREATE TABLE table_12305325_4 (brunos_vote VARCHAR, eliminated VARCHAR)
{ "SQL_Query": "SELECT COUNT(brunos_vote) FROM table_12305325_4 WHERE eliminated = \"Willie and Erin\"" }
How many goals were scored by the player who played 17 matches?
CREATE TABLE table_12321870_32 (goals VARCHAR, matches VARCHAR)
{ "SQL_Query": "SELECT goals FROM table_12321870_32 WHERE matches = \"17\"" }