question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Where is the team that is managed by richard barnwell from?
CREATE TABLE table_27409644_1 (location VARCHAR, manager VARCHAR)
SELECT location FROM table_27409644_1 WHERE manager = "Richard Barnwell"
### Context: CREATE TABLE table_27409644_1 (location VARCHAR, manager VARCHAR) ### Question: Where is the team that is managed by richard barnwell from? ### Answer: SELECT location FROM table_27409644_1 WHERE manager = "Richard Barnwell"
What is the home location for team flora tallinn?
CREATE TABLE table_27409644_1 (ground VARCHAR, club VARCHAR)
SELECT ground FROM table_27409644_1 WHERE club = "Flora Tallinn"
### Context: CREATE TABLE table_27409644_1 (ground VARCHAR, club VARCHAR) ### Question: What is the home location for team flora tallinn? ### Answer: SELECT ground FROM table_27409644_1 WHERE club = "Flora Tallinn"
How many viewers watched the episode written by shana goldberg-meehan & greg malins?
CREATE TABLE table_27403436_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__million_ FROM table_27403436_1 WHERE written_by = "Shana Goldberg-Meehan & Greg Malins"
### Context: CREATE TABLE table_27403436_1 (us_viewers__million_ VARCHAR, written_by VARCHAR) ### Question: How many viewers watched the episode written by shana goldberg-meehan & greg malins? ### Answer: SELECT us_viewers__million_ FROM table_27403436_1 WHERE written_by = "Shana Goldberg-Meehan & Greg Malins"
which number lists the production code as 2j5809
CREATE TABLE table_27403436_1 (no VARCHAR, production_code VARCHAR)
SELECT no FROM table_27403436_1 WHERE production_code = "2J5809"
### Context: CREATE TABLE table_27403436_1 (no VARCHAR, production_code VARCHAR) ### Question: which number lists the production code as 2j5809 ### Answer: SELECT no FROM table_27403436_1 WHERE production_code = "2J5809"
What position was Bob Lilly?
CREATE TABLE table_274117_5 (position VARCHAR, player VARCHAR)
SELECT position FROM table_274117_5 WHERE player = "Bob Lilly"
### Context: CREATE TABLE table_274117_5 (position VARCHAR, player VARCHAR) ### Question: What position was Bob Lilly? ### Answer: SELECT position FROM table_274117_5 WHERE player = "Bob Lilly"
What are seasons by team for Pro Bowl appearances of the player who was an OL and had 11 appearances?
CREATE TABLE table_274117_5 (seasons_by_team VARCHAR, position VARCHAR, number VARCHAR)
SELECT seasons_by_team FROM table_274117_5 WHERE position = "OL" AND number = 11
### Context: CREATE TABLE table_274117_5 (seasons_by_team VARCHAR, position VARCHAR, number VARCHAR) ### Question: What are seasons by team for Pro Bowl appearances of the player who was an OL and had 11 appearances? ### Answer: SELECT seasons_by_team FROM table_274117_5 WHERE position = "OL" AND number = 11
What position was the player who was inducted into the Pro Football Hall of Fame in 1980?
CREATE TABLE table_274117_5 (position VARCHAR, year_of_induction_into_pro_football_hall_of_fame VARCHAR)
SELECT position FROM table_274117_5 WHERE year_of_induction_into_pro_football_hall_of_fame = "1980"
### Context: CREATE TABLE table_274117_5 (position VARCHAR, year_of_induction_into_pro_football_hall_of_fame VARCHAR) ### Question: What position was the player who was inducted into the Pro Football Hall of Fame in 1980? ### Answer: SELECT position FROM table_274117_5 WHERE year_of_induction_into_pro_football_hall_of_fame = "1980"
When was Will Shields inducted into the Pro Football Hall of Fame?
CREATE TABLE table_274117_5 (year_of_induction_into_pro_football_hall_of_fame VARCHAR, player VARCHAR)
SELECT year_of_induction_into_pro_football_hall_of_fame FROM table_274117_5 WHERE player = "Will Shields"
### Context: CREATE TABLE table_274117_5 (year_of_induction_into_pro_football_hall_of_fame VARCHAR, player VARCHAR) ### Question: When was Will Shields inducted into the Pro Football Hall of Fame? ### Answer: SELECT year_of_induction_into_pro_football_hall_of_fame FROM table_274117_5 WHERE player = "Will Shields"
What is the fewest amount of Pro Bowl appearances any of the players had?
CREATE TABLE table_274117_5 (number INTEGER)
SELECT MIN(number) FROM table_274117_5
### Context: CREATE TABLE table_274117_5 (number INTEGER) ### Question: What is the fewest amount of Pro Bowl appearances any of the players had? ### Answer: SELECT MIN(number) FROM table_274117_5
How many live births per year do people with a life expectancy of 65.1 have?
CREATE TABLE table_27434_2 (live_births_per_year VARCHAR, life_expectancy_total VARCHAR)
SELECT live_births_per_year FROM table_27434_2 WHERE life_expectancy_total = "65.1"
### Context: CREATE TABLE table_27434_2 (live_births_per_year VARCHAR, life_expectancy_total VARCHAR) ### Question: How many live births per year do people with a life expectancy of 65.1 have? ### Answer: SELECT live_births_per_year FROM table_27434_2 WHERE life_expectancy_total = "65.1"
What period was the life expectancy at 62.4?
CREATE TABLE table_27434_2 (period VARCHAR, life_expectancy_total VARCHAR)
SELECT period FROM table_27434_2 WHERE life_expectancy_total = "62.4"
### Context: CREATE TABLE table_27434_2 (period VARCHAR, life_expectancy_total VARCHAR) ### Question: What period was the life expectancy at 62.4? ### Answer: SELECT period FROM table_27434_2 WHERE life_expectancy_total = "62.4"
In what year is australia/oceania listed?
CREATE TABLE table_27435931_1 (year VARCHAR, continent VARCHAR)
SELECT COUNT(year) FROM table_27435931_1 WHERE continent = "Australia/Oceania"
### Context: CREATE TABLE table_27435931_1 (year VARCHAR, continent VARCHAR) ### Question: In what year is australia/oceania listed? ### Answer: SELECT COUNT(year) FROM table_27435931_1 WHERE continent = "Australia/Oceania"
what was the elevation in september 2009?
CREATE TABLE table_27435931_1 (elevation_m VARCHAR, year VARCHAR)
SELECT elevation_m FROM table_27435931_1 WHERE year = "September 2009"
### Context: CREATE TABLE table_27435931_1 (elevation_m VARCHAR, year VARCHAR) ### Question: what was the elevation in september 2009? ### Answer: SELECT elevation_m FROM table_27435931_1 WHERE year = "September 2009"
what is the continent in which the country russia is listed?
CREATE TABLE table_27435931_1 (continent VARCHAR, country VARCHAR)
SELECT continent FROM table_27435931_1 WHERE country = "Russia"
### Context: CREATE TABLE table_27435931_1 (continent VARCHAR, country VARCHAR) ### Question: what is the continent in which the country russia is listed? ### Answer: SELECT continent FROM table_27435931_1 WHERE country = "Russia"
what was the lowest elevation in april 2006?
CREATE TABLE table_27435931_1 (elevation_ft INTEGER, year VARCHAR)
SELECT MIN(elevation_ft) FROM table_27435931_1 WHERE year = "April 2006"
### Context: CREATE TABLE table_27435931_1 (elevation_ft INTEGER, year VARCHAR) ### Question: what was the lowest elevation in april 2006? ### Answer: SELECT MIN(elevation_ft) FROM table_27435931_1 WHERE year = "April 2006"
what is elevation of tanzania?
CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, country VARCHAR)
SELECT COUNT(elevation_ft) FROM table_27435931_1 WHERE country = "Tanzania"
### Context: CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, country VARCHAR) ### Question: what is elevation of tanzania? ### Answer: SELECT COUNT(elevation_ft) FROM table_27435931_1 WHERE country = "Tanzania"
what is the elevation of south america?
CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, continent VARCHAR)
SELECT elevation_ft FROM table_27435931_1 WHERE continent = "South America"
### Context: CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, continent VARCHAR) ### Question: what is the elevation of south america? ### Answer: SELECT elevation_ft FROM table_27435931_1 WHERE continent = "South America"
List the season above 241.0 that was handled by brad tanenbaum.
CREATE TABLE table_27437601_2 (no_in_season VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)
SELECT no_in_season FROM table_27437601_2 WHERE directed_by = "Brad Tanenbaum" AND no_in_series > 241.0
### Context: CREATE TABLE table_27437601_2 (no_in_season VARCHAR, directed_by VARCHAR, no_in_series VARCHAR) ### Question: List the season above 241.0 that was handled by brad tanenbaum. ### Answer: SELECT no_in_season FROM table_27437601_2 WHERE directed_by = "Brad Tanenbaum" AND no_in_series > 241.0
List the 1st air date for season 12.
CREATE TABLE table_27437601_2 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT original_air_date FROM table_27437601_2 WHERE no_in_season = 12
### Context: CREATE TABLE table_27437601_2 (original_air_date VARCHAR, no_in_season VARCHAR) ### Question: List the 1st air date for season 12. ### Answer: SELECT original_air_date FROM table_27437601_2 WHERE no_in_season = 12
List the series number for season 12.
CREATE TABLE table_27437601_2 (no_in_series VARCHAR, no_in_season VARCHAR)
SELECT COUNT(no_in_series) FROM table_27437601_2 WHERE no_in_season = 12
### Context: CREATE TABLE table_27437601_2 (no_in_series VARCHAR, no_in_season VARCHAR) ### Question: List the series number for season 12. ### Answer: SELECT COUNT(no_in_series) FROM table_27437601_2 WHERE no_in_season = 12
How many years was the country Belgium?
CREATE TABLE table_27441210_13 (year VARCHAR, country VARCHAR)
SELECT COUNT(year) FROM table_27441210_13 WHERE country = "Belgium"
### Context: CREATE TABLE table_27441210_13 (year VARCHAR, country VARCHAR) ### Question: How many years was the country Belgium? ### Answer: SELECT COUNT(year) FROM table_27441210_13 WHERE country = "Belgium"
What number-one single is performed by artist Pep's?
CREATE TABLE table_27441210_17 (number_one_single_s_ VARCHAR, artist VARCHAR)
SELECT number_one_single_s_ FROM table_27441210_17 WHERE artist = "Pep's"
### Context: CREATE TABLE table_27441210_17 (number_one_single_s_ VARCHAR, artist VARCHAR) ### Question: What number-one single is performed by artist Pep's? ### Answer: SELECT number_one_single_s_ FROM table_27441210_17 WHERE artist = "Pep's"
Where were the auditions held in the episode that aired on january 27, 2011?
CREATE TABLE table_27455867_1 (audition_city VARCHAR, episode_air_date VARCHAR)
SELECT audition_city FROM table_27455867_1 WHERE episode_air_date = "January 27, 2011"
### Context: CREATE TABLE table_27455867_1 (audition_city VARCHAR, episode_air_date VARCHAR) ### Question: Where were the auditions held in the episode that aired on january 27, 2011? ### Answer: SELECT audition_city FROM table_27455867_1 WHERE episode_air_date = "January 27, 2011"
In how many different audition cities were the Bridgestone arena auditions held?
CREATE TABLE table_27455867_1 (audition_city VARCHAR, audition_venue VARCHAR)
SELECT COUNT(audition_city) FROM table_27455867_1 WHERE audition_venue = "Bridgestone Arena"
### Context: CREATE TABLE table_27455867_1 (audition_city VARCHAR, audition_venue VARCHAR) ### Question: In how many different audition cities were the Bridgestone arena auditions held? ### Answer: SELECT COUNT(audition_city) FROM table_27455867_1 WHERE audition_venue = "Bridgestone Arena"
When was the callback audition date for the audition city from the episode aired on February 2, 2011?
CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR)
SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February 2, 2011"
### Context: CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR) ### Question: When was the callback audition date for the audition city from the episode aired on February 2, 2011? ### Answer: SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February 2, 2011"
When were the callback auditions at Hilton Riverside Hotel held?
CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, callback_venue VARCHAR)
SELECT callback_audition_date FROM table_27455867_1 WHERE callback_venue = "Hilton Riverside Hotel"
### Context: CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, callback_venue VARCHAR) ### Question: When were the callback auditions at Hilton Riverside Hotel held? ### Answer: SELECT callback_audition_date FROM table_27455867_1 WHERE callback_venue = "Hilton Riverside Hotel"
What was the callback venue for the audition city in the episode aired on January 20, 2011?
CREATE TABLE table_27455867_1 (callback_venue VARCHAR, episode_air_date VARCHAR)
SELECT callback_venue FROM table_27455867_1 WHERE episode_air_date = "January 20, 2011"
### Context: CREATE TABLE table_27455867_1 (callback_venue VARCHAR, episode_air_date VARCHAR) ### Question: What was the callback venue for the audition city in the episode aired on January 20, 2011? ### Answer: SELECT callback_venue FROM table_27455867_1 WHERE episode_air_date = "January 20, 2011"
When were the callback auditions for the audition city in the episode aired on February 9, 2011?
CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR)
SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February 9, 2011"
### Context: CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR) ### Question: When were the callback auditions for the audition city in the episode aired on February 9, 2011? ### Answer: SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February 9, 2011"
How many episodes did Eve Weston write?
CREATE TABLE table_27462177_1 (no_in_series VARCHAR, written_by VARCHAR)
SELECT COUNT(no_in_series) FROM table_27462177_1 WHERE written_by = "Eve Weston"
### Context: CREATE TABLE table_27462177_1 (no_in_series VARCHAR, written_by VARCHAR) ### Question: How many episodes did Eve Weston write? ### Answer: SELECT COUNT(no_in_series) FROM table_27462177_1 WHERE written_by = "Eve Weston"
How many millions of US viewers watched the episode written by Jack Sanderson?
CREATE TABLE table_27462177_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__millions_ FROM table_27462177_1 WHERE written_by = "Jack Sanderson"
### Context: CREATE TABLE table_27462177_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR) ### Question: How many millions of US viewers watched the episode written by Jack Sanderson? ### Answer: SELECT us_viewers__millions_ FROM table_27462177_1 WHERE written_by = "Jack Sanderson"
Name who wrote the production code 322
CREATE TABLE table_27462209_1 (written_by VARCHAR, prod_code VARCHAR)
SELECT written_by FROM table_27462209_1 WHERE prod_code = 322
### Context: CREATE TABLE table_27462209_1 (written_by VARCHAR, prod_code VARCHAR) ### Question: Name who wrote the production code 322 ### Answer: SELECT written_by FROM table_27462209_1 WHERE prod_code = 322
What is the television network with the television channel of Astro Pelangi & Astro Bintang?
CREATE TABLE table_27469019_2 (television_network VARCHAR, television_channel VARCHAR)
SELECT television_network FROM table_27469019_2 WHERE television_channel = "Astro Pelangi & Astro Bintang"
### Context: CREATE TABLE table_27469019_2 (television_network VARCHAR, television_channel VARCHAR) ### Question: What is the television network with the television channel of Astro Pelangi & Astro Bintang? ### Answer: SELECT television_network FROM table_27469019_2 WHERE television_channel = "Astro Pelangi & Astro Bintang"
What was the status of the series that was run by tv channel Mediacorp tv12 Suria?
CREATE TABLE table_27469019_2 (status VARCHAR, television_channel VARCHAR)
SELECT status FROM table_27469019_2 WHERE television_channel = "MediaCorp TV12 Suria"
### Context: CREATE TABLE table_27469019_2 (status VARCHAR, television_channel VARCHAR) ### Question: What was the status of the series that was run by tv channel Mediacorp tv12 Suria? ### Answer: SELECT status FROM table_27469019_2 WHERE television_channel = "MediaCorp TV12 Suria"
What was the world rank by QS in 2013 for the University of Otago?
CREATE TABLE table_27484208_1 (world_rank_by_qs_ VARCHAR, _2013 VARCHAR, members VARCHAR)
SELECT world_rank_by_qs_, _2013 FROM table_27484208_1 WHERE members = "University of Otago"
### Context: CREATE TABLE table_27484208_1 (world_rank_by_qs_ VARCHAR, _2013 VARCHAR, members VARCHAR) ### Question: What was the world rank by QS in 2013 for the University of Otago? ### Answer: SELECT world_rank_by_qs_, _2013 FROM table_27484208_1 WHERE members = "University of Otago"
What was the world rank by ARWU in 2013 of the University of Tübingen?
CREATE TABLE table_27484208_1 (world_rank_by_arwu_ VARCHAR, _2013 VARCHAR, members VARCHAR)
SELECT world_rank_by_arwu_, _2013 FROM table_27484208_1 WHERE members = "University of Tübingen"
### Context: CREATE TABLE table_27484208_1 (world_rank_by_arwu_ VARCHAR, _2013 VARCHAR, members VARCHAR) ### Question: What was the world rank by ARWU in 2013 of the University of Tübingen? ### Answer: SELECT world_rank_by_arwu_, _2013 FROM table_27484208_1 WHERE members = "University of Tübingen"
How many episodes have 18.73 million viewers?
CREATE TABLE table_27481781_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR)
SELECT COUNT(no_in_series) FROM table_27481781_2 WHERE viewers__millions_ = "18.73"
### Context: CREATE TABLE table_27481781_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR) ### Question: How many episodes have 18.73 million viewers? ### Answer: SELECT COUNT(no_in_series) FROM table_27481781_2 WHERE viewers__millions_ = "18.73"
What was the result of the election for georgia's 3rd district?
CREATE TABLE table_27487712_1 (result VARCHAR, district VARCHAR)
SELECT result FROM table_27487712_1 WHERE district = "Georgia's 3rd"
### Context: CREATE TABLE table_27487712_1 (result VARCHAR, district VARCHAR) ### Question: What was the result of the election for georgia's 3rd district? ### Answer: SELECT result FROM table_27487712_1 WHERE district = "Georgia's 3rd"
Who was the incumbent from georgia's 8th district?
CREATE TABLE table_27487712_1 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_27487712_1 WHERE district = "Georgia's 8th"
### Context: CREATE TABLE table_27487712_1 (incumbent VARCHAR, district VARCHAR) ### Question: Who was the incumbent from georgia's 8th district? ### Answer: SELECT incumbent FROM table_27487712_1 WHERE district = "Georgia's 8th"
What was the result of the election with incumbent bob barr?
CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_27487712_1 WHERE incumbent = "Bob Barr"
### Context: CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result of the election with incumbent bob barr? ### Answer: SELECT result FROM table_27487712_1 WHERE incumbent = "Bob Barr"
What was the result of the election with incumbent john lewis?
CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_27487712_1 WHERE incumbent = "John Lewis"
### Context: CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result of the election with incumbent john lewis? ### Answer: SELECT result FROM table_27487712_1 WHERE incumbent = "John Lewis"
Who was the incumbent for the election in 1978?
CREATE TABLE table_27487712_1 (incumbent VARCHAR, elected VARCHAR)
SELECT incumbent FROM table_27487712_1 WHERE elected = 1978
### Context: CREATE TABLE table_27487712_1 (incumbent VARCHAR, elected VARCHAR) ### Question: Who was the incumbent for the election in 1978? ### Answer: SELECT incumbent FROM table_27487712_1 WHERE elected = 1978
Who are the judges in the Netherlands for the season airing 28 November 2011 – 24 December 2011?
CREATE TABLE table_27487310_5 (judges VARCHAR, country VARCHAR, air_dates VARCHAR)
SELECT judges FROM table_27487310_5 WHERE country = "Netherlands" AND air_dates = "28 November 2011 – 24 December 2011"
### Context: CREATE TABLE table_27487310_5 (judges VARCHAR, country VARCHAR, air_dates VARCHAR) ### Question: Who are the judges in the Netherlands for the season airing 28 November 2011 – 24 December 2011? ### Answer: SELECT judges FROM table_27487310_5 WHERE country = "Netherlands" AND air_dates = "28 November 2011 – 24 December 2011"
What is the version aired on SBS 6 called?
CREATE TABLE table_27487310_5 (name VARCHAR, network VARCHAR)
SELECT name FROM table_27487310_5 WHERE network = "SBS 6"
### Context: CREATE TABLE table_27487310_5 (name VARCHAR, network VARCHAR) ### Question: What is the version aired on SBS 6 called? ### Answer: SELECT name FROM table_27487310_5 WHERE network = "SBS 6"
What are the air dates of the show in ABS-CBN?
CREATE TABLE table_27487310_5 (air_dates VARCHAR, network VARCHAR)
SELECT air_dates FROM table_27487310_5 WHERE network = "ABS-CBN"
### Context: CREATE TABLE table_27487310_5 (air_dates VARCHAR, network VARCHAR) ### Question: What are the air dates of the show in ABS-CBN? ### Answer: SELECT air_dates FROM table_27487310_5 WHERE network = "ABS-CBN"
Who is the host on the series aired on 18 January 2012?
CREATE TABLE table_27487310_5 (host_s_ VARCHAR, air_dates VARCHAR)
SELECT host_s_ FROM table_27487310_5 WHERE air_dates = "18 January 2012"
### Context: CREATE TABLE table_27487310_5 (host_s_ VARCHAR, air_dates VARCHAR) ### Question: Who is the host on the series aired on 18 January 2012? ### Answer: SELECT host_s_ FROM table_27487310_5 WHERE air_dates = "18 January 2012"
What is the name of the series with the unknown host?
CREATE TABLE table_27487310_5 (name VARCHAR, host_s_ VARCHAR)
SELECT name FROM table_27487310_5 WHERE host_s_ = "unknown"
### Context: CREATE TABLE table_27487310_5 (name VARCHAR, host_s_ VARCHAR) ### Question: What is the name of the series with the unknown host? ### Answer: SELECT name FROM table_27487310_5 WHERE host_s_ = "unknown"
What is every value for points per game if passing yards per game is 179.6?
CREATE TABLE table_27487336_1 (points_per_game VARCHAR, passing_yards_per_game VARCHAR)
SELECT points_per_game FROM table_27487336_1 WHERE passing_yards_per_game = "179.6"
### Context: CREATE TABLE table_27487336_1 (points_per_game VARCHAR, passing_yards_per_game VARCHAR) ### Question: What is every value for points per game if passing yards per game is 179.6? ### Answer: SELECT points_per_game FROM table_27487336_1 WHERE passing_yards_per_game = "179.6"
What is every value for sacks if interceptions is 19?
CREATE TABLE table_27487336_1 (sacks VARCHAR, interceptions VARCHAR)
SELECT sacks FROM table_27487336_1 WHERE interceptions = "19"
### Context: CREATE TABLE table_27487336_1 (sacks VARCHAR, interceptions VARCHAR) ### Question: What is every value for sacks if interceptions is 19? ### Answer: SELECT sacks FROM table_27487336_1 WHERE interceptions = "19"
What is every value for passing yards per game if rushing yards per game is 113.6?
CREATE TABLE table_27487336_1 (passing_yards_per_game VARCHAR, rushing_yards_per_game VARCHAR)
SELECT passing_yards_per_game FROM table_27487336_1 WHERE rushing_yards_per_game = "113.6"
### Context: CREATE TABLE table_27487336_1 (passing_yards_per_game VARCHAR, rushing_yards_per_game VARCHAR) ### Question: What is every value for passing yards per game if rushing yards per game is 113.6? ### Answer: SELECT passing_yards_per_game FROM table_27487336_1 WHERE rushing_yards_per_game = "113.6"
What is every value for rushing yards per game if sacks if 25?
CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, sacks VARCHAR)
SELECT rushing_yards_per_game FROM table_27487336_1 WHERE sacks = "25"
### Context: CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, sacks VARCHAR) ### Question: What is every value for rushing yards per game if sacks if 25? ### Answer: SELECT rushing_yards_per_game FROM table_27487336_1 WHERE sacks = "25"
What is every value for rushing yards per game if the season is 1984?
CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, season VARCHAR)
SELECT rushing_yards_per_game FROM table_27487336_1 WHERE season = "1984"
### Context: CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, season VARCHAR) ### Question: What is every value for rushing yards per game if the season is 1984? ### Answer: SELECT rushing_yards_per_game FROM table_27487336_1 WHERE season = "1984"
How many seasons have a sacks of 39?
CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR)
SELECT COUNT(season) FROM table_27487336_1 WHERE sacks = "39"
### Context: CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR) ### Question: How many seasons have a sacks of 39? ### Answer: SELECT COUNT(season) FROM table_27487336_1 WHERE sacks = "39"
Name the average for rank of 3
CREATE TABLE table_27496841_3 (average VARCHAR, rank_by_average VARCHAR)
SELECT average FROM table_27496841_3 WHERE rank_by_average = 3
### Context: CREATE TABLE table_27496841_3 (average VARCHAR, rank_by_average VARCHAR) ### Question: Name the average for rank of 3 ### Answer: SELECT average FROM table_27496841_3 WHERE rank_by_average = 3
Name the total points for 2
CREATE TABLE table_27496841_3 (total_points VARCHAR, place VARCHAR)
SELECT total_points FROM table_27496841_3 WHERE place = 2
### Context: CREATE TABLE table_27496841_3 (total_points VARCHAR, place VARCHAR) ### Question: Name the total points for 2 ### Answer: SELECT total_points FROM table_27496841_3 WHERE place = 2
What is the decision when the opponents are atlanta thrashers?
CREATE TABLE table_27501030_7 (decision VARCHAR, opponent VARCHAR)
SELECT decision FROM table_27501030_7 WHERE opponent = "Atlanta Thrashers"
### Context: CREATE TABLE table_27501030_7 (decision VARCHAR, opponent VARCHAR) ### Question: What is the decision when the opponents are atlanta thrashers? ### Answer: SELECT decision FROM table_27501030_7 WHERE opponent = "Atlanta Thrashers"
How many game entries are there when the points are 57?
CREATE TABLE table_27501030_7 (game VARCHAR, points VARCHAR)
SELECT COUNT(game) FROM table_27501030_7 WHERE points = 57
### Context: CREATE TABLE table_27501030_7 (game VARCHAR, points VARCHAR) ### Question: How many game entries are there when the points are 57? ### Answer: SELECT COUNT(game) FROM table_27501030_7 WHERE points = 57
What is the smallest año?
CREATE TABLE table_27501971_2 (año INTEGER)
SELECT MIN(año) FROM table_27501971_2
### Context: CREATE TABLE table_27501971_2 (año INTEGER) ### Question: What is the smallest año? ### Answer: SELECT MIN(año) FROM table_27501971_2
How many premio are there when "Artist of the Year" was the categoria?
CREATE TABLE table_27501971_2 (premio VARCHAR, categoría VARCHAR)
SELECT COUNT(premio) FROM table_27501971_2 WHERE categoría = "Artist of the Year"
### Context: CREATE TABLE table_27501971_2 (premio VARCHAR, categoría VARCHAR) ### Question: How many premio are there when "Artist of the Year" was the categoria? ### Answer: SELECT COUNT(premio) FROM table_27501971_2 WHERE categoría = "Artist of the Year"
What was the resultado when E.E.U.U was the country?
CREATE TABLE table_27501971_2 (resultado VARCHAR, country VARCHAR)
SELECT resultado FROM table_27501971_2 WHERE country = "E.E.U.U"
### Context: CREATE TABLE table_27501971_2 (resultado VARCHAR, country VARCHAR) ### Question: What was the resultado when E.E.U.U was the country? ### Answer: SELECT resultado FROM table_27501971_2 WHERE country = "E.E.U.U"
What was the categoria when E.E.U.U was the country?
CREATE TABLE table_27501971_2 (categoría VARCHAR, country VARCHAR)
SELECT categoría FROM table_27501971_2 WHERE country = "E.E.U.U"
### Context: CREATE TABLE table_27501971_2 (categoría VARCHAR, country VARCHAR) ### Question: What was the categoria when E.E.U.U was the country? ### Answer: SELECT categoría FROM table_27501971_2 WHERE country = "E.E.U.U"
When the año was 2012, who was the county?
CREATE TABLE table_27501971_2 (country VARCHAR, año VARCHAR)
SELECT country FROM table_27501971_2 WHERE año = 2012
### Context: CREATE TABLE table_27501971_2 (country VARCHAR, año VARCHAR) ### Question: When the año was 2012, who was the county? ### Answer: SELECT country FROM table_27501971_2 WHERE año = 2012
Name who wrote the episode by lawrence trilling
CREATE TABLE table_27504682_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_27504682_1 WHERE directed_by = "Lawrence Trilling"
### Context: CREATE TABLE table_27504682_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: Name who wrote the episode by lawrence trilling ### Answer: SELECT written_by FROM table_27504682_1 WHERE directed_by = "Lawrence Trilling"
Name the air date for alex taub
CREATE TABLE table_27504682_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_27504682_1 WHERE written_by = "Alex Taub"
### Context: CREATE TABLE table_27504682_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: Name the air date for alex taub ### Answer: SELECT original_air_date FROM table_27504682_1 WHERE written_by = "Alex Taub"
How many games were numbered 69?
CREATE TABLE table_27501030_8 (opponent VARCHAR, game VARCHAR)
SELECT COUNT(opponent) FROM table_27501030_8 WHERE game = 69
### Context: CREATE TABLE table_27501030_8 (opponent VARCHAR, game VARCHAR) ### Question: How many games were numbered 69? ### Answer: SELECT COUNT(opponent) FROM table_27501030_8 WHERE game = 69
How many times did they play the pittsburgh penguins?
CREATE TABLE table_27501030_8 (march VARCHAR, opponent VARCHAR)
SELECT COUNT(march) FROM table_27501030_8 WHERE opponent = "Pittsburgh Penguins"
### Context: CREATE TABLE table_27501030_8 (march VARCHAR, opponent VARCHAR) ### Question: How many times did they play the pittsburgh penguins? ### Answer: SELECT COUNT(march) FROM table_27501030_8 WHERE opponent = "Pittsburgh Penguins"
What is the earliest quarterfinal week when the genre is dancing and the act is 32?
CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, genre VARCHAR, age_s_ VARCHAR)
SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE genre = "Dancing" AND age_s_ = "32"
### Context: CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, genre VARCHAR, age_s_ VARCHAR) ### Question: What is the earliest quarterfinal week when the genre is dancing and the act is 32? ### Answer: SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE genre = "Dancing" AND age_s_ = "32"
What is the quarterfinal week for Austin Anderson?
CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, name_name_of_act VARCHAR)
SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE name_name_of_act = "Austin Anderson"
### Context: CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, name_name_of_act VARCHAR) ### Question: What is the quarterfinal week for Austin Anderson? ### Answer: SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE name_name_of_act = "Austin Anderson"
What is the genre for the group with ages 29-30?
CREATE TABLE table_27529608_21 (genre VARCHAR, age_s_ VARCHAR)
SELECT genre FROM table_27529608_21 WHERE age_s_ = "29-30"
### Context: CREATE TABLE table_27529608_21 (genre VARCHAR, age_s_ VARCHAR) ### Question: What is the genre for the group with ages 29-30? ### Answer: SELECT genre FROM table_27529608_21 WHERE age_s_ = "29-30"
What is the age of the act who is a rapper?
CREATE TABLE table_27529608_21 (age_s_ VARCHAR, act VARCHAR)
SELECT age_s_ FROM table_27529608_21 WHERE act = "Rapper"
### Context: CREATE TABLE table_27529608_21 (age_s_ VARCHAR, act VARCHAR) ### Question: What is the age of the act who is a rapper? ### Answer: SELECT age_s_ FROM table_27529608_21 WHERE act = "Rapper"
What is the hometown of Plutonic?
CREATE TABLE table_27529608_21 (hometown VARCHAR, name_name_of_act VARCHAR)
SELECT hometown FROM table_27529608_21 WHERE name_name_of_act = "PLUtonic"
### Context: CREATE TABLE table_27529608_21 (hometown VARCHAR, name_name_of_act VARCHAR) ### Question: What is the hometown of Plutonic? ### Answer: SELECT hometown FROM table_27529608_21 WHERE name_name_of_act = "PLUtonic"
How many semi-final weeks are there for acts from Pittsburgh, Pennsylvania?
CREATE TABLE table_27529608_21 (semi_final__week_ VARCHAR, hometown VARCHAR)
SELECT COUNT(semi_final__week_) FROM table_27529608_21 WHERE hometown = "Pittsburgh, Pennsylvania"
### Context: CREATE TABLE table_27529608_21 (semi_final__week_ VARCHAR, hometown VARCHAR) ### Question: How many semi-final weeks are there for acts from Pittsburgh, Pennsylvania? ### Answer: SELECT COUNT(semi_final__week_) FROM table_27529608_21 WHERE hometown = "Pittsburgh, Pennsylvania"
What was the margin of victory for the event in lake forest, illinois?
CREATE TABLE table_275162_1 (margin_of_victory VARCHAR, location VARCHAR)
SELECT margin_of_victory FROM table_275162_1 WHERE location = "Lake Forest, Illinois"
### Context: CREATE TABLE table_275162_1 (margin_of_victory VARCHAR, location VARCHAR) ### Question: What was the margin of victory for the event in lake forest, illinois? ### Answer: SELECT margin_of_victory FROM table_275162_1 WHERE location = "Lake Forest, Illinois"
What was zach johnson's score to par?
CREATE TABLE table_275162_1 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_275162_1 WHERE player = "Zach Johnson"
### Context: CREATE TABLE table_275162_1 (to_par VARCHAR, player VARCHAR) ### Question: What was zach johnson's score to par? ### Answer: SELECT to_par FROM table_275162_1 WHERE player = "Zach Johnson"
What was the winning score at bellerive country club?
CREATE TABLE table_275162_1 (score VARCHAR, course VARCHAR)
SELECT score FROM table_275162_1 WHERE course = "Bellerive country Club"
### Context: CREATE TABLE table_275162_1 (score VARCHAR, course VARCHAR) ### Question: What was the winning score at bellerive country club? ### Answer: SELECT score FROM table_275162_1 WHERE course = "Bellerive country Club"
How many courses are located in carmel, indiana?
CREATE TABLE table_275162_1 (course VARCHAR, location VARCHAR)
SELECT COUNT(course) FROM table_275162_1 WHERE location = "Carmel, Indiana"
### Context: CREATE TABLE table_275162_1 (course VARCHAR, location VARCHAR) ### Question: How many courses are located in carmel, indiana? ### Answer: SELECT COUNT(course) FROM table_275162_1 WHERE location = "Carmel, Indiana"
How many status figures does James Finch have?
CREATE TABLE table_27514362_7 (status VARCHAR, entrant VARCHAR)
SELECT COUNT(status) FROM table_27514362_7 WHERE entrant = "James Finch"
### Context: CREATE TABLE table_27514362_7 (status VARCHAR, entrant VARCHAR) ### Question: How many status figures does James Finch have? ### Answer: SELECT COUNT(status) FROM table_27514362_7 WHERE entrant = "James Finch"
What is the car make for Sterling Marlin?
CREATE TABLE table_27514362_7 (car_make VARCHAR, driver VARCHAR)
SELECT car_make FROM table_27514362_7 WHERE driver = "Sterling Marlin"
### Context: CREATE TABLE table_27514362_7 (car_make VARCHAR, driver VARCHAR) ### Question: What is the car make for Sterling Marlin? ### Answer: SELECT car_make FROM table_27514362_7 WHERE driver = "Sterling Marlin"
What is the finish position for cars by Pontiac driven by Bobby Hamilton?
CREATE TABLE table_27514362_7 (pos VARCHAR, car_make VARCHAR, driver VARCHAR)
SELECT pos FROM table_27514362_7 WHERE car_make = "Pontiac" AND driver = "Bobby Hamilton"
### Context: CREATE TABLE table_27514362_7 (pos VARCHAR, car_make VARCHAR, driver VARCHAR) ### Question: What is the finish position for cars by Pontiac driven by Bobby Hamilton? ### Answer: SELECT pos FROM table_27514362_7 WHERE car_make = "Pontiac" AND driver = "Bobby Hamilton"
who are the participants that wear clothing in 33-23-36
CREATE TABLE table_27515452_3 (contestant VARCHAR, sizes VARCHAR)
SELECT contestant FROM table_27515452_3 WHERE sizes = "33-23-36"
### Context: CREATE TABLE table_27515452_3 (contestant VARCHAR, sizes VARCHAR) ### Question: who are the participants that wear clothing in 33-23-36 ### Answer: SELECT contestant FROM table_27515452_3 WHERE sizes = "33-23-36"
what is the oldest and lives in veraguas
CREATE TABLE table_27515452_3 (age INTEGER, hometown VARCHAR)
SELECT MAX(age) FROM table_27515452_3 WHERE hometown = "Veraguas"
### Context: CREATE TABLE table_27515452_3 (age INTEGER, hometown VARCHAR) ### Question: what is the oldest and lives in veraguas ### Answer: SELECT MAX(age) FROM table_27515452_3 WHERE hometown = "Veraguas"
where is the participant marelissa him from
CREATE TABLE table_27515452_3 (hometown VARCHAR, contestant VARCHAR)
SELECT hometown FROM table_27515452_3 WHERE contestant = "Marelissa Him"
### Context: CREATE TABLE table_27515452_3 (hometown VARCHAR, contestant VARCHAR) ### Question: where is the participant marelissa him from ### Answer: SELECT hometown FROM table_27515452_3 WHERE contestant = "Marelissa Him"
which company has a person that can wear clothing in 33-23-36
CREATE TABLE table_27515452_3 (agency VARCHAR, sizes VARCHAR)
SELECT agency FROM table_27515452_3 WHERE sizes = "33-23-36"
### Context: CREATE TABLE table_27515452_3 (agency VARCHAR, sizes VARCHAR) ### Question: which company has a person that can wear clothing in 33-23-36 ### Answer: SELECT agency FROM table_27515452_3 WHERE sizes = "33-23-36"
how tall is someone who is able to wear 33-24-35
CREATE TABLE table_27515452_3 (height VARCHAR, sizes VARCHAR)
SELECT height FROM table_27515452_3 WHERE sizes = "33-24-35"
### Context: CREATE TABLE table_27515452_3 (height VARCHAR, sizes VARCHAR) ### Question: how tall is someone who is able to wear 33-24-35 ### Answer: SELECT height FROM table_27515452_3 WHERE sizes = "33-24-35"
If the best winning average is 7.3-71, what are the total points?
CREATE TABLE table_27533947_1 (total_points INTEGER, best_winning_average VARCHAR)
SELECT MIN(total_points) FROM table_27533947_1 WHERE best_winning_average = "7.3-71"
### Context: CREATE TABLE table_27533947_1 (total_points INTEGER, best_winning_average VARCHAR) ### Question: If the best winning average is 7.3-71, what are the total points? ### Answer: SELECT MIN(total_points) FROM table_27533947_1 WHERE best_winning_average = "7.3-71"
if the best run was 138, what is the amount of games lost?
CREATE TABLE table_27533947_1 (games_lost VARCHAR, best_run VARCHAR)
SELECT games_lost FROM table_27533947_1 WHERE best_run = 138
### Context: CREATE TABLE table_27533947_1 (games_lost VARCHAR, best_run VARCHAR) ### Question: if the best run was 138, what is the amount of games lost? ### Answer: SELECT games_lost FROM table_27533947_1 WHERE best_run = 138
If the games won are 5, what is the best winning average?
CREATE TABLE table_27533947_1 (best_winning_average VARCHAR, games_won VARCHAR)
SELECT best_winning_average FROM table_27533947_1 WHERE games_won = 5
### Context: CREATE TABLE table_27533947_1 (best_winning_average VARCHAR, games_won VARCHAR) ### Question: If the games won are 5, what is the best winning average? ### Answer: SELECT best_winning_average FROM table_27533947_1 WHERE games_won = 5
If the player is William Jakes, what are the total points?
CREATE TABLE table_27533947_1 (total_points INTEGER, players VARCHAR)
SELECT MIN(total_points) FROM table_27533947_1 WHERE players = "William Jakes"
### Context: CREATE TABLE table_27533947_1 (total_points INTEGER, players VARCHAR) ### Question: If the player is William Jakes, what are the total points? ### Answer: SELECT MIN(total_points) FROM table_27533947_1 WHERE players = "William Jakes"
If the grand average is 12.76-202, who is the player?
CREATE TABLE table_27533947_1 (players VARCHAR, grand_average VARCHAR)
SELECT players FROM table_27533947_1 WHERE grand_average = "12.76-202"
### Context: CREATE TABLE table_27533947_1 (players VARCHAR, grand_average VARCHAR) ### Question: If the grand average is 12.76-202, who is the player? ### Answer: SELECT players FROM table_27533947_1 WHERE grand_average = "12.76-202"
How many players had a best winning average of 20?
CREATE TABLE table_27533947_1 (games_won VARCHAR, best_winning_average VARCHAR)
SELECT COUNT(games_won) FROM table_27533947_1 WHERE best_winning_average = "20"
### Context: CREATE TABLE table_27533947_1 (games_won VARCHAR, best_winning_average VARCHAR) ### Question: How many players had a best winning average of 20? ### Answer: SELECT COUNT(games_won) FROM table_27533947_1 WHERE best_winning_average = "20"
What was the October 22 record?
CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR)
SELECT record FROM table_27537518_4 WHERE date = "October 22"
### Context: CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR) ### Question: What was the October 22 record? ### Answer: SELECT record FROM table_27537518_4 WHERE date = "October 22"
What was the 6-4 score's maximum attendance?
CREATE TABLE table_27537518_4 (attendance INTEGER, score VARCHAR)
SELECT MAX(attendance) FROM table_27537518_4 WHERE score = "6-4"
### Context: CREATE TABLE table_27537518_4 (attendance INTEGER, score VARCHAR) ### Question: What was the 6-4 score's maximum attendance? ### Answer: SELECT MAX(attendance) FROM table_27537518_4 WHERE score = "6-4"
What was the score for game #1?
CREATE TABLE table_27537518_4 (score VARCHAR, game VARCHAR)
SELECT score FROM table_27537518_4 WHERE game = 1
### Context: CREATE TABLE table_27537518_4 (score VARCHAR, game VARCHAR) ### Question: What was the score for game #1? ### Answer: SELECT score FROM table_27537518_4 WHERE game = 1
What was the record for the October 16 game?
CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR)
SELECT record FROM table_27537518_4 WHERE date = "October 16"
### Context: CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR) ### Question: What was the record for the October 16 game? ### Answer: SELECT record FROM table_27537518_4 WHERE date = "October 16"
What was the record in the game whose first star was J. Oduya?
CREATE TABLE table_27537518_6 (record VARCHAR, first_star VARCHAR)
SELECT record FROM table_27537518_6 WHERE first_star = "J. Oduya"
### Context: CREATE TABLE table_27537518_6 (record VARCHAR, first_star VARCHAR) ### Question: What was the record in the game whose first star was J. Oduya? ### Answer: SELECT record FROM table_27537518_6 WHERE first_star = "J. Oduya"
What was the score of the game whose first star was O. Pavelec?
CREATE TABLE table_27537518_6 (score VARCHAR, first_star VARCHAR)
SELECT score FROM table_27537518_6 WHERE first_star = "O. Pavelec"
### Context: CREATE TABLE table_27537518_6 (score VARCHAR, first_star VARCHAR) ### Question: What was the score of the game whose first star was O. Pavelec? ### Answer: SELECT score FROM table_27537518_6 WHERE first_star = "O. Pavelec"
Who made the decision in the game played on December 26?
CREATE TABLE table_27537518_6 (decision VARCHAR, date VARCHAR)
SELECT decision FROM table_27537518_6 WHERE date = "December 26"
### Context: CREATE TABLE table_27537518_6 (decision VARCHAR, date VARCHAR) ### Question: Who made the decision in the game played on December 26? ### Answer: SELECT decision FROM table_27537518_6 WHERE date = "December 26"
Where was the game seen by 10056 people played?
CREATE TABLE table_27537518_6 (location VARCHAR, attendance VARCHAR)
SELECT location FROM table_27537518_6 WHERE attendance = 10056
### Context: CREATE TABLE table_27537518_6 (location VARCHAR, attendance VARCHAR) ### Question: Where was the game seen by 10056 people played? ### Answer: SELECT location FROM table_27537518_6 WHERE attendance = 10056
Who was the first star of the game with record of 17-11-5?
CREATE TABLE table_27537518_6 (first_star VARCHAR, record VARCHAR)
SELECT first_star FROM table_27537518_6 WHERE record = "17-11-5"
### Context: CREATE TABLE table_27537518_6 (first_star VARCHAR, record VARCHAR) ### Question: Who was the first star of the game with record of 17-11-5? ### Answer: SELECT first_star FROM table_27537518_6 WHERE record = "17-11-5"
Who made the decisions in the game whose first star was V. Lecavalier?
CREATE TABLE table_27537518_6 (decision VARCHAR, first_star VARCHAR)
SELECT decision FROM table_27537518_6 WHERE first_star = "V. Lecavalier"
### Context: CREATE TABLE table_27537518_6 (decision VARCHAR, first_star VARCHAR) ### Question: Who made the decisions in the game whose first star was V. Lecavalier? ### Answer: SELECT decision FROM table_27537518_6 WHERE first_star = "V. Lecavalier"
What was the final score the game where the Thrashers over-all record went to 22-16-6?
CREATE TABLE table_27537518_7 (score VARCHAR, record VARCHAR)
SELECT score FROM table_27537518_7 WHERE record = "22-16-6"
### Context: CREATE TABLE table_27537518_7 (score VARCHAR, record VARCHAR) ### Question: What was the final score the game where the Thrashers over-all record went to 22-16-6? ### Answer: SELECT score FROM table_27537518_7 WHERE record = "22-16-6"