question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
what's the thursday time with location being hawthorne
CREATE TABLE table_11019212_1 (thursday VARCHAR, location VARCHAR)
SELECT thursday FROM table_11019212_1 WHERE location = "Hawthorne"
### Context: CREATE TABLE table_11019212_1 (thursday VARCHAR, location VARCHAR) ### Question: what's the thursday time with location being hawthorne ### Answer: SELECT thursday FROM table_11019212_1 WHERE location = "Hawthorne"
what's the saturday time with wednesday being 10:00-5:00
CREATE TABLE table_11019212_1 (saturday VARCHAR, wednesday VARCHAR)
SELECT saturday FROM table_11019212_1 WHERE wednesday = "10:00-5:00"
### Context: CREATE TABLE table_11019212_1 (saturday VARCHAR, wednesday VARCHAR) ### Question: what's the saturday time with wednesday being 10:00-5:00 ### Answer: SELECT saturday FROM table_11019212_1 WHERE wednesday = "10:00-5:00"
what's the thursday time with sunday being 1:00-5:00 and tuesday being 1:00-7:00
CREATE TABLE table_11019212_1 (thursday VARCHAR, sunday VARCHAR, tuesday VARCHAR)
SELECT thursday FROM table_11019212_1 WHERE sunday = "1:00-5:00" AND tuesday = "1:00-7:00"
### Context: CREATE TABLE table_11019212_1 (thursday VARCHAR, sunday VARCHAR, tuesday VARCHAR) ### Question: what's the thursday time with sunday being 1:00-5:00 and tuesday being 1:00-7:00 ### Answer: SELECT thursday FROM table_11019212_1 WHERE sunday = "1:00-5:00" AND tuesday = "1:00-7:00"
what's the monday time with tuesday being 9:00-6:00
CREATE TABLE table_11019212_1 (monday VARCHAR, tuesday VARCHAR)
SELECT monday FROM table_11019212_1 WHERE tuesday = "9:00-6:00"
### Context: CREATE TABLE table_11019212_1 (monday VARCHAR, tuesday VARCHAR) ### Question: what's the monday time with tuesday being 9:00-6:00 ### Answer: SELECT monday FROM table_11019212_1 WHERE tuesday = "9:00-6:00"
What are all the reports where Paul Tracy had the fastest lap?
CREATE TABLE table_11056278_3 (report VARCHAR, fastest_lap VARCHAR)
SELECT report FROM table_11056278_3 WHERE fastest_lap = "Paul Tracy"
### Context: CREATE TABLE table_11056278_3 (report VARCHAR, fastest_lap VARCHAR) ### Question: What are all the reports where Paul Tracy had the fastest lap? ### Answer: SELECT report FROM table_11056278_3 WHERE fastest_lap = "Paul Tracy"
Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit?
CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, race_name VARCHAR)
SELECT fastest_lap FROM table_11056278_3 WHERE race_name = "Tenneco Automotive Grand Prix of Detroit"
### Context: CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, race_name VARCHAR) ### Question: Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit? ### Answer: SELECT fastest_lap FROM table_11056278_3 WHERE race_name = "Tenneco Automotive Grand Prix of Detroit"
Who had the fastest lap in the races won by Max Papis?
CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT fastest_lap FROM table_11056278_3 WHERE winning_driver = "Max Papis"
### Context: CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, winning_driver VARCHAR) ### Question: Who had the fastest lap in the races won by Max Papis? ### Answer: SELECT fastest_lap FROM table_11056278_3 WHERE winning_driver = "Max Papis"
In Round 6, how many winning drivers were there?
CREATE TABLE table_11056278_3 (winning_driver VARCHAR, rnd VARCHAR)
SELECT COUNT(winning_driver) FROM table_11056278_3 WHERE rnd = 6
### Context: CREATE TABLE table_11056278_3 (winning_driver VARCHAR, rnd VARCHAR) ### Question: In Round 6, how many winning drivers were there? ### Answer: SELECT COUNT(winning_driver) FROM table_11056278_3 WHERE rnd = 6
What are the original names of the districts where the population in the 2010 census was 210450?
CREATE TABLE table_1104312_5 (original_name VARCHAR, population_at_2010_census VARCHAR)
SELECT original_name FROM table_1104312_5 WHERE population_at_2010_census = 210450
### Context: CREATE TABLE table_1104312_5 (original_name VARCHAR, population_at_2010_census VARCHAR) ### Question: What are the original names of the districts where the population in the 2010 census was 210450? ### Answer: SELECT original_name FROM table_1104312_5 WHERE population_at_2010_census = 210450
What is the original name of the district with the current English name of South Bogor?
CREATE TABLE table_1104312_5 (original_name VARCHAR, english_name VARCHAR)
SELECT original_name FROM table_1104312_5 WHERE english_name = "South Bogor"
### Context: CREATE TABLE table_1104312_5 (original_name VARCHAR, english_name VARCHAR) ### Question: What is the original name of the district with the current English name of South Bogor? ### Answer: SELECT original_name FROM table_1104312_5 WHERE english_name = "South Bogor"
What is the listed population from the 2010 census of West Bogor?
CREATE TABLE table_1104312_5 (population_at_2010_census INTEGER, english_name VARCHAR)
SELECT MIN(population_at_2010_census) FROM table_1104312_5 WHERE english_name = "West Bogor"
### Context: CREATE TABLE table_1104312_5 (population_at_2010_census INTEGER, english_name VARCHAR) ### Question: What is the listed population from the 2010 census of West Bogor? ### Answer: SELECT MIN(population_at_2010_census) FROM table_1104312_5 WHERE english_name = "West Bogor"
How many districts have an area of 17.72 KM2?
CREATE TABLE table_1104312_5 (english_name VARCHAR, area_in_km² VARCHAR)
SELECT COUNT(english_name) FROM table_1104312_5 WHERE area_in_km² = "17.72"
### Context: CREATE TABLE table_1104312_5 (english_name VARCHAR, area_in_km² VARCHAR) ### Question: How many districts have an area of 17.72 KM2? ### Answer: SELECT COUNT(english_name) FROM table_1104312_5 WHERE area_in_km² = "17.72"
What is the area in km2 for the district whose original name was Kecamatan Bogor Timur?
CREATE TABLE table_1104312_5 (area_in_km² VARCHAR, original_name VARCHAR)
SELECT area_in_km² FROM table_1104312_5 WHERE original_name = "Kecamatan Bogor Timur"
### Context: CREATE TABLE table_1104312_5 (area_in_km² VARCHAR, original_name VARCHAR) ### Question: What is the area in km2 for the district whose original name was Kecamatan Bogor Timur? ### Answer: SELECT area_in_km² FROM table_1104312_5 WHERE original_name = "Kecamatan Bogor Timur"
What is the number of colour with the regisration number of mg-509?
CREATE TABLE table_11066073_1 (colour VARCHAR, registration_no VARCHAR)
SELECT COUNT(colour) FROM table_11066073_1 WHERE registration_no = "MG-509"
### Context: CREATE TABLE table_11066073_1 (colour VARCHAR, registration_no VARCHAR) ### Question: What is the number of colour with the regisration number of mg-509? ### Answer: SELECT COUNT(colour) FROM table_11066073_1 WHERE registration_no = "MG-509"
What is the title of the episode directed by Mark Tinker?
CREATE TABLE table_11058032_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_11058032_1 WHERE directed_by = "Mark Tinker"
### Context: CREATE TABLE table_11058032_1 (title VARCHAR, directed_by VARCHAR) ### Question: What is the title of the episode directed by Mark Tinker? ### Answer: SELECT title FROM table_11058032_1 WHERE directed_by = "Mark Tinker"
What episode in the season was directed by Jeff Melman?
CREATE TABLE table_11058032_1 (no_in_season INTEGER, directed_by VARCHAR)
SELECT MIN(no_in_season) FROM table_11058032_1 WHERE directed_by = "Jeff Melman"
### Context: CREATE TABLE table_11058032_1 (no_in_season INTEGER, directed_by VARCHAR) ### Question: What episode in the season was directed by Jeff Melman? ### Answer: SELECT MIN(no_in_season) FROM table_11058032_1 WHERE directed_by = "Jeff Melman"
How many episodes had 16.03 million viewers?
CREATE TABLE table_11058032_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(no_in_series) FROM table_11058032_1 WHERE us_viewers__millions_ = "16.03"
### Context: CREATE TABLE table_11058032_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many episodes had 16.03 million viewers? ### Answer: SELECT COUNT(no_in_series) FROM table_11058032_1 WHERE us_viewers__millions_ = "16.03"
What is the number of interregnum for duration 3 months, 6 days?
CREATE TABLE table_11071897_1 (interregnum_ended VARCHAR, duration VARCHAR)
SELECT COUNT(interregnum_ended) FROM table_11071897_1 WHERE duration = "3 months, 6 days"
### Context: CREATE TABLE table_11071897_1 (interregnum_ended VARCHAR, duration VARCHAR) ### Question: What is the number of interregnum for duration 3 months, 6 days? ### Answer: SELECT COUNT(interregnum_ended) FROM table_11071897_1 WHERE duration = "3 months, 6 days"
Who directed Episode 8?
CREATE TABLE table_11075747_4 (directed_by VARCHAR, episode__number VARCHAR)
SELECT directed_by FROM table_11075747_4 WHERE episode__number = 8
### Context: CREATE TABLE table_11075747_4 (directed_by VARCHAR, episode__number VARCHAR) ### Question: Who directed Episode 8? ### Answer: SELECT directed_by FROM table_11075747_4 WHERE episode__number = 8
What was the original air date for Series 36?
CREATE TABLE table_11075747_4 (original_air_date VARCHAR, series__number VARCHAR)
SELECT original_air_date FROM table_11075747_4 WHERE series__number = 36
### Context: CREATE TABLE table_11075747_4 (original_air_date VARCHAR, series__number VARCHAR) ### Question: What was the original air date for Series 36? ### Answer: SELECT original_air_date FROM table_11075747_4 WHERE series__number = 36
Who wrote Series 38?
CREATE TABLE table_11075747_4 (written_by VARCHAR, series__number VARCHAR)
SELECT written_by FROM table_11075747_4 WHERE series__number = 38
### Context: CREATE TABLE table_11075747_4 (written_by VARCHAR, series__number VARCHAR) ### Question: Who wrote Series 38? ### Answer: SELECT written_by FROM table_11075747_4 WHERE series__number = 38
What is the percentage for manhattan 45,901?
CREATE TABLE table_1108394_24 (_percentage VARCHAR, manhattan VARCHAR)
SELECT COUNT(_percentage) FROM table_1108394_24 WHERE manhattan = "45,901"
### Context: CREATE TABLE table_1108394_24 (_percentage VARCHAR, manhattan VARCHAR) ### Question: What is the percentage for manhattan 45,901? ### Answer: SELECT COUNT(_percentage) FROM table_1108394_24 WHERE manhattan = "45,901"
Who won the 1973 democratic initial primary for queens of 19%?
CREATE TABLE table_1108394_24 (queens VARCHAR)
SELECT 1973 AS _democratic_initial_primary FROM table_1108394_24 WHERE queens = "19_percentage"
### Context: CREATE TABLE table_1108394_24 (queens VARCHAR) ### Question: Who won the 1973 democratic initial primary for queens of 19%? ### Answer: SELECT 1973 AS _democratic_initial_primary FROM table_1108394_24 WHERE queens = "19_percentage"
What is the manhattan for richmond 35%?
CREATE TABLE table_1108394_24 (manhattan VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)
SELECT manhattan FROM table_1108394_24 WHERE richmond_[staten_is] = "35_percentage"
### Context: CREATE TABLE table_1108394_24 (manhattan VARCHAR, richmond_ VARCHAR, staten_is VARCHAR) ### Question: What is the manhattan for richmond 35%? ### Answer: SELECT manhattan FROM table_1108394_24 WHERE richmond_[staten_is] = "35_percentage"
What is the queens where richmond staten is 42%?
CREATE TABLE table_1108394_24 (queens VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)
SELECT queens FROM table_1108394_24 WHERE richmond_[staten_is] = "42_percentage"
### Context: CREATE TABLE table_1108394_24 (queens VARCHAR, richmond_ VARCHAR, staten_is VARCHAR) ### Question: What is the queens where richmond staten is 42%? ### Answer: SELECT queens FROM table_1108394_24 WHERE richmond_[staten_is] = "42_percentage"
what's the party with brooklyn value of 51.0%
CREATE TABLE table_1108394_43 (party VARCHAR, brooklyn VARCHAR)
SELECT party FROM table_1108394_43 WHERE brooklyn = "51.0_percentage"
### Context: CREATE TABLE table_1108394_43 (party VARCHAR, brooklyn VARCHAR) ### Question: what's the party with brooklyn value of 51.0% ### Answer: SELECT party FROM table_1108394_43 WHERE brooklyn = "51.0_percentage"
what's the brooklyn with queens value of 16.8%
CREATE TABLE table_1108394_43 (brooklyn VARCHAR, queens VARCHAR)
SELECT brooklyn FROM table_1108394_43 WHERE queens = "16.8_percentage"
### Context: CREATE TABLE table_1108394_43 (brooklyn VARCHAR, queens VARCHAR) ### Question: what's the brooklyn with queens value of 16.8% ### Answer: SELECT brooklyn FROM table_1108394_43 WHERE queens = "16.8_percentage"
what is the minimum total
CREATE TABLE table_1108394_43 (total INTEGER)
SELECT MIN(total) FROM table_1108394_43
### Context: CREATE TABLE table_1108394_43 (total INTEGER) ### Question: what is the minimum total ### Answer: SELECT MIN(total) FROM table_1108394_43
what's the % with total value of 249887 and queens value of 6.8%
CREATE TABLE table_1108394_43 (_percentage VARCHAR, total VARCHAR, queens VARCHAR)
SELECT _percentage FROM table_1108394_43 WHERE total = 249887 AND queens = "6.8_percentage"
### Context: CREATE TABLE table_1108394_43 (_percentage VARCHAR, total VARCHAR, queens VARCHAR) ### Question: what's the % with total value of 249887 and queens value of 6.8% ### Answer: SELECT _percentage FROM table_1108394_43 WHERE total = 249887 AND queens = "6.8_percentage"
Which teams were in the central division and located in livonia?
CREATE TABLE table_11094950_1 (team VARCHAR, division VARCHAR, location VARCHAR)
SELECT team FROM table_11094950_1 WHERE division = "Central" AND location = "Livonia"
### Context: CREATE TABLE table_11094950_1 (team VARCHAR, division VARCHAR, location VARCHAR) ### Question: Which teams were in the central division and located in livonia? ### Answer: SELECT team FROM table_11094950_1 WHERE division = "Central" AND location = "Livonia"
Which teams are located in highland township?
CREATE TABLE table_11094950_1 (team VARCHAR, location VARCHAR)
SELECT team FROM table_11094950_1 WHERE location = "Highland Township"
### Context: CREATE TABLE table_11094950_1 (team VARCHAR, location VARCHAR) ### Question: Which teams are located in highland township? ### Answer: SELECT team FROM table_11094950_1 WHERE location = "Highland Township"
What conference was the churchill chargers team in?
CREATE TABLE table_11094950_1 (conference VARCHAR, team VARCHAR)
SELECT conference FROM table_11094950_1 WHERE team = "Churchill Chargers"
### Context: CREATE TABLE table_11094950_1 (conference VARCHAR, team VARCHAR) ### Question: What conference was the churchill chargers team in? ### Answer: SELECT conference FROM table_11094950_1 WHERE team = "Churchill Chargers"
What was the titles of the episodes written by ken lazebnik?
CREATE TABLE table_11111116_7 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_11111116_7 WHERE written_by = "Ken LaZebnik"
### Context: CREATE TABLE table_11111116_7 (title VARCHAR, written_by VARCHAR) ### Question: What was the titles of the episodes written by ken lazebnik? ### Answer: SELECT title FROM table_11111116_7 WHERE written_by = "Ken LaZebnik"
Who directed an episode that had 2.81 million U.S. viewers?
CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = "2.81"
### Context: CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who directed an episode that had 2.81 million U.S. viewers? ### Answer: SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = "2.81"
What were the names of the episodes that had 3.02 million U.S. viewers?
CREATE TABLE table_11111116_7 (title VARCHAR, us_viewers__million_ VARCHAR)
SELECT title FROM table_11111116_7 WHERE us_viewers__million_ = "3.02"
### Context: CREATE TABLE table_11111116_7 (title VARCHAR, us_viewers__million_ VARCHAR) ### Question: What were the names of the episodes that had 3.02 million U.S. viewers? ### Answer: SELECT title FROM table_11111116_7 WHERE us_viewers__million_ = "3.02"
Who directed episodes that had 2.61 million U.S. viewers?
CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = "2.61"
### Context: CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who directed episodes that had 2.61 million U.S. viewers? ### Answer: SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = "2.61"
How many millions of U.S. viewers watched the episode that first aired on March 31, 2013?
CREATE TABLE table_11111116_8 (us_viewers__million_ VARCHAR, original_air_date VARCHAR)
SELECT us_viewers__million_ FROM table_11111116_8 WHERE original_air_date = "March 31, 2013"
### Context: CREATE TABLE table_11111116_8 (us_viewers__million_ VARCHAR, original_air_date VARCHAR) ### Question: How many millions of U.S. viewers watched the episode that first aired on March 31, 2013? ### Answer: SELECT us_viewers__million_ FROM table_11111116_8 WHERE original_air_date = "March 31, 2013"
Who wrote the episodes that were viewed by 2.12 million viewers?
CREATE TABLE table_11111116_8 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT written_by FROM table_11111116_8 WHERE us_viewers__million_ = "2.12"
### Context: CREATE TABLE table_11111116_8 (written_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who wrote the episodes that were viewed by 2.12 million viewers? ### Answer: SELECT written_by FROM table_11111116_8 WHERE us_viewers__million_ = "2.12"
The episode written by Rebecca Dameron aired on what date?
CREATE TABLE table_11111116_6 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_11111116_6 WHERE written_by = "Rebecca Dameron"
### Context: CREATE TABLE table_11111116_6 (original_air_date VARCHAR, written_by VARCHAR) ### Question: The episode written by Rebecca Dameron aired on what date? ### Answer: SELECT original_air_date FROM table_11111116_6 WHERE written_by = "Rebecca Dameron"
Which episode in the series drew 3.6 million U.S. viewers?
CREATE TABLE table_11111116_6 (no_in_series INTEGER, us_viewers__million_ VARCHAR)
SELECT MIN(no_in_series) FROM table_11111116_6 WHERE us_viewers__million_ = "3.6"
### Context: CREATE TABLE table_11111116_6 (no_in_series INTEGER, us_viewers__million_ VARCHAR) ### Question: Which episode in the series drew 3.6 million U.S. viewers? ### Answer: SELECT MIN(no_in_series) FROM table_11111116_6 WHERE us_viewers__million_ = "3.6"
Who wrote the episode that aired on April 17, 2011?
CREATE TABLE table_11111116_6 (written_by VARCHAR, original_air_date VARCHAR)
SELECT written_by FROM table_11111116_6 WHERE original_air_date = "April 17, 2011"
### Context: CREATE TABLE table_11111116_6 (written_by VARCHAR, original_air_date VARCHAR) ### Question: Who wrote the episode that aired on April 17, 2011? ### Answer: SELECT written_by FROM table_11111116_6 WHERE original_air_date = "April 17, 2011"
How many times did episode 79 originally air?
CREATE TABLE table_11111116_6 (original_air_date VARCHAR, no_in_series VARCHAR)
SELECT COUNT(original_air_date) FROM table_11111116_6 WHERE no_in_series = 79
### Context: CREATE TABLE table_11111116_6 (original_air_date VARCHAR, no_in_series VARCHAR) ### Question: How many times did episode 79 originally air? ### Answer: SELECT COUNT(original_air_date) FROM table_11111116_6 WHERE no_in_series = 79
What is the name of the shield winner in which the mls cup winner and mls cup runner up is colorado rapids?
CREATE TABLE table_11148572_1 (mls_cup_winner VARCHAR, mls_cup_runner_up VARCHAR)
SELECT mls_cup_winner FROM table_11148572_1 WHERE mls_cup_runner_up = "Colorado Rapids"
### Context: CREATE TABLE table_11148572_1 (mls_cup_winner VARCHAR, mls_cup_runner_up VARCHAR) ### Question: What is the name of the shield winner in which the mls cup winner and mls cup runner up is colorado rapids? ### Answer: SELECT mls_cup_winner FROM table_11148572_1 WHERE mls_cup_runner_up = "Colorado Rapids"
What is the name of the shield winner in which the mls cup winner and mls supporters shield runner up is Chivas usa?
CREATE TABLE table_11148572_1 (mls_cup_winner VARCHAR, mls_supporters_shield_runner_up VARCHAR)
SELECT mls_cup_winner FROM table_11148572_1 WHERE mls_supporters_shield_runner_up = "Chivas USA"
### Context: CREATE TABLE table_11148572_1 (mls_cup_winner VARCHAR, mls_supporters_shield_runner_up VARCHAR) ### Question: What is the name of the shield winner in which the mls cup winner and mls supporters shield runner up is Chivas usa? ### Answer: SELECT mls_cup_winner FROM table_11148572_1 WHERE mls_supporters_shi...
who is the of the shield winnerin which the mls cup runner-up and mls cup winner is real salt lake?
CREATE TABLE table_11148572_1 (mls_cup_runner_up VARCHAR, mls_cup_winner VARCHAR)
SELECT mls_cup_runner_up FROM table_11148572_1 WHERE mls_cup_winner = "Real Salt Lake"
### Context: CREATE TABLE table_11148572_1 (mls_cup_runner_up VARCHAR, mls_cup_winner VARCHAR) ### Question: who is the of the shield winnerin which the mls cup runner-up and mls cup winner is real salt lake? ### Answer: SELECT mls_cup_runner_up FROM table_11148572_1 WHERE mls_cup_winner = "Real Salt Lake"
Which shield winner has the mls cup runner up and the season is 2000?
CREATE TABLE table_11148572_1 (mls_cup_runner_up VARCHAR, season VARCHAR)
SELECT mls_cup_runner_up FROM table_11148572_1 WHERE season = 2000
### Context: CREATE TABLE table_11148572_1 (mls_cup_runner_up VARCHAR, season VARCHAR) ### Question: Which shield winner has the mls cup runner up and the season is 2000? ### Answer: SELECT mls_cup_runner_up FROM table_11148572_1 WHERE season = 2000
League apps (sub) maximum?
CREATE TABLE table_1112176_1 (league_apps__sub_ INTEGER)
SELECT MAX(league_apps__sub_) FROM table_1112176_1
### Context: CREATE TABLE table_1112176_1 (league_apps__sub_ INTEGER) ### Question: League apps (sub) maximum? ### Answer: SELECT MAX(league_apps__sub_) FROM table_1112176_1
When total goals is 11 what was the league apps (sub)?
CREATE TABLE table_1112176_1 (league_apps__sub_ INTEGER, total_goals VARCHAR)
SELECT MAX(league_apps__sub_) FROM table_1112176_1 WHERE total_goals = 11
### Context: CREATE TABLE table_1112176_1 (league_apps__sub_ INTEGER, total_goals VARCHAR) ### Question: When total goals is 11 what was the league apps (sub)? ### Answer: SELECT MAX(league_apps__sub_) FROM table_1112176_1 WHERE total_goals = 11
Which city had the charleston area convention center as its callback location
CREATE TABLE table_11129123_1 (audition_city VARCHAR, callback_venue VARCHAR)
SELECT audition_city FROM table_11129123_1 WHERE callback_venue = "Charleston Area Convention Center"
### Context: CREATE TABLE table_11129123_1 (audition_city VARCHAR, callback_venue VARCHAR) ### Question: Which city had the charleston area convention center as its callback location ### Answer: SELECT audition_city FROM table_11129123_1 WHERE callback_venue = "Charleston Area Convention Center"
When did the callbacks from rancho bernardo inn air
CREATE TABLE table_11129123_1 (episode_air_date VARCHAR, callback_venue VARCHAR)
SELECT episode_air_date FROM table_11129123_1 WHERE callback_venue = "Rancho Bernardo Inn"
### Context: CREATE TABLE table_11129123_1 (episode_air_date VARCHAR, callback_venue VARCHAR) ### Question: When did the callbacks from rancho bernardo inn air ### Answer: SELECT episode_air_date FROM table_11129123_1 WHERE callback_venue = "Rancho Bernardo Inn"
The station located in Albuquerque has been owned since what year?
CREATE TABLE table_11147852_1 (owned_since VARCHAR, city_of_license_market VARCHAR)
SELECT owned_since FROM table_11147852_1 WHERE city_of_license_market = "Albuquerque"
### Context: CREATE TABLE table_11147852_1 (owned_since VARCHAR, city_of_license_market VARCHAR) ### Question: The station located in Albuquerque has been owned since what year? ### Answer: SELECT owned_since FROM table_11147852_1 WHERE city_of_license_market = "Albuquerque"
What channels have stations that were affiliated in 2002?
CREATE TABLE table_11147852_1 (channel_tv___dt__ VARCHAR, year_of_affiliation VARCHAR)
SELECT channel_tv___dt__ FROM table_11147852_1 WHERE year_of_affiliation = "2002"
### Context: CREATE TABLE table_11147852_1 (channel_tv___dt__ VARCHAR, year_of_affiliation VARCHAR) ### Question: What channels have stations that were affiliated in 2002? ### Answer: SELECT channel_tv___dt__ FROM table_11147852_1 WHERE year_of_affiliation = "2002"
What market is KTFK-DT in?
CREATE TABLE table_11147852_1 (city_of_license_market VARCHAR, station VARCHAR)
SELECT city_of_license_market FROM table_11147852_1 WHERE station = "KTFK-DT"
### Context: CREATE TABLE table_11147852_1 (city_of_license_market VARCHAR, station VARCHAR) ### Question: What market is KTFK-DT in? ### Answer: SELECT city_of_license_market FROM table_11147852_1 WHERE station = "KTFK-DT"
what's the engine where performance is 0–100km/h: 10.5s, vmax km/h (mph)
CREATE TABLE table_11167610_1 (engine VARCHAR, performance VARCHAR)
SELECT engine FROM table_11167610_1 WHERE performance = "0–100km/h: 10.5s, VMax km/h (mph)"
### Context: CREATE TABLE table_11167610_1 (engine VARCHAR, performance VARCHAR) ### Question: what's the engine where performance is 0–100km/h: 10.5s, vmax km/h (mph) ### Answer: SELECT engine FROM table_11167610_1 WHERE performance = "0–100km/h: 10.5s, VMax km/h (mph)"
what's the turbo where trim is 2.0 20v
CREATE TABLE table_11167610_1 (turbo VARCHAR, trim VARCHAR)
SELECT turbo FROM table_11167610_1 WHERE trim = "2.0 20v"
### Context: CREATE TABLE table_11167610_1 (turbo VARCHAR, trim VARCHAR) ### Question: what's the turbo where trim is 2.0 20v ### Answer: SELECT turbo FROM table_11167610_1 WHERE trim = "2.0 20v"
what's the torque where performance is 0–100km/h: 7.5s auto, vmax: km/h (mph)
CREATE TABLE table_11167610_1 (torque VARCHAR, performance VARCHAR)
SELECT torque FROM table_11167610_1 WHERE performance = "0–100km/h: 7.5s auto, VMax: km/h (mph)"
### Context: CREATE TABLE table_11167610_1 (torque VARCHAR, performance VARCHAR) ### Question: what's the torque where performance is 0–100km/h: 7.5s auto, vmax: km/h (mph) ### Answer: SELECT torque FROM table_11167610_1 WHERE performance = "0–100km/h: 7.5s auto, VMax: km/h (mph)"
what's the transmission where turbo is yes (mitsubishi td04-16t )
CREATE TABLE table_11167610_1 (transmission VARCHAR, turbo VARCHAR)
SELECT transmission FROM table_11167610_1 WHERE turbo = "Yes (Mitsubishi TD04-16t )"
### Context: CREATE TABLE table_11167610_1 (transmission VARCHAR, turbo VARCHAR) ### Question: what's the transmission where turbo is yes (mitsubishi td04-16t ) ### Answer: SELECT transmission FROM table_11167610_1 WHERE turbo = "Yes (Mitsubishi TD04-16t )"
what's the fuel delivery where power is hp (kw) @6500 rpm
CREATE TABLE table_11167610_1 (fuel_delivery VARCHAR, power VARCHAR)
SELECT fuel_delivery FROM table_11167610_1 WHERE power = "hp (kW) @6500 rpm"
### Context: CREATE TABLE table_11167610_1 (fuel_delivery VARCHAR, power VARCHAR) ### Question: what's the fuel delivery where power is hp (kw) @6500 rpm ### Answer: SELECT fuel_delivery FROM table_11167610_1 WHERE power = "hp (kW) @6500 rpm"
" what's the engine with turbo being yes (mitsubishi td04-15g ) "
CREATE TABLE table_11167610_1 (engine VARCHAR, turbo VARCHAR)
SELECT engine FROM table_11167610_1 WHERE turbo = "Yes (Mitsubishi TD04-15g )"
### Context: CREATE TABLE table_11167610_1 (engine VARCHAR, turbo VARCHAR) ### Question: " what's the engine with turbo being yes (mitsubishi td04-15g ) " ### Answer: SELECT engine FROM table_11167610_1 WHERE turbo = "Yes (Mitsubishi TD04-15g )"
What is the english title that has finale as 33 and peak as 42?
CREATE TABLE table_11173827_1 (english_title VARCHAR, finale VARCHAR, peak VARCHAR)
SELECT english_title FROM table_11173827_1 WHERE finale = 33 AND peak = 42
### Context: CREATE TABLE table_11173827_1 (english_title VARCHAR, finale VARCHAR, peak VARCHAR) ### Question: What is the english title that has finale as 33 and peak as 42? ### Answer: SELECT english_title FROM table_11173827_1 WHERE finale = 33 AND peak = 42
What is the english title where the premiere is less than 30.0 and the finale is bigger than 36.0?
CREATE TABLE table_11173827_1 (english_title VARCHAR, premiere VARCHAR, finale VARCHAR)
SELECT english_title FROM table_11173827_1 WHERE premiere < 30.0 AND finale > 36.0
### Context: CREATE TABLE table_11173827_1 (english_title VARCHAR, premiere VARCHAR, finale VARCHAR) ### Question: What is the english title where the premiere is less than 30.0 and the finale is bigger than 36.0? ### Answer: SELECT english_title FROM table_11173827_1 WHERE premiere < 30.0 AND finale > 36.0
What is the rank of the chinese title 緣來自有機?
CREATE TABLE table_11173827_1 (rank VARCHAR, chinese_title VARCHAR)
SELECT rank FROM table_11173827_1 WHERE chinese_title = "緣來自有機"
### Context: CREATE TABLE table_11173827_1 (rank VARCHAR, chinese_title VARCHAR) ### Question: What is the rank of the chinese title 緣來自有機? ### Answer: SELECT rank FROM table_11173827_1 WHERE chinese_title = "緣來自有機"
What amount is the number of hk viewers where chinese title is 十兄弟?
CREATE TABLE table_11173827_1 (hk_viewers VARCHAR, chinese_title VARCHAR)
SELECT hk_viewers FROM table_11173827_1 WHERE chinese_title = "十兄弟"
### Context: CREATE TABLE table_11173827_1 (hk_viewers VARCHAR, chinese_title VARCHAR) ### Question: What amount is the number of hk viewers where chinese title is 十兄弟? ### Answer: SELECT hk_viewers FROM table_11173827_1 WHERE chinese_title = "十兄弟"
What is the weekly rank with an air date is november 12, 2007?
CREATE TABLE table_11178271_1 (weekly_rank VARCHAR, air_date VARCHAR)
SELECT weekly_rank FROM table_11178271_1 WHERE air_date = "November 12, 2007"
### Context: CREATE TABLE table_11178271_1 (weekly_rank VARCHAR, air_date VARCHAR) ### Question: What is the weekly rank with an air date is november 12, 2007? ### Answer: SELECT weekly_rank FROM table_11178271_1 WHERE air_date = "November 12, 2007"
What is the lowest weekly rank with an air date of november 26, 2007?
CREATE TABLE table_11178271_1 (weekly_rank INTEGER, air_date VARCHAR)
SELECT MIN(weekly_rank) FROM table_11178271_1 WHERE air_date = "November 26, 2007"
### Context: CREATE TABLE table_11178271_1 (weekly_rank INTEGER, air_date VARCHAR) ### Question: What is the lowest weekly rank with an air date of november 26, 2007? ### Answer: SELECT MIN(weekly_rank) FROM table_11178271_1 WHERE air_date = "November 26, 2007"
What is the viewers where the rating is 5.3?
CREATE TABLE table_11178271_1 (viewers__m_ VARCHAR, rating VARCHAR)
SELECT viewers__m_ FROM table_11178271_1 WHERE rating = "5.3"
### Context: CREATE TABLE table_11178271_1 (viewers__m_ VARCHAR, rating VARCHAR) ### Question: What is the viewers where the rating is 5.3? ### Answer: SELECT viewers__m_ FROM table_11178271_1 WHERE rating = "5.3"
What is the highest of balmoor/
CREATE TABLE table_11206787_5 (highest VARCHAR, stadium VARCHAR)
SELECT highest FROM table_11206787_5 WHERE stadium = "Balmoor"
### Context: CREATE TABLE table_11206787_5 (highest VARCHAR, stadium VARCHAR) ### Question: What is the highest of balmoor/ ### Answer: SELECT highest FROM table_11206787_5 WHERE stadium = "Balmoor"
What is the number of capacity at somerset park?
CREATE TABLE table_11206787_5 (capacity VARCHAR, stadium VARCHAR)
SELECT COUNT(capacity) FROM table_11206787_5 WHERE stadium = "Somerset Park"
### Context: CREATE TABLE table_11206787_5 (capacity VARCHAR, stadium VARCHAR) ### Question: What is the number of capacity at somerset park? ### Answer: SELECT COUNT(capacity) FROM table_11206787_5 WHERE stadium = "Somerset Park"
What is the minimum capacity where airdrie united is?
CREATE TABLE table_11206787_5 (capacity INTEGER, team VARCHAR)
SELECT MIN(capacity) FROM table_11206787_5 WHERE team = "Airdrie United"
### Context: CREATE TABLE table_11206787_5 (capacity INTEGER, team VARCHAR) ### Question: What is the minimum capacity where airdrie united is? ### Answer: SELECT MIN(capacity) FROM table_11206787_5 WHERE team = "Airdrie United"
What is the stadium for alloa athletic?
CREATE TABLE table_11206787_5 (stadium VARCHAR, team VARCHAR)
SELECT stadium FROM table_11206787_5 WHERE team = "Alloa Athletic"
### Context: CREATE TABLE table_11206787_5 (stadium VARCHAR, team VARCHAR) ### Question: What is the stadium for alloa athletic? ### Answer: SELECT stadium FROM table_11206787_5 WHERE team = "Alloa Athletic"
What is the highest of ayr united?
CREATE TABLE table_11206787_5 (highest INTEGER, team VARCHAR)
SELECT MIN(highest) FROM table_11206787_5 WHERE team = "Ayr United"
### Context: CREATE TABLE table_11206787_5 (highest INTEGER, team VARCHAR) ### Question: What is the highest of ayr united? ### Answer: SELECT MIN(highest) FROM table_11206787_5 WHERE team = "Ayr United"
What is the average?
CREATE TABLE table_11206787_5 (average INTEGER)
SELECT MIN(average) FROM table_11206787_5
### Context: CREATE TABLE table_11206787_5 (average INTEGER) ### Question: What is the average? ### Answer: SELECT MIN(average) FROM table_11206787_5
When are team Galway's dates of appointment?
CREATE TABLE table_11190568_7 (date_of_appointment VARCHAR, team VARCHAR)
SELECT date_of_appointment FROM table_11190568_7 WHERE team = "Galway"
### Context: CREATE TABLE table_11190568_7 (date_of_appointment VARCHAR, team VARCHAR) ### Question: When are team Galway's dates of appointment? ### Answer: SELECT date_of_appointment FROM table_11190568_7 WHERE team = "Galway"
When are the vacancy dates for outgoing manager Damien Fox?
CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_vacancy FROM table_11190568_7 WHERE outgoing_manager = "Damien Fox"
### Context: CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) ### Question: When are the vacancy dates for outgoing manager Damien Fox? ### Answer: SELECT date_of_vacancy FROM table_11190568_7 WHERE outgoing_manager = "Damien Fox"
When is the date of vacancy of Davy Fitzgerald being a replacement?
CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
SELECT date_of_vacancy FROM table_11190568_7 WHERE replaced_by = "Davy FitzGerald"
### Context: CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, replaced_by VARCHAR) ### Question: When is the date of vacancy of Davy Fitzgerald being a replacement? ### Answer: SELECT date_of_vacancy FROM table_11190568_7 WHERE replaced_by = "Davy FitzGerald"
Which team has the outgoing manager John Meyler?
CREATE TABLE table_11190568_7 (team VARCHAR, outgoing_manager VARCHAR)
SELECT team FROM table_11190568_7 WHERE outgoing_manager = "John Meyler"
### Context: CREATE TABLE table_11190568_7 (team VARCHAR, outgoing_manager VARCHAR) ### Question: Which team has the outgoing manager John Meyler? ### Answer: SELECT team FROM table_11190568_7 WHERE outgoing_manager = "John Meyler"
How many 4 credits is the hand two pair?
CREATE TABLE table_11200856_1 (hand VARCHAR)
SELECT COUNT(4 AS _credits) FROM table_11200856_1 WHERE hand = "Two pair"
### Context: CREATE TABLE table_11200856_1 (hand VARCHAR) ### Question: How many 4 credits is the hand two pair? ### Answer: SELECT COUNT(4 AS _credits) FROM table_11200856_1 WHERE hand = "Two pair"
What duration is listed for Christian de la Fuente?
CREATE TABLE table_11210576_3 (duration VARCHAR, actor VARCHAR)
SELECT duration FROM table_11210576_3 WHERE actor = "Christian de la Fuente"
### Context: CREATE TABLE table_11210576_3 (duration VARCHAR, actor VARCHAR) ### Question: What duration is listed for Christian de la Fuente? ### Answer: SELECT duration FROM table_11210576_3 WHERE actor = "Christian de la Fuente"
What was the final episode for Dea Agent?
CREATE TABLE table_11210576_3 (final_episode VARCHAR, position VARCHAR)
SELECT final_episode FROM table_11210576_3 WHERE position = "DEA Agent"
### Context: CREATE TABLE table_11210576_3 (final_episode VARCHAR, position VARCHAR) ### Question: What was the final episode for Dea Agent? ### Answer: SELECT final_episode FROM table_11210576_3 WHERE position = "DEA Agent"
What days is greenock morton vacant?
CREATE TABLE table_11207040_6 (date_of_vacancy VARCHAR, team VARCHAR)
SELECT date_of_vacancy FROM table_11207040_6 WHERE team = "Greenock Morton"
### Context: CREATE TABLE table_11207040_6 (date_of_vacancy VARCHAR, team VARCHAR) ### Question: What days is greenock morton vacant? ### Answer: SELECT date_of_vacancy FROM table_11207040_6 WHERE team = "Greenock Morton"
What are the dates of the outgoing manager colin hendry does appointments?
CREATE TABLE table_11207040_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_11207040_6 WHERE outgoing_manager = "Colin Hendry"
### Context: CREATE TABLE table_11207040_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) ### Question: What are the dates of the outgoing manager colin hendry does appointments? ### Answer: SELECT date_of_appointment FROM table_11207040_6 WHERE outgoing_manager = "Colin Hendry"
What teams does jim mcinally manage?
CREATE TABLE table_11207040_6 (team VARCHAR, outgoing_manager VARCHAR)
SELECT team FROM table_11207040_6 WHERE outgoing_manager = "Jim McInally"
### Context: CREATE TABLE table_11207040_6 (team VARCHAR, outgoing_manager VARCHAR) ### Question: What teams does jim mcinally manage? ### Answer: SELECT team FROM table_11207040_6 WHERE outgoing_manager = "Jim McInally"
What days are vacant that were replaced by john brown?
CREATE TABLE table_11207040_6 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
SELECT date_of_vacancy FROM table_11207040_6 WHERE replaced_by = "John Brown"
### Context: CREATE TABLE table_11207040_6 (date_of_vacancy VARCHAR, replaced_by VARCHAR) ### Question: What days are vacant that were replaced by john brown? ### Answer: SELECT date_of_vacancy FROM table_11207040_6 WHERE replaced_by = "John Brown"
What manner of departure is listed with an appointment date of 13 march 2008
CREATE TABLE table_11206916_2 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
SELECT manner_of_departure FROM table_11206916_2 WHERE date_of_appointment = "13 March 2008"
### Context: CREATE TABLE table_11206916_2 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) ### Question: What manner of departure is listed with an appointment date of 13 march 2008 ### Answer: SELECT manner_of_departure FROM table_11206916_2 WHERE date_of_appointment = "13 March 2008"
What is the date of appointment for outgoing manager Campbell Money
CREATE TABLE table_11206916_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_11206916_2 WHERE outgoing_manager = "Campbell Money"
### Context: CREATE TABLE table_11206916_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) ### Question: What is the date of appointment for outgoing manager Campbell Money ### Answer: SELECT date_of_appointment FROM table_11206916_2 WHERE outgoing_manager = "Campbell Money"
What is the lowest attendance that East End Park has ever had?
CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR)
SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = "East End Park"
### Context: CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR) ### Question: What is the lowest attendance that East End Park has ever had? ### Answer: SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = "East End Park"
What team plays at Palmerston Park?
CREATE TABLE table_11207040_5 (team VARCHAR, stadium VARCHAR)
SELECT team FROM table_11207040_5 WHERE stadium = "Palmerston Park"
### Context: CREATE TABLE table_11207040_5 (team VARCHAR, stadium VARCHAR) ### Question: What team plays at Palmerston Park? ### Answer: SELECT team FROM table_11207040_5 WHERE stadium = "Palmerston Park"
What is the lowest attandance recorded at Cappielow?
CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR)
SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = "Cappielow"
### Context: CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR) ### Question: What is the lowest attandance recorded at Cappielow? ### Answer: SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = "Cappielow"
What is the highest attendance at a game played by St. Johnstone?
CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR)
SELECT MAX(highest) FROM table_11207040_5 WHERE team = "St. Johnstone"
### Context: CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR) ### Question: What is the highest attendance at a game played by St. Johnstone? ### Answer: SELECT MAX(highest) FROM table_11207040_5 WHERE team = "St. Johnstone"
What is the highest attandence at a Hamilton Academical game?
CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR)
SELECT MIN(highest) FROM table_11207040_5 WHERE team = "Hamilton Academical"
### Context: CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR) ### Question: What is the highest attandence at a Hamilton Academical game? ### Answer: SELECT MIN(highest) FROM table_11207040_5 WHERE team = "Hamilton Academical"
who is the champion where semi-finalist #2 is na and location is morrisville, nc
CREATE TABLE table_11214772_1 (champion VARCHAR, semi_finalist__number2 VARCHAR, location VARCHAR)
SELECT champion FROM table_11214772_1 WHERE semi_finalist__number2 = "NA" AND location = "Morrisville, NC"
### Context: CREATE TABLE table_11214772_1 (champion VARCHAR, semi_finalist__number2 VARCHAR, location VARCHAR) ### Question: who is the champion where semi-finalist #2 is na and location is morrisville, nc ### Answer: SELECT champion FROM table_11214772_1 WHERE semi_finalist__number2 = "NA" AND location = "Morrisvill...
what's the score where year is 2007
CREATE TABLE table_11214772_1 (score VARCHAR, year VARCHAR)
SELECT score FROM table_11214772_1 WHERE year = "2007"
### Context: CREATE TABLE table_11214772_1 (score VARCHAR, year VARCHAR) ### Question: what's the score where year is 2007 ### Answer: SELECT score FROM table_11214772_1 WHERE year = "2007"
what is the total number of semi-finalist #2 where runner-up is east carolina
CREATE TABLE table_11214772_1 (semi_finalist__number2 VARCHAR, runner_up VARCHAR)
SELECT COUNT(semi_finalist__number2) FROM table_11214772_1 WHERE runner_up = "East Carolina"
### Context: CREATE TABLE table_11214772_1 (semi_finalist__number2 VARCHAR, runner_up VARCHAR) ### Question: what is the total number of semi-finalist #2 where runner-up is east carolina ### Answer: SELECT COUNT(semi_finalist__number2) FROM table_11214772_1 WHERE runner_up = "East Carolina"
who is the semi-finalist #1 where runner-up is elon university
CREATE TABLE table_11214772_1 (semi_finalist__number1 VARCHAR, runner_up VARCHAR)
SELECT semi_finalist__number1 FROM table_11214772_1 WHERE runner_up = "Elon University"
### Context: CREATE TABLE table_11214772_1 (semi_finalist__number1 VARCHAR, runner_up VARCHAR) ### Question: who is the semi-finalist #1 where runner-up is elon university ### Answer: SELECT semi_finalist__number1 FROM table_11214772_1 WHERE runner_up = "Elon University"
who is the runner-up where year is 2004 and champion is north carolina state
CREATE TABLE table_11214772_1 (runner_up VARCHAR, year VARCHAR, champion VARCHAR)
SELECT runner_up FROM table_11214772_1 WHERE year = "2004" AND champion = "North Carolina State"
### Context: CREATE TABLE table_11214772_1 (runner_up VARCHAR, year VARCHAR, champion VARCHAR) ### Question: who is the runner-up where year is 2004 and champion is north carolina state ### Answer: SELECT runner_up FROM table_11214772_1 WHERE year = "2004" AND champion = "North Carolina State"
who is the runner-up where location is ellenton, fl and year is 2004
CREATE TABLE table_11214772_1 (runner_up VARCHAR, location VARCHAR, year VARCHAR)
SELECT runner_up FROM table_11214772_1 WHERE location = "Ellenton, FL" AND year = "2004"
### Context: CREATE TABLE table_11214772_1 (runner_up VARCHAR, location VARCHAR, year VARCHAR) ### Question: who is the runner-up where location is ellenton, fl and year is 2004 ### Answer: SELECT runner_up FROM table_11214772_1 WHERE location = "Ellenton, FL" AND year = "2004"
what's the naturalisation by marriage with numer of jamaicans granted british citizenship being 3165
CREATE TABLE table_11214212_1 (naturalisation_by_marriage VARCHAR, numer_of_jamaicans_granted_british_citizenship VARCHAR)
SELECT naturalisation_by_marriage FROM table_11214212_1 WHERE numer_of_jamaicans_granted_british_citizenship = 3165
### Context: CREATE TABLE table_11214212_1 (naturalisation_by_marriage VARCHAR, numer_of_jamaicans_granted_british_citizenship VARCHAR) ### Question: what's the naturalisation by marriage with numer of jamaicans granted british citizenship being 3165 ### Answer: SELECT naturalisation_by_marriage FROM table_11214212_1 ...
how many numer of jamaicans granted british citizenship with naturalisation by marriage being 1060
CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_marriage VARCHAR)
SELECT COUNT(numer_of_jamaicans_granted_british_citizenship) FROM table_11214212_1 WHERE naturalisation_by_marriage = 1060
### Context: CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_marriage VARCHAR) ### Question: how many numer of jamaicans granted british citizenship with naturalisation by marriage being 1060 ### Answer: SELECT COUNT(numer_of_jamaicans_granted_british_citizensh...
what's the naturalisation by marriage with regbeingtration of a minor child being 114
CREATE TABLE table_11214212_1 (naturalisation_by_marriage VARCHAR, registration_of_a_minor_child VARCHAR)
SELECT naturalisation_by_marriage FROM table_11214212_1 WHERE registration_of_a_minor_child = 114
### Context: CREATE TABLE table_11214212_1 (naturalisation_by_marriage VARCHAR, registration_of_a_minor_child VARCHAR) ### Question: what's the naturalisation by marriage with regbeingtration of a minor child being 114 ### Answer: SELECT naturalisation_by_marriage FROM table_11214212_1 WHERE registration_of_a_minor_chi...
what's the numer of jamaicans granted british citizenship with naturalisation by residence being 927
CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_residence VARCHAR)
SELECT numer_of_jamaicans_granted_british_citizenship FROM table_11214212_1 WHERE naturalisation_by_residence = 927
### Context: CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_residence VARCHAR) ### Question: what's the numer of jamaicans granted british citizenship with naturalisation by residence being 927 ### Answer: SELECT numer_of_jamaicans_granted_british_citizenship F...