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