question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is every CFL team from the Calgary college?
CREATE TABLE table_28059992_1 (cfl_team VARCHAR, college VARCHAR)
SELECT cfl_team FROM table_28059992_1 WHERE college = "Calgary"
### Context: CREATE TABLE table_28059992_1 (cfl_team VARCHAR, college VARCHAR) ### Question: What is every CFL team from the Calgary college? ### Answer: SELECT cfl_team FROM table_28059992_1 WHERE college = "Calgary"
What is every position for the CFL Edmonton?
CREATE TABLE table_28059992_1 (position VARCHAR, cfl_team VARCHAR)
SELECT position FROM table_28059992_1 WHERE cfl_team = "Edmonton"
### Context: CREATE TABLE table_28059992_1 (position VARCHAR, cfl_team VARCHAR) ### Question: What is every position for the CFL Edmonton? ### Answer: SELECT position FROM table_28059992_1 WHERE cfl_team = "Edmonton"
What is every CFL team with pick#1?
CREATE TABLE table_28059992_1 (cfl_team VARCHAR, pick__number VARCHAR)
SELECT cfl_team FROM table_28059992_1 WHERE pick__number = 1
### Context: CREATE TABLE table_28059992_1 (cfl_team VARCHAR, pick__number VARCHAR) ### Question: What is every CFL team with pick#1? ### Answer: SELECT cfl_team FROM table_28059992_1 WHERE pick__number = 1
What is every CFL team with the player Mark Farraway?
CREATE TABLE table_28059992_1 (cfl_team VARCHAR, player VARCHAR)
SELECT cfl_team FROM table_28059992_1 WHERE player = "Mark Farraway"
### Context: CREATE TABLE table_28059992_1 (cfl_team VARCHAR, player VARCHAR) ### Question: What is every CFL team with the player Mark Farraway? ### Answer: SELECT cfl_team FROM table_28059992_1 WHERE player = "Mark Farraway"
What draft pick number was Andy Brereton?
CREATE TABLE table_28059992_5 (pick__number INTEGER, player VARCHAR)
SELECT MIN(pick__number) FROM table_28059992_5 WHERE player = "Andy Brereton"
### Context: CREATE TABLE table_28059992_5 (pick__number INTEGER, player VARCHAR) ### Question: What draft pick number was Andy Brereton? ### Answer: SELECT MIN(pick__number) FROM table_28059992_5 WHERE player = "Andy Brereton"
What pick number was the player that was picked by Edmonton?
CREATE TABLE table_28059992_5 (pick__number VARCHAR, cfl_team VARCHAR)
SELECT pick__number FROM table_28059992_5 WHERE cfl_team = "Edmonton"
### Context: CREATE TABLE table_28059992_5 (pick__number VARCHAR, cfl_team VARCHAR) ### Question: What pick number was the player that was picked by Edmonton? ### Answer: SELECT pick__number FROM table_28059992_5 WHERE cfl_team = "Edmonton"
What position did the draft pick going to saskatchewan play?
CREATE TABLE table_28059992_5 (position VARCHAR, cfl_team VARCHAR)
SELECT position FROM table_28059992_5 WHERE cfl_team = "Saskatchewan"
### Context: CREATE TABLE table_28059992_5 (position VARCHAR, cfl_team VARCHAR) ### Question: What position did the draft pick going to saskatchewan play? ### Answer: SELECT position FROM table_28059992_5 WHERE cfl_team = "Saskatchewan"
What is the highest numbered draft pick?
CREATE TABLE table_28059992_5 (pick__number INTEGER)
SELECT MAX(pick__number) FROM table_28059992_5
### Context: CREATE TABLE table_28059992_5 (pick__number INTEGER) ### Question: What is the highest numbered draft pick? ### Answer: SELECT MAX(pick__number) FROM table_28059992_5
What CFL team got the player from york?
CREATE TABLE table_28059992_5 (cfl_team VARCHAR, college VARCHAR)
SELECT cfl_team FROM table_28059992_5 WHERE college = "York"
### Context: CREATE TABLE table_28059992_5 (cfl_team VARCHAR, college VARCHAR) ### Question: What CFL team got the player from york? ### Answer: SELECT cfl_team FROM table_28059992_5 WHERE college = "York"
How many positions does Trent Bagnail play?
CREATE TABLE table_28059992_5 (position VARCHAR, player VARCHAR)
SELECT COUNT(position) FROM table_28059992_5 WHERE player = "Trent Bagnail"
### Context: CREATE TABLE table_28059992_5 (position VARCHAR, player VARCHAR) ### Question: How many positions does Trent Bagnail play? ### Answer: SELECT COUNT(position) FROM table_28059992_5 WHERE player = "Trent Bagnail"
What position was the player who was drafted by Edmonton?
CREATE TABLE table_28059992_6 (position VARCHAR, cfl_team VARCHAR)
SELECT position FROM table_28059992_6 WHERE cfl_team = "Edmonton"
### Context: CREATE TABLE table_28059992_6 (position VARCHAR, cfl_team VARCHAR) ### Question: What position was the player who was drafted by Edmonton? ### Answer: SELECT position FROM table_28059992_6 WHERE cfl_team = "Edmonton"
What college did the player whose position was RB go to?
CREATE TABLE table_28059992_6 (college VARCHAR, position VARCHAR)
SELECT college FROM table_28059992_6 WHERE position = "RB"
### Context: CREATE TABLE table_28059992_6 (college VARCHAR, position VARCHAR) ### Question: What college did the player whose position was RB go to? ### Answer: SELECT college FROM table_28059992_6 WHERE position = "RB"
What college did Francis Bellefroid go to?
CREATE TABLE table_28059992_6 (college VARCHAR, player VARCHAR)
SELECT college FROM table_28059992_6 WHERE player = "Francis Bellefroid"
### Context: CREATE TABLE table_28059992_6 (college VARCHAR, player VARCHAR) ### Question: What college did Francis Bellefroid go to? ### Answer: SELECT college FROM table_28059992_6 WHERE player = "Francis Bellefroid"
Which player was drafted by Winnipeg?
CREATE TABLE table_28059992_6 (player VARCHAR, cfl_team VARCHAR)
SELECT player FROM table_28059992_6 WHERE cfl_team = "Winnipeg"
### Context: CREATE TABLE table_28059992_6 (player VARCHAR, cfl_team VARCHAR) ### Question: Which player was drafted by Winnipeg? ### Answer: SELECT player FROM table_28059992_6 WHERE cfl_team = "Winnipeg"
What college did the player who was drafted by Calgary go to?
CREATE TABLE table_28059992_6 (college VARCHAR, cfl_team VARCHAR)
SELECT college FROM table_28059992_6 WHERE cfl_team = "Calgary"
### Context: CREATE TABLE table_28059992_6 (college VARCHAR, cfl_team VARCHAR) ### Question: What college did the player who was drafted by Calgary go to? ### Answer: SELECT college FROM table_28059992_6 WHERE cfl_team = "Calgary"
What was the height of representative #1?
CREATE TABLE table_28062822_3 (height VARCHAR, represent VARCHAR)
SELECT height FROM table_28062822_3 WHERE represent = 1
### Context: CREATE TABLE table_28062822_3 (height VARCHAR, represent VARCHAR) ### Question: What was the height of representative #1? ### Answer: SELECT height FROM table_28062822_3 WHERE represent = 1
Which contestant was sponsored by Yogurt Vita Slim?
CREATE TABLE table_28062822_3 (contestant VARCHAR, sponsor VARCHAR)
SELECT contestant FROM table_28062822_3 WHERE sponsor = "Yogurt Vita Slim"
### Context: CREATE TABLE table_28062822_3 (contestant VARCHAR, sponsor VARCHAR) ### Question: Which contestant was sponsored by Yogurt Vita Slim? ### Answer: SELECT contestant FROM table_28062822_3 WHERE sponsor = "Yogurt Vita Slim"
What was the height of representative #6?
CREATE TABLE table_28062822_3 (height VARCHAR, represent VARCHAR)
SELECT height FROM table_28062822_3 WHERE represent = 6
### Context: CREATE TABLE table_28062822_3 (height VARCHAR, represent VARCHAR) ### Question: What was the height of representative #6? ### Answer: SELECT height FROM table_28062822_3 WHERE represent = 6
how many people wrote the episode directed by rob schrab?
CREATE TABLE table_28081876_4 (written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(written_by) FROM table_28081876_4 WHERE directed_by = "Rob Schrab"
### Context: CREATE TABLE table_28081876_4 (written_by VARCHAR, directed_by VARCHAR) ### Question: how many people wrote the episode directed by rob schrab? ### Answer: SELECT COUNT(written_by) FROM table_28081876_4 WHERE directed_by = "Rob Schrab"
name the title of the episode with production code 201
CREATE TABLE table_28081876_4 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_28081876_4 WHERE production_code = 201
### Context: CREATE TABLE table_28081876_4 (title VARCHAR, production_code VARCHAR) ### Question: name the title of the episode with production code 201 ### Answer: SELECT title FROM table_28081876_4 WHERE production_code = 201
Who were the authors of the episode first broadcast on August 10, 2012?
CREATE TABLE table_28081876_6 (written_by VARCHAR, original_air_date VARCHAR)
SELECT written_by FROM table_28081876_6 WHERE original_air_date = "August 10, 2012"
### Context: CREATE TABLE table_28081876_6 (written_by VARCHAR, original_air_date VARCHAR) ### Question: Who were the authors of the episode first broadcast on August 10, 2012? ### Answer: SELECT written_by FROM table_28081876_6 WHERE original_air_date = "August 10, 2012"
When was originally aired the episode with an audience of 1.57 million us viewers?
CREATE TABLE table_28081876_6 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT original_air_date FROM table_28081876_6 WHERE us_viewers__millions_ = "1.57"
### Context: CREATE TABLE table_28081876_6 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) ### Question: When was originally aired the episode with an audience of 1.57 million us viewers? ### Answer: SELECT original_air_date FROM table_28081876_6 WHERE us_viewers__millions_ = "1.57"
What season number was assigned to the episode identified with the production code 401?
CREATE TABLE table_28081876_6 (season_no VARCHAR, production_code VARCHAR)
SELECT season_no FROM table_28081876_6 WHERE production_code = 401
### Context: CREATE TABLE table_28081876_6 (season_no VARCHAR, production_code VARCHAR) ### Question: What season number was assigned to the episode identified with the production code 401? ### Answer: SELECT season_no FROM table_28081876_6 WHERE production_code = 401
List the number of assists for the DF.
CREATE TABLE table_28068645_8 (total INTEGER, position VARCHAR)
SELECT MAX(total) FROM table_28068645_8 WHERE position = "DF"
### Context: CREATE TABLE table_28068645_8 (total INTEGER, position VARCHAR) ### Question: List the number of assists for the DF. ### Answer: SELECT MAX(total) FROM table_28068645_8 WHERE position = "DF"
List the lowest super league for a 0 champion league.
CREATE TABLE table_28068645_8 (super_league INTEGER, champions_league VARCHAR)
SELECT MIN(super_league) FROM table_28068645_8 WHERE champions_league = 0
### Context: CREATE TABLE table_28068645_8 (super_league INTEGER, champions_league VARCHAR) ### Question: List the lowest super league for a 0 champion league. ### Answer: SELECT MIN(super_league) FROM table_28068645_8 WHERE champions_league = 0
What is the minimum sum?
CREATE TABLE table_28068645_8 (total INTEGER)
SELECT MIN(total) FROM table_28068645_8
### Context: CREATE TABLE table_28068645_8 (total INTEGER) ### Question: What is the minimum sum? ### Answer: SELECT MIN(total) FROM table_28068645_8
What was the intermediate sprint classification for the race whose winner was Daniel Martin?
CREATE TABLE table_28092844_16 (intermediate_sprints_classification_klasyfikacja_najaktywniejszych VARCHAR, winner VARCHAR)
SELECT intermediate_sprints_classification_klasyfikacja_najaktywniejszych FROM table_28092844_16 WHERE winner = "Daniel Martin"
### Context: CREATE TABLE table_28092844_16 (intermediate_sprints_classification_klasyfikacja_najaktywniejszych VARCHAR, winner VARCHAR) ### Question: What was the intermediate sprint classification for the race whose winner was Daniel Martin? ### Answer: SELECT intermediate_sprints_classification_klasyfikacja_najaktywniejszych FROM table_28092844_16 WHERE winner = "Daniel Martin"
Which teams classification winners had a general classification winner of Allan Davis?
CREATE TABLE table_28092844_16 (teams_classification VARCHAR, general_classification_żółta_koszulka VARCHAR)
SELECT teams_classification FROM table_28092844_16 WHERE general_classification_żółta_koszulka = "Allan Davis"
### Context: CREATE TABLE table_28092844_16 (teams_classification VARCHAR, general_classification_żółta_koszulka VARCHAR) ### Question: Which teams classification winners had a general classification winner of Allan Davis? ### Answer: SELECT teams_classification FROM table_28092844_16 WHERE general_classification_żółta_koszulka = "Allan Davis"
Who won the points classification when the teams classification winner was Lampre-Farnese?
CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR)
SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = "Lampre-Farnese"
### Context: CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR) ### Question: Who won the points classification when the teams classification winner was Lampre-Farnese? ### Answer: SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = "Lampre-Farnese"
How do you say the ukrainian word дякую (diakuju) in English?
CREATE TABLE table_28136_15 (english_word VARCHAR, ukrainian VARCHAR)
SELECT english_word FROM table_28136_15 WHERE ukrainian = "Дякую (diakuju)"
### Context: CREATE TABLE table_28136_15 (english_word VARCHAR, ukrainian VARCHAR) ### Question: How do you say the ukrainian word дякую (diakuju) in English? ### Answer: SELECT english_word FROM table_28136_15 WHERE ukrainian = "Дякую (diakuju)"
How many words are there in rusyn for the bulgarian word купува (kupuva)?
CREATE TABLE table_28136_15 (rusyn VARCHAR, bulgarian VARCHAR)
SELECT COUNT(rusyn) FROM table_28136_15 WHERE bulgarian = "купува (kupuva)"
### Context: CREATE TABLE table_28136_15 (rusyn VARCHAR, bulgarian VARCHAR) ### Question: How many words are there in rusyn for the bulgarian word купува (kupuva)? ### Answer: SELECT COUNT(rusyn) FROM table_28136_15 WHERE bulgarian = "купува (kupuva)"
Name the new adherents per year for buddhism
CREATE TABLE table_28137918_5 (new_adherents_per_year VARCHAR, religion VARCHAR)
SELECT new_adherents_per_year FROM table_28137918_5 WHERE religion = "Buddhism"
### Context: CREATE TABLE table_28137918_5 (new_adherents_per_year VARCHAR, religion VARCHAR) ### Question: Name the new adherents per year for buddhism ### Answer: SELECT new_adherents_per_year FROM table_28137918_5 WHERE religion = "Buddhism"
Name the number of new adherents per year for confucianism
CREATE TABLE table_28137918_5 (new_adherents_per_year VARCHAR, religion VARCHAR)
SELECT COUNT(new_adherents_per_year) FROM table_28137918_5 WHERE religion = "Confucianism"
### Context: CREATE TABLE table_28137918_5 (new_adherents_per_year VARCHAR, religion VARCHAR) ### Question: Name the number of new adherents per year for confucianism ### Answer: SELECT COUNT(new_adherents_per_year) FROM table_28137918_5 WHERE religion = "Confucianism"
Name the least births for conversion being 26,333
CREATE TABLE table_28137918_5 (births INTEGER, conversions VARCHAR)
SELECT MIN(births) FROM table_28137918_5 WHERE conversions = "26,333"
### Context: CREATE TABLE table_28137918_5 (births INTEGER, conversions VARCHAR) ### Question: Name the least births for conversion being 26,333 ### Answer: SELECT MIN(births) FROM table_28137918_5 WHERE conversions = "26,333"
Name the least amount of new adherents per year
CREATE TABLE table_28137918_5 (new_adherents_per_year INTEGER)
SELECT MIN(new_adherents_per_year) FROM table_28137918_5
### Context: CREATE TABLE table_28137918_5 (new_adherents_per_year INTEGER) ### Question: Name the least amount of new adherents per year ### Answer: SELECT MIN(new_adherents_per_year) FROM table_28137918_5
Name the religion that has a growth rate of 1.56%
CREATE TABLE table_28137918_5 (religion VARCHAR, growth_rate VARCHAR)
SELECT religion FROM table_28137918_5 WHERE growth_rate = "1.56%"
### Context: CREATE TABLE table_28137918_5 (religion VARCHAR, growth_rate VARCHAR) ### Question: Name the religion that has a growth rate of 1.56% ### Answer: SELECT religion FROM table_28137918_5 WHERE growth_rate = "1.56%"
What is the length when the propulsion is controllable pitch propeller?
CREATE TABLE table_28132970_5 (length VARCHAR, propulsion VARCHAR)
SELECT length FROM table_28132970_5 WHERE propulsion = "Controllable pitch propeller"
### Context: CREATE TABLE table_28132970_5 (length VARCHAR, propulsion VARCHAR) ### Question: What is the length when the propulsion is controllable pitch propeller? ### Answer: SELECT length FROM table_28132970_5 WHERE propulsion = "Controllable pitch propeller"
What is the max speed when the vessel is gallion?
CREATE TABLE table_28132970_5 (max_speed VARCHAR, vessel VARCHAR)
SELECT max_speed FROM table_28132970_5 WHERE vessel = "Gallion"
### Context: CREATE TABLE table_28132970_5 (max_speed VARCHAR, vessel VARCHAR) ### Question: What is the max speed when the vessel is gallion? ### Answer: SELECT max_speed FROM table_28132970_5 WHERE vessel = "Gallion"
How many breadth entries are there when the vessel is marianarray?
CREATE TABLE table_28132970_5 (breadth VARCHAR, vessel VARCHAR)
SELECT COUNT(breadth) FROM table_28132970_5 WHERE vessel = "Marianarray"
### Context: CREATE TABLE table_28132970_5 (breadth VARCHAR, vessel VARCHAR) ### Question: How many breadth entries are there when the vessel is marianarray? ### Answer: SELECT COUNT(breadth) FROM table_28132970_5 WHERE vessel = "Marianarray"
What is the propulsion when the vessel is marianarray?
CREATE TABLE table_28132970_5 (propulsion VARCHAR, vessel VARCHAR)
SELECT propulsion FROM table_28132970_5 WHERE vessel = "Marianarray"
### Context: CREATE TABLE table_28132970_5 (propulsion VARCHAR, vessel VARCHAR) ### Question: What is the propulsion when the vessel is marianarray? ### Answer: SELECT propulsion FROM table_28132970_5 WHERE vessel = "Marianarray"
How many breadth entries are there when propulsion is jet?
CREATE TABLE table_28132970_5 (breadth VARCHAR, propulsion VARCHAR)
SELECT COUNT(breadth) FROM table_28132970_5 WHERE propulsion = "Jet"
### Context: CREATE TABLE table_28132970_5 (breadth VARCHAR, propulsion VARCHAR) ### Question: How many breadth entries are there when propulsion is jet? ### Answer: SELECT COUNT(breadth) FROM table_28132970_5 WHERE propulsion = "Jet"
What episode title had a production code of 3x6306?
CREATE TABLE table_28116528_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_28116528_1 WHERE production_code = "3X6306"
### Context: CREATE TABLE table_28116528_1 (title VARCHAR, production_code VARCHAR) ### Question: What episode title had a production code of 3x6306? ### Answer: SELECT title FROM table_28116528_1 WHERE production_code = "3X6306"
What date did the episode with a production code of 3x6316 originally air?
CREATE TABLE table_28116528_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_28116528_1 WHERE production_code = "3X6316"
### Context: CREATE TABLE table_28116528_1 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What date did the episode with a production code of 3x6316 originally air? ### Answer: SELECT original_air_date FROM table_28116528_1 WHERE production_code = "3X6316"
Who won the mens doubles when wu yang won the womens singles?
CREATE TABLE table_28138035_26 (mens_doubles VARCHAR, womens_singles VARCHAR)
SELECT mens_doubles FROM table_28138035_26 WHERE womens_singles = "Wu Yang"
### Context: CREATE TABLE table_28138035_26 (mens_doubles VARCHAR, womens_singles VARCHAR) ### Question: Who won the mens doubles when wu yang won the womens singles? ### Answer: SELECT mens_doubles FROM table_28138035_26 WHERE womens_singles = "Wu Yang"
What year and where was the tournament when fan ying won the womens singles?
CREATE TABLE table_28138035_26 (year_location VARCHAR, womens_singles VARCHAR)
SELECT year_location FROM table_28138035_26 WHERE womens_singles = "Fan Ying"
### Context: CREATE TABLE table_28138035_26 (year_location VARCHAR, womens_singles VARCHAR) ### Question: What year and where was the tournament when fan ying won the womens singles? ### Answer: SELECT year_location FROM table_28138035_26 WHERE womens_singles = "Fan Ying"
Who won the mens singles when lau sui fei won the womens singles?
CREATE TABLE table_28138035_26 (mens_singles VARCHAR, womens_singles VARCHAR)
SELECT mens_singles FROM table_28138035_26 WHERE womens_singles = "Lau Sui Fei"
### Context: CREATE TABLE table_28138035_26 (mens_singles VARCHAR, womens_singles VARCHAR) ### Question: Who won the mens singles when lau sui fei won the womens singles? ### Answer: SELECT mens_singles FROM table_28138035_26 WHERE womens_singles = "Lau Sui Fei"
Who won the mens doubles when wang hao won the mens singles?
CREATE TABLE table_28138035_26 (mens_doubles VARCHAR, mens_singles VARCHAR)
SELECT mens_doubles FROM table_28138035_26 WHERE mens_singles = "Wang Hao"
### Context: CREATE TABLE table_28138035_26 (mens_doubles VARCHAR, mens_singles VARCHAR) ### Question: Who won the mens doubles when wang hao won the mens singles? ### Answer: SELECT mens_doubles FROM table_28138035_26 WHERE mens_singles = "Wang Hao"
Who won in the men singles group in the year when Yoshie Takada won in the women singles?
CREATE TABLE table_28138035_13 (mens_singles VARCHAR, womens_singles VARCHAR)
SELECT mens_singles FROM table_28138035_13 WHERE womens_singles = "Yoshie Takada"
### Context: CREATE TABLE table_28138035_13 (mens_singles VARCHAR, womens_singles VARCHAR) ### Question: Who won in the men singles group in the year when Yoshie Takada won in the women singles? ### Answer: SELECT mens_singles FROM table_28138035_13 WHERE womens_singles = "Yoshie Takada"
When and where did Chen Qi win in men singles?
CREATE TABLE table_28138035_13 (year_location VARCHAR, mens_singles VARCHAR)
SELECT year_location FROM table_28138035_13 WHERE mens_singles = "Chen Qi"
### Context: CREATE TABLE table_28138035_13 (year_location VARCHAR, mens_singles VARCHAR) ### Question: When and where did Chen Qi win in men singles? ### Answer: SELECT year_location FROM table_28138035_13 WHERE mens_singles = "Chen Qi"
Who is listed under mens singles when womens has wang nan zhang yining?
CREATE TABLE table_28138035_27 (mens_singles VARCHAR, womens_doubles VARCHAR)
SELECT mens_singles FROM table_28138035_27 WHERE womens_doubles = "Wang Nan Zhang Yining"
### Context: CREATE TABLE table_28138035_27 (mens_singles VARCHAR, womens_doubles VARCHAR) ### Question: Who is listed under mens singles when womens has wang nan zhang yining? ### Answer: SELECT mens_singles FROM table_28138035_27 WHERE womens_doubles = "Wang Nan Zhang Yining"
How many womens singles entries are there when womens doubles is li xiaodan wen jia?
CREATE TABLE table_28138035_27 (womens_singles VARCHAR, womens_doubles VARCHAR)
SELECT COUNT(womens_singles) FROM table_28138035_27 WHERE womens_doubles = "Li Xiaodan Wen Jia"
### Context: CREATE TABLE table_28138035_27 (womens_singles VARCHAR, womens_doubles VARCHAR) ### Question: How many womens singles entries are there when womens doubles is li xiaodan wen jia? ### Answer: SELECT COUNT(womens_singles) FROM table_28138035_27 WHERE womens_doubles = "Li Xiaodan Wen Jia"
Who is listed under womens singles when year location is 1998 doha?
CREATE TABLE table_28138035_27 (womens_singles VARCHAR, year_location VARCHAR)
SELECT womens_singles FROM table_28138035_27 WHERE year_location = "1998 Doha"
### Context: CREATE TABLE table_28138035_27 (womens_singles VARCHAR, year_location VARCHAR) ### Question: Who is listed under womens singles when year location is 1998 doha? ### Answer: SELECT womens_singles FROM table_28138035_27 WHERE year_location = "1998 Doha"
Who is listed under mens singles when the year location is 2009 doha?
CREATE TABLE table_28138035_27 (mens_singles VARCHAR, year_location VARCHAR)
SELECT mens_singles FROM table_28138035_27 WHERE year_location = "2009 Doha"
### Context: CREATE TABLE table_28138035_27 (mens_singles VARCHAR, year_location VARCHAR) ### Question: Who is listed under mens singles when the year location is 2009 doha? ### Answer: SELECT mens_singles FROM table_28138035_27 WHERE year_location = "2009 Doha"
How many year locations are there for the womens doubles in jing junhong li jiawei?
CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR)
SELECT COUNT(year_location) FROM table_28138035_20 WHERE womens_doubles = "Jing Junhong Li Jiawei"
### Context: CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR) ### Question: How many year locations are there for the womens doubles in jing junhong li jiawei? ### Answer: SELECT COUNT(year_location) FROM table_28138035_20 WHERE womens_doubles = "Jing Junhong Li Jiawei"
How many players are there for mens singles when chen qi ma lin played mens doubles?
CREATE TABLE table_28138035_20 (mens_singles VARCHAR, mens_doubles VARCHAR)
SELECT COUNT(mens_singles) FROM table_28138035_20 WHERE mens_doubles = "Chen Qi Ma Lin"
### Context: CREATE TABLE table_28138035_20 (mens_singles VARCHAR, mens_doubles VARCHAR) ### Question: How many players are there for mens singles when chen qi ma lin played mens doubles? ### Answer: SELECT COUNT(mens_singles) FROM table_28138035_20 WHERE mens_doubles = "Chen Qi Ma Lin"
Who played mens doubles for the 1999 kobe tour?
CREATE TABLE table_28138035_20 (mens_doubles VARCHAR, year_location VARCHAR)
SELECT mens_doubles FROM table_28138035_20 WHERE year_location = "1999 Kobe"
### Context: CREATE TABLE table_28138035_20 (mens_doubles VARCHAR, year_location VARCHAR) ### Question: Who played mens doubles for the 1999 kobe tour? ### Answer: SELECT mens_doubles FROM table_28138035_20 WHERE year_location = "1999 Kobe"
Where was the tour when jing junhong li jiawei played womens doubles?
CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR)
SELECT year_location FROM table_28138035_20 WHERE womens_doubles = "Jing Junhong Li Jiawei"
### Context: CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR) ### Question: Where was the tour when jing junhong li jiawei played womens doubles? ### Answer: SELECT year_location FROM table_28138035_20 WHERE womens_doubles = "Jing Junhong Li Jiawei"
How many years did lin gaoyuan wu jiaji play mens doubles?
CREATE TABLE table_28138035_20 (year_location VARCHAR, mens_doubles VARCHAR)
SELECT COUNT(year_location) FROM table_28138035_20 WHERE mens_doubles = "Lin Gaoyuan Wu Jiaji"
### Context: CREATE TABLE table_28138035_20 (year_location VARCHAR, mens_doubles VARCHAR) ### Question: How many years did lin gaoyuan wu jiaji play mens doubles? ### Answer: SELECT COUNT(year_location) FROM table_28138035_20 WHERE mens_doubles = "Lin Gaoyuan Wu Jiaji"
How many people are shown for mens doubles when guo yue played womens singles?
CREATE TABLE table_28138035_20 (mens_doubles VARCHAR, womens_singles VARCHAR)
SELECT COUNT(mens_doubles) FROM table_28138035_20 WHERE womens_singles = "Guo Yue"
### Context: CREATE TABLE table_28138035_20 (mens_doubles VARCHAR, womens_singles VARCHAR) ### Question: How many people are shown for mens doubles when guo yue played womens singles? ### Answer: SELECT COUNT(mens_doubles) FROM table_28138035_20 WHERE womens_singles = "Guo Yue"
Who won the Womens Singles in the year the Jean-Michel Saive won the Mens Singles?
CREATE TABLE table_28138035_35 (womens_singles VARCHAR, mens_singles VARCHAR)
SELECT womens_singles FROM table_28138035_35 WHERE mens_singles = "Jean-Michel Saive"
### Context: CREATE TABLE table_28138035_35 (womens_singles VARCHAR, mens_singles VARCHAR) ### Question: Who won the Womens Singles in the year the Jean-Michel Saive won the Mens Singles? ### Answer: SELECT womens_singles FROM table_28138035_35 WHERE mens_singles = "Jean-Michel Saive"
In what year and location did Liu Guozheng win the Mens Singles?
CREATE TABLE table_28138035_35 (year_location VARCHAR, mens_singles VARCHAR)
SELECT year_location FROM table_28138035_35 WHERE mens_singles = "Liu Guozheng"
### Context: CREATE TABLE table_28138035_35 (year_location VARCHAR, mens_singles VARCHAR) ### Question: In what year and location did Liu Guozheng win the Mens Singles? ### Answer: SELECT year_location FROM table_28138035_35 WHERE mens_singles = "Liu Guozheng"
In what year and location did Wang Liqin win the Mens Singles?
CREATE TABLE table_28138035_35 (year_location VARCHAR, mens_singles VARCHAR)
SELECT year_location FROM table_28138035_35 WHERE mens_singles = "Wang Liqin"
### Context: CREATE TABLE table_28138035_35 (year_location VARCHAR, mens_singles VARCHAR) ### Question: In what year and location did Wang Liqin win the Mens Singles? ### Answer: SELECT year_location FROM table_28138035_35 WHERE mens_singles = "Wang Liqin"
Who won the mens doubles at the 2006 guangzhou event?
CREATE TABLE table_28138035_6 (mens_doubles VARCHAR, year_location VARCHAR)
SELECT mens_doubles FROM table_28138035_6 WHERE year_location = "2006 Guangzhou"
### Context: CREATE TABLE table_28138035_6 (mens_doubles VARCHAR, year_location VARCHAR) ### Question: Who won the mens doubles at the 2006 guangzhou event? ### Answer: SELECT mens_doubles FROM table_28138035_6 WHERE year_location = "2006 Guangzhou"
How many times was the womens doubles in china?
CREATE TABLE table_28138035_6 (mens_singles VARCHAR, womens_doubles VARCHAR)
SELECT COUNT(mens_singles) FROM table_28138035_6 WHERE womens_doubles = "China"
### Context: CREATE TABLE table_28138035_6 (mens_singles VARCHAR, womens_doubles VARCHAR) ### Question: How many times was the womens doubles in china? ### Answer: SELECT COUNT(mens_singles) FROM table_28138035_6 WHERE womens_doubles = "China"
How many times did li ju win the womens singles and wang liqin win the mens singles?
CREATE TABLE table_28138035_6 (womens_doubles VARCHAR, womens_singles VARCHAR, mens_singles VARCHAR)
SELECT COUNT(womens_doubles) FROM table_28138035_6 WHERE womens_singles = "Li Ju" AND mens_singles = "Wang Liqin"
### Context: CREATE TABLE table_28138035_6 (womens_doubles VARCHAR, womens_singles VARCHAR, mens_singles VARCHAR) ### Question: How many times did li ju win the womens singles and wang liqin win the mens singles? ### Answer: SELECT COUNT(womens_doubles) FROM table_28138035_6 WHERE womens_singles = "Li Ju" AND mens_singles = "Wang Liqin"
Name the mens singles for lee eun-sil moon hyun-jung
CREATE TABLE table_28138035_4 (mens_singles VARCHAR, womens_doubles VARCHAR)
SELECT mens_singles FROM table_28138035_4 WHERE womens_doubles = "Lee Eun-Sil Moon Hyun-Jung"
### Context: CREATE TABLE table_28138035_4 (mens_singles VARCHAR, womens_doubles VARCHAR) ### Question: Name the mens singles for lee eun-sil moon hyun-jung ### Answer: SELECT mens_singles FROM table_28138035_4 WHERE womens_doubles = "Lee Eun-Sil Moon Hyun-Jung"
Name the number of womens doubles for 2011 rio de janeiro
CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, year_location VARCHAR)
SELECT COUNT(womens_doubles) FROM table_28138035_4 WHERE year_location = "2011 Rio de Janeiro"
### Context: CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, year_location VARCHAR) ### Question: Name the number of womens doubles for 2011 rio de janeiro ### Answer: SELECT COUNT(womens_doubles) FROM table_28138035_4 WHERE year_location = "2011 Rio de Janeiro"
Name the year location for haruna fukuoka
CREATE TABLE table_28138035_4 (year_location VARCHAR, womens_singles VARCHAR)
SELECT year_location FROM table_28138035_4 WHERE womens_singles = "Haruna Fukuoka"
### Context: CREATE TABLE table_28138035_4 (year_location VARCHAR, womens_singles VARCHAR) ### Question: Name the year location for haruna fukuoka ### Answer: SELECT year_location FROM table_28138035_4 WHERE womens_singles = "Haruna Fukuoka"
Name the mens doubles for dimitrij ovtcharov
CREATE TABLE table_28138035_4 (mens_doubles VARCHAR, mens_singles VARCHAR)
SELECT mens_doubles FROM table_28138035_4 WHERE mens_singles = "Dimitrij Ovtcharov"
### Context: CREATE TABLE table_28138035_4 (mens_doubles VARCHAR, mens_singles VARCHAR) ### Question: Name the mens doubles for dimitrij ovtcharov ### Answer: SELECT mens_doubles FROM table_28138035_4 WHERE mens_singles = "Dimitrij Ovtcharov"
Name the number of womens singles for 1999 rio de janeiro
CREATE TABLE table_28138035_4 (womens_singles VARCHAR, year_location VARCHAR)
SELECT COUNT(womens_singles) FROM table_28138035_4 WHERE year_location = "1999 Rio de Janeiro"
### Context: CREATE TABLE table_28138035_4 (womens_singles VARCHAR, year_location VARCHAR) ### Question: Name the number of womens singles for 1999 rio de janeiro ### Answer: SELECT COUNT(womens_singles) FROM table_28138035_4 WHERE year_location = "1999 Rio de Janeiro"
Name the womens doubles for werner schlager
CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, mens_singles VARCHAR)
SELECT womens_doubles FROM table_28138035_4 WHERE mens_singles = "Werner Schlager"
### Context: CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, mens_singles VARCHAR) ### Question: Name the womens doubles for werner schlager ### Answer: SELECT womens_doubles FROM table_28138035_4 WHERE mens_singles = "Werner Schlager"
Who was the womens double winner when the womens singles winner was Ding Ning?
CREATE TABLE table_28138035_32 (womens_doubles VARCHAR, womens_singles VARCHAR)
SELECT womens_doubles FROM table_28138035_32 WHERE womens_singles = "Ding Ning"
### Context: CREATE TABLE table_28138035_32 (womens_doubles VARCHAR, womens_singles VARCHAR) ### Question: Who was the womens double winner when the womens singles winner was Ding Ning? ### Answer: SELECT womens_doubles FROM table_28138035_32 WHERE womens_singles = "Ding Ning"
Who wrote episode number 19 in the series?
CREATE TABLE table_28140578_1 (written_by VARCHAR, no_in_series VARCHAR)
SELECT written_by FROM table_28140578_1 WHERE no_in_series = 19
### Context: CREATE TABLE table_28140578_1 (written_by VARCHAR, no_in_series VARCHAR) ### Question: Who wrote episode number 19 in the series? ### Answer: SELECT written_by FROM table_28140578_1 WHERE no_in_series = 19
How many marks are there when tackles are 3?
CREATE TABLE table_2814720_1 (marks VARCHAR, tackles VARCHAR)
SELECT marks FROM table_2814720_1 WHERE tackles = 3
### Context: CREATE TABLE table_2814720_1 (marks VARCHAR, tackles VARCHAR) ### Question: How many marks are there when tackles are 3? ### Answer: SELECT marks FROM table_2814720_1 WHERE tackles = 3
What was the goal accuracy % when the total disposals are 481?
CREATE TABLE table_2814720_1 (goal_accuracy__percentage VARCHAR, total_disposals VARCHAR)
SELECT goal_accuracy__percentage FROM table_2814720_1 WHERE total_disposals = 481
### Context: CREATE TABLE table_2814720_1 (goal_accuracy__percentage VARCHAR, total_disposals VARCHAR) ### Question: What was the goal accuracy % when the total disposals are 481? ### Answer: SELECT goal_accuracy__percentage FROM table_2814720_1 WHERE total_disposals = 481
What date did the episode with a production code of 60072 originally air?
CREATE TABLE table_28140590_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_28140590_1 WHERE production_code = 60072
### Context: CREATE TABLE table_28140590_1 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What date did the episode with a production code of 60072 originally air? ### Answer: SELECT original_air_date FROM table_28140590_1 WHERE production_code = 60072
What's the title of the episode with series number 36?
CREATE TABLE table_28146944_2 (title VARCHAR, no_in_series VARCHAR)
SELECT title FROM table_28146944_2 WHERE no_in_series = 36
### Context: CREATE TABLE table_28146944_2 (title VARCHAR, no_in_series VARCHAR) ### Question: What's the title of the episode with series number 36? ### Answer: SELECT title FROM table_28146944_2 WHERE no_in_series = 36
when was the next coach appointed after niger tornadoes fired their coach?
CREATE TABLE table_28164986_4 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR)
SELECT date_of_appointment FROM table_28164986_4 WHERE manner_of_departure = "fired" AND team = "Niger Tornadoes"
### Context: CREATE TABLE table_28164986_4 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR) ### Question: when was the next coach appointed after niger tornadoes fired their coach? ### Answer: SELECT date_of_appointment FROM table_28164986_4 WHERE manner_of_departure = "fired" AND team = "Niger Tornadoes"
how many managers left sunshine stars?
CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR)
SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = "Sunshine Stars"
### Context: CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR) ### Question: how many managers left sunshine stars? ### Answer: SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = "Sunshine Stars"
how many new managers replaced manager(s) who resigned?
CREATE TABLE table_28164986_4 (incoming_manager VARCHAR, manner_of_departure VARCHAR)
SELECT COUNT(incoming_manager) FROM table_28164986_4 WHERE manner_of_departure = "Resigned"
### Context: CREATE TABLE table_28164986_4 (incoming_manager VARCHAR, manner_of_departure VARCHAR) ### Question: how many new managers replaced manager(s) who resigned? ### Answer: SELECT COUNT(incoming_manager) FROM table_28164986_4 WHERE manner_of_departure = "Resigned"
how many times did tunde abdulrahman leave the team?
CREATE TABLE table_28164986_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
SELECT COUNT(date_of_vacancy) FROM table_28164986_4 WHERE outgoing_manager = "Tunde Abdulrahman"
### Context: CREATE TABLE table_28164986_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) ### Question: how many times did tunde abdulrahman leave the team? ### Answer: SELECT COUNT(date_of_vacancy) FROM table_28164986_4 WHERE outgoing_manager = "Tunde Abdulrahman"
How many platforms have celsius calibur as mystic arte?
CREATE TABLE table_28178595_2 (platform VARCHAR, mystic_arte VARCHAR)
SELECT COUNT(platform) FROM table_28178595_2 WHERE mystic_arte = "Celsius Calibur"
### Context: CREATE TABLE table_28178595_2 (platform VARCHAR, mystic_arte VARCHAR) ### Question: How many platforms have celsius calibur as mystic arte? ### Answer: SELECT COUNT(platform) FROM table_28178595_2 WHERE mystic_arte = "Celsius Calibur"
How many mystic arte have hisui (jadeite) hearts 1 as the character?
CREATE TABLE table_28178595_2 (mystic_arte VARCHAR, character VARCHAR)
SELECT COUNT(mystic_arte) FROM table_28178595_2 WHERE character = "Hisui (Jadeite) Hearts 1"
### Context: CREATE TABLE table_28178595_2 (mystic_arte VARCHAR, character VARCHAR) ### Question: How many mystic arte have hisui (jadeite) hearts 1 as the character? ### Answer: SELECT COUNT(mystic_arte) FROM table_28178595_2 WHERE character = "Hisui (Jadeite) Hearts 1"
How many platforms have nanaly fletch as the character?
CREATE TABLE table_28178595_2 (platform VARCHAR, character VARCHAR)
SELECT COUNT(platform) FROM table_28178595_2 WHERE character = "Nanaly Fletch"
### Context: CREATE TABLE table_28178595_2 (platform VARCHAR, character VARCHAR) ### Question: How many platforms have nanaly fletch as the character? ### Answer: SELECT COUNT(platform) FROM table_28178595_2 WHERE character = "Nanaly Fletch"
What is the status of the character keel (keele) zeibel?
CREATE TABLE table_28178595_2 (status VARCHAR, character VARCHAR)
SELECT status FROM table_28178595_2 WHERE character = "Keel (Keele) Zeibel"
### Context: CREATE TABLE table_28178595_2 (status VARCHAR, character VARCHAR) ### Question: What is the status of the character keel (keele) zeibel? ### Answer: SELECT status FROM table_28178595_2 WHERE character = "Keel (Keele) Zeibel"
What sesaon(s) did they have 254 goals against?
CREATE TABLE table_2817196_1 (season VARCHAR, goals_against VARCHAR)
SELECT season FROM table_2817196_1 WHERE goals_against = 254
### Context: CREATE TABLE table_2817196_1 (season VARCHAR, goals_against VARCHAR) ### Question: What sesaon(s) did they have 254 goals against? ### Answer: SELECT season FROM table_2817196_1 WHERE goals_against = 254
What is the largest number of points in a season?
CREATE TABLE table_2817196_1 (points INTEGER)
SELECT MAX(points) FROM table_2817196_1
### Context: CREATE TABLE table_2817196_1 (points INTEGER) ### Question: What is the largest number of points in a season? ### Answer: SELECT MAX(points) FROM table_2817196_1
What is the Late Middle English equivalent of the Anglian æg, ǣg?
CREATE TABLE table_28177800_5 (late_middle_english VARCHAR, late_old_english__anglian_ VARCHAR)
SELECT late_middle_english FROM table_28177800_5 WHERE late_old_english__anglian_ = "æg, ǣg"
### Context: CREATE TABLE table_28177800_5 (late_middle_english VARCHAR, late_old_english__anglian_ VARCHAR) ### Question: What is the Late Middle English equivalent of the Anglian æg, ǣg? ### Answer: SELECT late_middle_english FROM table_28177800_5 WHERE late_old_english__anglian_ = "æg, ǣg"
What is the example of the Early Modern English ( [x] → /f/) /ɔf/?
CREATE TABLE table_28177800_5 (example VARCHAR, early_modern_english VARCHAR)
SELECT example FROM table_28177800_5 WHERE early_modern_english = "( [x] → /f/) /ɔf/"
### Context: CREATE TABLE table_28177800_5 (example VARCHAR, early_modern_english VARCHAR) ### Question: What is the example of the Early Modern English ( [x] → /f/) /ɔf/? ### Answer: SELECT example FROM table_28177800_5 WHERE early_modern_english = "( [x] → /f/) /ɔf/"
List the numer of miles for 2010.
CREATE TABLE table_28178756_1 (miles__km_ VARCHAR, year VARCHAR)
SELECT miles__km_ FROM table_28178756_1 WHERE year = 2010
### Context: CREATE TABLE table_28178756_1 (miles__km_ VARCHAR, year VARCHAR) ### Question: List the numer of miles for 2010. ### Answer: SELECT miles__km_ FROM table_28178756_1 WHERE year = 2010
On what day did tommy ellis drive?
CREATE TABLE table_28178756_1 (date VARCHAR, driver VARCHAR)
SELECT date FROM table_28178756_1 WHERE driver = "Tommy Ellis"
### Context: CREATE TABLE table_28178756_1 (date VARCHAR, driver VARCHAR) ### Question: On what day did tommy ellis drive? ### Answer: SELECT date FROM table_28178756_1 WHERE driver = "Tommy Ellis"
On what day did joe gibbs racing record a time of 1:53:26?
CREATE TABLE table_28178756_1 (date VARCHAR, team VARCHAR, race_time VARCHAR)
SELECT date FROM table_28178756_1 WHERE team = "Joe Gibbs Racing" AND race_time = "1:53:26"
### Context: CREATE TABLE table_28178756_1 (date VARCHAR, team VARCHAR, race_time VARCHAR) ### Question: On what day did joe gibbs racing record a time of 1:53:26? ### Answer: SELECT date FROM table_28178756_1 WHERE team = "Joe Gibbs Racing" AND race_time = "1:53:26"
What is the average speed for filmar racing?
CREATE TABLE table_28178756_1 (average_speed__mph_ VARCHAR, team VARCHAR)
SELECT average_speed__mph_ FROM table_28178756_1 WHERE team = "FILMAR Racing"
### Context: CREATE TABLE table_28178756_1 (average_speed__mph_ VARCHAR, team VARCHAR) ### Question: What is the average speed for filmar racing? ### Answer: SELECT average_speed__mph_ FROM table_28178756_1 WHERE team = "FILMAR Racing"
List the race time for may 11.
CREATE TABLE table_28178756_1 (race_time VARCHAR, date VARCHAR)
SELECT race_time FROM table_28178756_1 WHERE date = "May 11"
### Context: CREATE TABLE table_28178756_1 (race_time VARCHAR, date VARCHAR) ### Question: List the race time for may 11. ### Answer: SELECT race_time FROM table_28178756_1 WHERE date = "May 11"
What is the total number of modern grannies performed?
CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR)
SELECT COUNT(act) FROM table_28180840_15 WHERE name_name_of_act = "Modern Grannies"
### Context: CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR) ### Question: What is the total number of modern grannies performed? ### Answer: SELECT COUNT(act) FROM table_28180840_15 WHERE name_name_of_act = "Modern Grannies"
What is the name of the performance zhu xiaoming performed?
CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR)
SELECT act FROM table_28180840_15 WHERE name_name_of_act = "Zhu Xiaoming"
### Context: CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR) ### Question: What is the name of the performance zhu xiaoming performed? ### Answer: SELECT act FROM table_28180840_15 WHERE name_name_of_act = "Zhu Xiaoming"
How many performers are 29 that made it to the semi finals?
CREATE TABLE table_28180840_15 (semifinal__week_ VARCHAR, age_s_ VARCHAR)
SELECT semifinal__week_ FROM table_28180840_15 WHERE age_s_ = "29"
### Context: CREATE TABLE table_28180840_15 (semifinal__week_ VARCHAR, age_s_ VARCHAR) ### Question: How many performers are 29 that made it to the semi finals? ### Answer: SELECT semifinal__week_ FROM table_28180840_15 WHERE age_s_ = "29"
What is the name of the zhou jinsong's hometown?
CREATE TABLE table_28180840_15 (hometown VARCHAR, name_name_of_act VARCHAR)
SELECT hometown FROM table_28180840_15 WHERE name_name_of_act = "Zhou Jinsong"
### Context: CREATE TABLE table_28180840_15 (hometown VARCHAR, name_name_of_act VARCHAR) ### Question: What is the name of the zhou jinsong's hometown? ### Answer: SELECT hometown FROM table_28180840_15 WHERE name_name_of_act = "Zhou Jinsong"
How many different production codes does the episode originally aired on October 18, 1984 have?
CREATE TABLE table_2818164_2 (production_code VARCHAR, original_air_date VARCHAR)
SELECT COUNT(production_code) FROM table_2818164_2 WHERE original_air_date = "October 18, 1984"
### Context: CREATE TABLE table_2818164_2 (production_code VARCHAR, original_air_date VARCHAR) ### Question: How many different production codes does the episode originally aired on October 18, 1984 have? ### Answer: SELECT COUNT(production_code) FROM table_2818164_2 WHERE original_air_date = "October 18, 1984"
What's the title of the episode with production code 104?
CREATE TABLE table_2818164_2 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_2818164_2 WHERE production_code = 104
### Context: CREATE TABLE table_2818164_2 (title VARCHAR, production_code VARCHAR) ### Question: What's the title of the episode with production code 104? ### Answer: SELECT title FROM table_2818164_2 WHERE production_code = 104