question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which title did Neil Affleck direct?
CREATE TABLE table_14724369_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_14724369_1 WHERE directed_by = "Neil Affleck"
### Context: CREATE TABLE table_14724369_1 (title VARCHAR, directed_by VARCHAR) ### Question: Which title did Neil Affleck direct? ### Answer: SELECT title FROM table_14724369_1 WHERE directed_by = "Neil Affleck"
What is the first number in series that had the production code 1ACX03?
CREATE TABLE table_14724369_1 (no_in_series INTEGER, production_code VARCHAR)
SELECT MAX(no_in_series) FROM table_14724369_1 WHERE production_code = "1ACX03"
### Context: CREATE TABLE table_14724369_1 (no_in_series INTEGER, production_code VARCHAR) ### Question: What is the first number in series that had the production code 1ACX03? ### Answer: SELECT MAX(no_in_series) FROM table_14724369_1 WHERE production_code = "1ACX03"
Which title had the production code 1ACX04?
CREATE TABLE table_14724369_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_14724369_1 WHERE production_code = "1ACX04"
### Context: CREATE TABLE table_14724369_1 (title VARCHAR, production_code VARCHAR) ### Question: Which title had the production code 1ACX04? ### Answer: SELECT title FROM table_14724369_1 WHERE production_code = "1ACX04"
When did the show directed by Michael Dimartino first air?
CREATE TABLE table_14724369_1 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_14724369_1 WHERE directed_by = "Michael DiMartino"
### Context: CREATE TABLE table_14724369_1 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: When did the show directed by Michael Dimartino first air? ### Answer: SELECT original_air_date FROM table_14724369_1 WHERE directed_by = "Michael DiMartino"
Which series numbers were directed by Monte Young?
CREATE TABLE table_14724369_1 (no_in_series VARCHAR, directed_by VARCHAR)
SELECT no_in_series FROM table_14724369_1 WHERE directed_by = "Monte Young"
### Context: CREATE TABLE table_14724369_1 (no_in_series VARCHAR, directed_by VARCHAR) ### Question: Which series numbers were directed by Monte Young? ### Answer: SELECT no_in_series FROM table_14724369_1 WHERE directed_by = "Monte Young"
How many people directed the show written by Chris Sheridan?
CREATE TABLE table_14724369_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT COUNT(directed_by) FROM table_14724369_1 WHERE written_by = "Chris Sheridan"
### Context: CREATE TABLE table_14724369_1 (directed_by VARCHAR, written_by VARCHAR) ### Question: How many people directed the show written by Chris Sheridan? ### Answer: SELECT COUNT(directed_by) FROM table_14724369_1 WHERE written_by = "Chris Sheridan"
What regular seasons occurred in 2011?
CREATE TABLE table_14723382_1 (regular_season VARCHAR, year VARCHAR)
SELECT regular_season FROM table_14723382_1 WHERE year = 2011
### Context: CREATE TABLE table_14723382_1 (regular_season VARCHAR, year VARCHAR) ### Question: What regular seasons occurred in 2011? ### Answer: SELECT regular_season FROM table_14723382_1 WHERE year = 2011
What is the largest numbered?
CREATE TABLE table_14723382_1 (division INTEGER)
SELECT MAX(division) FROM table_14723382_1
### Context: CREATE TABLE table_14723382_1 (division INTEGER) ### Question: What is the largest numbered? ### Answer: SELECT MAX(division) FROM table_14723382_1
How many positions does rene villemure play?
CREATE TABLE table_1473672_2 (position VARCHAR, player VARCHAR)
SELECT COUNT(position) FROM table_1473672_2 WHERE player = "Rene Villemure"
### Context: CREATE TABLE table_1473672_2 (position VARCHAR, player VARCHAR) ### Question: How many positions does rene villemure play? ### Answer: SELECT COUNT(position) FROM table_1473672_2 WHERE player = "Rene Villemure"
What is the pick# for the medicine hat tigers (wchl)?
CREATE TABLE table_1473672_2 (pick__number INTEGER, college_junior_club_team VARCHAR)
SELECT MIN(pick__number) FROM table_1473672_2 WHERE college_junior_club_team = "Medicine Hat Tigers (WCHL)"
### Context: CREATE TABLE table_1473672_2 (pick__number INTEGER, college_junior_club_team VARCHAR) ### Question: What is the pick# for the medicine hat tigers (wchl)? ### Answer: SELECT MIN(pick__number) FROM table_1473672_2 WHERE college_junior_club_team = "Medicine Hat Tigers (WCHL)"
What nhl team does stan weir play for?
CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_1473672_2 WHERE player = "Stan Weir"
### Context: CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR) ### Question: What nhl team does stan weir play for? ### Answer: SELECT nhl_team FROM table_1473672_2 WHERE player = "Stan Weir"
What nhl team does dwight bialowas play for?
CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_1473672_2 WHERE player = "Dwight Bialowas"
### Context: CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR) ### Question: What nhl team does dwight bialowas play for? ### Answer: SELECT nhl_team FROM table_1473672_2 WHERE player = "Dwight Bialowas"
Lorne Henning has the lowest pick# of?
CREATE TABLE table_1473672_2 (pick__number INTEGER)
SELECT MIN(pick__number) FROM table_1473672_2
### Context: CREATE TABLE table_1473672_2 (pick__number INTEGER) ### Question: Lorne Henning has the lowest pick# of? ### Answer: SELECT MIN(pick__number) FROM table_1473672_2
Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team?
CREATE TABLE table_1473672_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
SELECT nhl_team FROM table_1473672_2 WHERE college_junior_club_team = "Oshawa Generals (OMJHL)"
### Context: CREATE TABLE table_1473672_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR) ### Question: Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team? ### Answer: SELECT nhl_team FROM table_1473672_2 WHERE college_junior_club_team = "Oshawa Generals (OMJHL)"
Which colle/junior/club team did Michel Boudreau play for?
CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_1473672_3 WHERE player = "Michel Boudreau"
### Context: CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: Which colle/junior/club team did Michel Boudreau play for? ### Answer: SELECT college_junior_club_team FROM table_1473672_3 WHERE player = "Michel Boudreau"
Which players played right wing?
CREATE TABLE table_1473672_3 (player VARCHAR, position VARCHAR)
SELECT player FROM table_1473672_3 WHERE position = "Right Wing"
### Context: CREATE TABLE table_1473672_3 (player VARCHAR, position VARCHAR) ### Question: Which players played right wing? ### Answer: SELECT player FROM table_1473672_3 WHERE position = "Right Wing"
Which nationality is the player from the Philadelphia Flyers?
CREATE TABLE table_1473672_3 (nationality VARCHAR, nhl_team VARCHAR)
SELECT nationality FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers"
### Context: CREATE TABLE table_1473672_3 (nationality VARCHAR, nhl_team VARCHAR) ### Question: Which nationality is the player from the Philadelphia Flyers? ### Answer: SELECT nationality FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers"
Which position did the player hold that played for the Philadelphia Flyers in NHL?
CREATE TABLE table_1473672_3 (position VARCHAR, nhl_team VARCHAR)
SELECT position FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers"
### Context: CREATE TABLE table_1473672_3 (position VARCHAR, nhl_team VARCHAR) ### Question: Which position did the player hold that played for the Philadelphia Flyers in NHL? ### Answer: SELECT position FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers"
Which college/junior/club team did the player play on that played for the Buffalo Sabres in NHL?
CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT college_junior_club_team FROM table_1473672_3 WHERE nhl_team = "Buffalo Sabres"
### Context: CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, nhl_team VARCHAR) ### Question: Which college/junior/club team did the player play on that played for the Buffalo Sabres in NHL? ### Answer: SELECT college_junior_club_team FROM table_1473672_3 WHERE nhl_team = "Buffalo Sabres"
Name the number of teams for college/junior club for philadelphia flyers
CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT COUNT(college_junior_club_team) FROM table_1473672_4 WHERE nhl_team = "Philadelphia Flyers"
### Context: CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) ### Question: Name the number of teams for college/junior club for philadelphia flyers ### Answer: SELECT COUNT(college_junior_club_team) FROM table_1473672_4 WHERE nhl_team = "Philadelphia Flyers"
Name the position for ron lalonde
CREATE TABLE table_1473672_4 (position VARCHAR, player VARCHAR)
SELECT position FROM table_1473672_4 WHERE player = "Ron Lalonde"
### Context: CREATE TABLE table_1473672_4 (position VARCHAR, player VARCHAR) ### Question: Name the position for ron lalonde ### Answer: SELECT position FROM table_1473672_4 WHERE player = "Ron Lalonde"
Name the college/junior club team for pick number 63
CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, pick__number VARCHAR)
SELECT college_junior_club_team FROM table_1473672_4 WHERE pick__number = 63
### Context: CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, pick__number VARCHAR) ### Question: Name the college/junior club team for pick number 63 ### Answer: SELECT college_junior_club_team FROM table_1473672_4 WHERE pick__number = 63
How many positions did 1972 NHL Draft pick Rene Lambert play?
CREATE TABLE table_1473672_10 (position VARCHAR, player VARCHAR)
SELECT COUNT(position) FROM table_1473672_10 WHERE player = "Rene Lambert"
### Context: CREATE TABLE table_1473672_10 (position VARCHAR, player VARCHAR) ### Question: How many positions did 1972 NHL Draft pick Rene Lambert play? ### Answer: SELECT COUNT(position) FROM table_1473672_10 WHERE player = "Rene Lambert"
what's the college/junior/club team with nhl team being california golden seals
CREATE TABLE table_1473672_9 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT college_junior_club_team FROM table_1473672_9 WHERE nhl_team = "California Golden Seals"
### Context: CREATE TABLE table_1473672_9 (college_junior_club_team VARCHAR, nhl_team VARCHAR) ### Question: what's the college/junior/club team with nhl team being california golden seals ### Answer: SELECT college_junior_club_team FROM table_1473672_9 WHERE nhl_team = "California Golden Seals"
what's the nhl team with college/junior/club team being brandon wheat kings (wchl)
CREATE TABLE table_1473672_9 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
SELECT nhl_team FROM table_1473672_9 WHERE college_junior_club_team = "Brandon Wheat Kings (WCHL)"
### Context: CREATE TABLE table_1473672_9 (nhl_team VARCHAR, college_junior_club_team VARCHAR) ### Question: what's the nhl team with college/junior/club team being brandon wheat kings (wchl) ### Answer: SELECT nhl_team FROM table_1473672_9 WHERE college_junior_club_team = "Brandon Wheat Kings (WCHL)"
who is the the player with pick # being 132
CREATE TABLE table_1473672_9 (player VARCHAR, pick__number VARCHAR)
SELECT player FROM table_1473672_9 WHERE pick__number = 132
### Context: CREATE TABLE table_1473672_9 (player VARCHAR, pick__number VARCHAR) ### Question: who is the the player with pick # being 132 ### Answer: SELECT player FROM table_1473672_9 WHERE pick__number = 132
how many player with nhl team being vancouver canucks
CREATE TABLE table_1473672_9 (player VARCHAR, nhl_team VARCHAR)
SELECT COUNT(player) FROM table_1473672_9 WHERE nhl_team = "Vancouver Canucks"
### Context: CREATE TABLE table_1473672_9 (player VARCHAR, nhl_team VARCHAR) ### Question: how many player with nhl team being vancouver canucks ### Answer: SELECT COUNT(player) FROM table_1473672_9 WHERE nhl_team = "Vancouver Canucks"
what's the position with player being ray boutin
CREATE TABLE table_1473672_9 (position VARCHAR, player VARCHAR)
SELECT position FROM table_1473672_9 WHERE player = "Ray Boutin"
### Context: CREATE TABLE table_1473672_9 (position VARCHAR, player VARCHAR) ### Question: what's the position with player being ray boutin ### Answer: SELECT position FROM table_1473672_9 WHERE player = "Ray Boutin"
what is the name of the borough where station uses is 28702?
CREATE TABLE table_14748457_1 (borough VARCHAR, station_users_2008_9 VARCHAR)
SELECT borough FROM table_14748457_1 WHERE station_users_2008_9 = "28702"
### Context: CREATE TABLE table_14748457_1 (borough VARCHAR, station_users_2008_9 VARCHAR) ### Question: what is the name of the borough where station uses is 28702? ### Answer: SELECT borough FROM table_14748457_1 WHERE station_users_2008_9 = "28702"
what are the lines served where station users is 210076?
CREATE TABLE table_14748457_1 (lines_served VARCHAR, station_users_2008_9 VARCHAR)
SELECT lines_served FROM table_14748457_1 WHERE station_users_2008_9 = "210076"
### Context: CREATE TABLE table_14748457_1 (lines_served VARCHAR, station_users_2008_9 VARCHAR) ### Question: what are the lines served where station users is 210076? ### Answer: SELECT lines_served FROM table_14748457_1 WHERE station_users_2008_9 = "210076"
whatis hte station code where users are 130368?
CREATE TABLE table_14748457_1 (station__and_code_ VARCHAR, station_users_2008_9 VARCHAR)
SELECT station__and_code_ FROM table_14748457_1 WHERE station_users_2008_9 = "130368"
### Context: CREATE TABLE table_14748457_1 (station__and_code_ VARCHAR, station_users_2008_9 VARCHAR) ### Question: whatis hte station code where users are 130368? ### Answer: SELECT station__and_code_ FROM table_14748457_1 WHERE station_users_2008_9 = "130368"
Which is the class A when Weslaco was the class AAAAA and brownwood was the class AAAA
CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aAAAA VARCHAR, Weslaco VARCHAR, class_aAAA VARCHAR, Brownwood VARCHAR)
SELECT class_a FROM table_14747043_1 WHERE class_aAAAA = Weslaco AND class_aAAA = Brownwood
### Context: CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aAAAA VARCHAR, Weslaco VARCHAR, class_aAAA VARCHAR, Brownwood VARCHAR) ### Question: Which is the class A when Weslaco was the class AAAAA and brownwood was the class AAAA ### Answer: SELECT class_a FROM table_14747043_1 WHERE class_aAAAA = Weslaco AND ...
Which is the class A when Marion was the class AA
CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aA VARCHAR, Marion VARCHAR)
SELECT class_a FROM table_14747043_1 WHERE class_aA = Marion
### Context: CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aA VARCHAR, Marion VARCHAR) ### Question: Which is the class A when Marion was the class AA ### Answer: SELECT class_a FROM table_14747043_1 WHERE class_aA = Marion
Which is the class AA when graford was the class A
CREATE TABLE table_14747043_1 (class_aA VARCHAR, class_a VARCHAR)
SELECT class_aA FROM table_14747043_1 WHERE class_a = "Graford"
### Context: CREATE TABLE table_14747043_1 (class_aA VARCHAR, class_a VARCHAR) ### Question: Which is the class AA when graford was the class A ### Answer: SELECT class_aA FROM table_14747043_1 WHERE class_a = "Graford"
How many class AA in the year 2002-03
CREATE TABLE table_14747043_1 (class_aA VARCHAR, school_year VARCHAR)
SELECT COUNT(class_aA) FROM table_14747043_1 WHERE school_year = "2002-03"
### Context: CREATE TABLE table_14747043_1 (class_aA VARCHAR, school_year VARCHAR) ### Question: How many class AA in the year 2002-03 ### Answer: SELECT COUNT(class_aA) FROM table_14747043_1 WHERE school_year = "2002-03"
Who was the class AAAA when class AAAAA was Weslaco in 1994-95
CREATE TABLE table_14747043_1 (class_aAAA VARCHAR, class_aAAAA VARCHAR, Weslaco VARCHAR, school_year VARCHAR)
SELECT class_aAAA FROM table_14747043_1 WHERE class_aAAAA = Weslaco AND school_year = "1994-95"
### Context: CREATE TABLE table_14747043_1 (class_aAAA VARCHAR, class_aAAAA VARCHAR, Weslaco VARCHAR, school_year VARCHAR) ### Question: Who was the class AAAA when class AAAAA was Weslaco in 1994-95 ### Answer: SELECT class_aAAA FROM table_14747043_1 WHERE class_aAAAA = Weslaco AND school_year = "1994-95"
What are the changes from 2009 to 2010 in Tunisia?
CREATE TABLE table_14752049_2 (change__2009_to_2010_ VARCHAR, country VARCHAR)
SELECT change__2009_to_2010_ FROM table_14752049_2 WHERE country = "Tunisia"
### Context: CREATE TABLE table_14752049_2 (change__2009_to_2010_ VARCHAR, country VARCHAR) ### Question: What are the changes from 2009 to 2010 in Tunisia? ### Answer: SELECT change__2009_to_2010_ FROM table_14752049_2 WHERE country = "Tunisia"
What are the international tourist arrivals in 2010 where change from 2010 to 2011 is +11.2% ?
CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR)
SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2010_to_2011_ = "+11.2%"
### Context: CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR) ### Question: What are the international tourist arrivals in 2010 where change from 2010 to 2011 is +11.2% ? ### Answer: SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE chan...
What are the changes (2010 to 2011) where the International Tourist Arrivals is 1.7 million?
CREATE TABLE table_14752049_2 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
SELECT change__2010_to_2011_ FROM table_14752049_2 WHERE international_tourist_arrivals__2011_ = "1.7 million"
### Context: CREATE TABLE table_14752049_2 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR) ### Question: What are the changes (2010 to 2011) where the International Tourist Arrivals is 1.7 million? ### Answer: SELECT change__2010_to_2011_ FROM table_14752049_2 WHERE international_tourist_...
What are the international tourist arrivals(2010) where change from 2009 to 2010 is +11.1%?
CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2009_to_2010_ VARCHAR)
SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2009_to_2010_ = "+11.1%"
### Context: CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2009_to_2010_ VARCHAR) ### Question: What are the international tourist arrivals(2010) where change from 2009 to 2010 is +11.1%? ### Answer: SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change_...
What are the International tourist arrivals (2010) where change from 2010 to 2011 is +15%
CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR)
SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2010_to_2011_ = "+15%"
### Context: CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR) ### Question: What are the International tourist arrivals (2010) where change from 2010 to 2011 is +15% ### Answer: SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2...
How many international tourist arrivals were in Senegal in 2011?
CREATE TABLE table_14752049_2 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR)
SELECT international_tourist_arrivals__2011_ FROM table_14752049_2 WHERE country = "Senegal"
### Context: CREATE TABLE table_14752049_2 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR) ### Question: How many international tourist arrivals were in Senegal in 2011? ### Answer: SELECT international_tourist_arrivals__2011_ FROM table_14752049_2 WHERE country = "Senegal"
When the change (2010 to 2011) is +1.0% what is the change (2011 to 2012)?
CREATE TABLE table_14752049_6 (change__2011_to_2012_ VARCHAR, change__2010_to_2011_ VARCHAR)
SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE change__2010_to_2011_ = "+1.0%"
### Context: CREATE TABLE table_14752049_6 (change__2011_to_2012_ VARCHAR, change__2010_to_2011_ VARCHAR) ### Question: When the change (2010 to 2011) is +1.0% what is the change (2011 to 2012)? ### Answer: SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE change__2010_to_2011_ = "+1.0%"
When the change (2011 to 2012) is -0.1% what is the country?
CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR)
SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = "-0.1%"
### Context: CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR) ### Question: When the change (2011 to 2012) is -0.1% what is the country? ### Answer: SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = "-0.1%"
When the change (2011 to 2012) is +13.4% what is the country?
CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR)
SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = "+13.4%"
### Context: CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR) ### Question: When the change (2011 to 2012) is +13.4% what is the country? ### Answer: SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = "+13.4%"
When 24.1 million is international tourist arrivals (2012) what is the change (2010 to 2011) ?
CREATE TABLE table_14752049_6 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2012_ VARCHAR)
SELECT change__2010_to_2011_ FROM table_14752049_6 WHERE international_tourist_arrivals__2012_ = "24.1 million"
### Context: CREATE TABLE table_14752049_6 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2012_ VARCHAR) ### Question: When 24.1 million is international tourist arrivals (2012) what is the change (2010 to 2011) ? ### Answer: SELECT change__2010_to_2011_ FROM table_14752049_6 WHERE international_touri...
United kingdom is the country what is the change (2011 to 2012)?
CREATE TABLE table_14752049_6 (change__2011_to_2012_ VARCHAR, country VARCHAR)
SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE country = "United Kingdom"
### Context: CREATE TABLE table_14752049_6 (change__2011_to_2012_ VARCHAR, country VARCHAR) ### Question: United kingdom is the country what is the change (2011 to 2012)? ### Answer: SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE country = "United Kingdom"
When the 1 is the rank what is the overall amount of international tourist arrivals in 2012?
CREATE TABLE table_14752049_6 (international_tourist_arrivals__2012_ VARCHAR, rank VARCHAR)
SELECT COUNT(international_tourist_arrivals__2012_) FROM table_14752049_6 WHERE rank = 1
### Context: CREATE TABLE table_14752049_6 (international_tourist_arrivals__2012_ VARCHAR, rank VARCHAR) ### Question: When the 1 is the rank what is the overall amount of international tourist arrivals in 2012? ### Answer: SELECT COUNT(international_tourist_arrivals__2012_) FROM table_14752049_6 WHERE rank = 1
What is the enrollment amount where Hispanic (%) is 3.6?
CREATE TABLE table_14754471_1 (enrollment VARCHAR, hispanic___percentage_ VARCHAR)
SELECT enrollment FROM table_14754471_1 WHERE hispanic___percentage_ = "3.6"
### Context: CREATE TABLE table_14754471_1 (enrollment VARCHAR, hispanic___percentage_ VARCHAR) ### Question: What is the enrollment amount where Hispanic (%) is 3.6? ### Answer: SELECT enrollment FROM table_14754471_1 WHERE hispanic___percentage_ = "3.6"
What percentage of Asians are there in the year 2009?
CREATE TABLE table_14754471_1 (asian___percentage_ VARCHAR, year VARCHAR)
SELECT asian___percentage_ FROM table_14754471_1 WHERE year = 2009
### Context: CREATE TABLE table_14754471_1 (asian___percentage_ VARCHAR, year VARCHAR) ### Question: What percentage of Asians are there in the year 2009? ### Answer: SELECT asian___percentage_ FROM table_14754471_1 WHERE year = 2009
What percentage of Asians are there in the year 2004?
CREATE TABLE table_14754471_1 (asian___percentage_ VARCHAR, year VARCHAR)
SELECT asian___percentage_ FROM table_14754471_1 WHERE year = 2004
### Context: CREATE TABLE table_14754471_1 (asian___percentage_ VARCHAR, year VARCHAR) ### Question: What percentage of Asians are there in the year 2004? ### Answer: SELECT asian___percentage_ FROM table_14754471_1 WHERE year = 2004
What percentage of hispanics are there when the free/reduced lunch percentage is 81.4?
CREATE TABLE table_14754471_1 (hispanic___percentage_ VARCHAR, free_reduced_lunch___percentage_ VARCHAR)
SELECT hispanic___percentage_ FROM table_14754471_1 WHERE free_reduced_lunch___percentage_ = "81.4"
### Context: CREATE TABLE table_14754471_1 (hispanic___percentage_ VARCHAR, free_reduced_lunch___percentage_ VARCHAR) ### Question: What percentage of hispanics are there when the free/reduced lunch percentage is 81.4? ### Answer: SELECT hispanic___percentage_ FROM table_14754471_1 WHERE free_reduced_lunch___percentage...
What percentage of free/reduced lunch are there when the hispanic percentage is 3.7?
CREATE TABLE table_14754471_1 (free_reduced_lunch___percentage_ VARCHAR, hispanic___percentage_ VARCHAR)
SELECT free_reduced_lunch___percentage_ FROM table_14754471_1 WHERE hispanic___percentage_ = "3.7"
### Context: CREATE TABLE table_14754471_1 (free_reduced_lunch___percentage_ VARCHAR, hispanic___percentage_ VARCHAR) ### Question: What percentage of free/reduced lunch are there when the hispanic percentage is 3.7? ### Answer: SELECT free_reduced_lunch___percentage_ FROM table_14754471_1 WHERE hispanic___percentage_...
Who was the arranger for the track written by Nizar Francis ?
CREATE TABLE table_14778650_1 (arranger VARCHAR, writer VARCHAR)
SELECT arranger FROM table_14778650_1 WHERE writer = "Nizar Francis"
### Context: CREATE TABLE table_14778650_1 (arranger VARCHAR, writer VARCHAR) ### Question: Who was the arranger for the track written by Nizar Francis ? ### Answer: SELECT arranger FROM table_14778650_1 WHERE writer = "Nizar Francis"
Who was the writer for the song 4:29 in length?
CREATE TABLE table_14778650_1 (writer VARCHAR, length VARCHAR)
SELECT writer FROM table_14778650_1 WHERE length = "4:29"
### Context: CREATE TABLE table_14778650_1 (writer VARCHAR, length VARCHAR) ### Question: Who was the writer for the song 4:29 in length? ### Answer: SELECT writer FROM table_14778650_1 WHERE length = "4:29"
What track number is 4:29 in length?
CREATE TABLE table_14778650_1 (_number VARCHAR, length VARCHAR)
SELECT _number FROM table_14778650_1 WHERE length = "4:29"
### Context: CREATE TABLE table_14778650_1 (_number VARCHAR, length VARCHAR) ### Question: What track number is 4:29 in length? ### Answer: SELECT _number FROM table_14778650_1 WHERE length = "4:29"
What is the female rank in Karnataka?
CREATE TABLE table_14785903_1 (females_rank VARCHAR, states VARCHAR)
SELECT females_rank FROM table_14785903_1 WHERE states = "Karnataka"
### Context: CREATE TABLE table_14785903_1 (females_rank VARCHAR, states VARCHAR) ### Question: What is the female rank in Karnataka? ### Answer: SELECT females_rank FROM table_14785903_1 WHERE states = "Karnataka"
What is the English title when the original title is Die Qual Der Wahl?
CREATE TABLE table_1481865_1 (title__english_ VARCHAR, title__original_ VARCHAR)
SELECT title__english_ FROM table_1481865_1 WHERE title__original_ = "Die Qual der Wahl"
### Context: CREATE TABLE table_1481865_1 (title__english_ VARCHAR, title__original_ VARCHAR) ### Question: What is the English title when the original title is Die Qual Der Wahl? ### Answer: SELECT title__english_ FROM table_1481865_1 WHERE title__original_ = "Die Qual der Wahl"
What is the episode number where the English title is Pilot?
CREATE TABLE table_1481865_1 (number_of_episode VARCHAR, title__english_ VARCHAR)
SELECT number_of_episode FROM table_1481865_1 WHERE title__english_ = "Pilot"
### Context: CREATE TABLE table_1481865_1 (number_of_episode VARCHAR, title__english_ VARCHAR) ### Question: What is the episode number where the English title is Pilot? ### Answer: SELECT number_of_episode FROM table_1481865_1 WHERE title__english_ = "Pilot"
What was the original air date for episode number 6?
CREATE TABLE table_1481865_1 (original_air_date VARCHAR, number_of_episode VARCHAR)
SELECT original_air_date FROM table_1481865_1 WHERE number_of_episode = 6
### Context: CREATE TABLE table_1481865_1 (original_air_date VARCHAR, number_of_episode VARCHAR) ### Question: What was the original air date for episode number 6? ### Answer: SELECT original_air_date FROM table_1481865_1 WHERE number_of_episode = 6
What is the original title of season number 3?
CREATE TABLE table_1481865_1 (title__original_ VARCHAR, number_of_season VARCHAR)
SELECT title__original_ FROM table_1481865_1 WHERE number_of_season = 3
### Context: CREATE TABLE table_1481865_1 (title__original_ VARCHAR, number_of_season VARCHAR) ### Question: What is the original title of season number 3? ### Answer: SELECT title__original_ FROM table_1481865_1 WHERE number_of_season = 3
What municipality where the human development index in the year 2000 was 0.7827?
CREATE TABLE table_1480455_1 (municipality VARCHAR, human_development_index__2000_ VARCHAR)
SELECT municipality FROM table_1480455_1 WHERE human_development_index__2000_ = "0.7827"
### Context: CREATE TABLE table_1480455_1 (municipality VARCHAR, human_development_index__2000_ VARCHAR) ### Question: What municipality where the human development index in the year 2000 was 0.7827? ### Answer: SELECT municipality FROM table_1480455_1 WHERE human_development_index__2000_ = "0.7827"
What is the total number of population in the year 2005 where the population density 35.9 (/km 2)?
CREATE TABLE table_1480455_1 (population__2005_ VARCHAR, population_density___km_2__ VARCHAR)
SELECT COUNT(population__2005_) FROM table_1480455_1 WHERE population_density___km_2__ = "35.9"
### Context: CREATE TABLE table_1480455_1 (population__2005_ VARCHAR, population_density___km_2__ VARCHAR) ### Question: What is the total number of population in the year 2005 where the population density 35.9 (/km 2)? ### Answer: SELECT COUNT(population__2005_) FROM table_1480455_1 WHERE population_density___km_2__ =...
What is the human development index for the year 2000 where the ingei code is 10?
CREATE TABLE table_1480455_1 (human_development_index__2000_ VARCHAR, inegi_code VARCHAR)
SELECT human_development_index__2000_ FROM table_1480455_1 WHERE inegi_code = 10
### Context: CREATE TABLE table_1480455_1 (human_development_index__2000_ VARCHAR, inegi_code VARCHAR) ### Question: What is the human development index for the year 2000 where the ingei code is 10? ### Answer: SELECT human_development_index__2000_ FROM table_1480455_1 WHERE inegi_code = 10
What is the area (km 2) where the population density (/mk2) is 84.3?
CREATE TABLE table_1480455_1 (area__km_2__ VARCHAR, population_density___km_2__ VARCHAR)
SELECT area__km_2__ FROM table_1480455_1 WHERE population_density___km_2__ = "84.3"
### Context: CREATE TABLE table_1480455_1 (area__km_2__ VARCHAR, population_density___km_2__ VARCHAR) ### Question: What is the area (km 2) where the population density (/mk2) is 84.3? ### Answer: SELECT area__km_2__ FROM table_1480455_1 WHERE population_density___km_2__ = "84.3"
Name the mandate for list pct 12.39%
CREATE TABLE table_14834801_1 (mandate VARCHAR, list_pct VARCHAR)
SELECT mandate FROM table_14834801_1 WHERE list_pct = "12.39%"
### Context: CREATE TABLE table_14834801_1 (mandate VARCHAR, list_pct VARCHAR) ### Question: Name the mandate for list pct 12.39% ### Answer: SELECT mandate FROM table_14834801_1 WHERE list_pct = "12.39%"
Name the total number of list votes for 20.95%
CREATE TABLE table_14834801_1 (list_votes VARCHAR, list_pct VARCHAR)
SELECT COUNT(list_votes) FROM table_14834801_1 WHERE list_pct = "20.95%"
### Context: CREATE TABLE table_14834801_1 (list_votes VARCHAR, list_pct VARCHAR) ### Question: Name the total number of list votes for 20.95% ### Answer: SELECT COUNT(list_votes) FROM table_14834801_1 WHERE list_pct = "20.95%"
What was the scoring rank for Angela Stanford in 2009?
CREATE TABLE table_14836185_3 (scoring_rank VARCHAR, year VARCHAR)
SELECT scoring_rank FROM table_14836185_3 WHERE year = 2009
### Context: CREATE TABLE table_14836185_3 (scoring_rank VARCHAR, year VARCHAR) ### Question: What was the scoring rank for Angela Stanford in 2009? ### Answer: SELECT scoring_rank FROM table_14836185_3 WHERE year = 2009
What was the highest number on money list rank for Angela Stanford's career?
CREATE TABLE table_14836185_3 (money_list_rank INTEGER)
SELECT MAX(money_list_rank) FROM table_14836185_3
### Context: CREATE TABLE table_14836185_3 (money_list_rank INTEGER) ### Question: What was the highest number on money list rank for Angela Stanford's career? ### Answer: SELECT MAX(money_list_rank) FROM table_14836185_3
In the year where Angela Stanford had a scoring average of 71.62, how many times did she take second place?
CREATE TABLE table_14836185_3 (scoring_average VARCHAR)
SELECT COUNT(2 AS nd) FROM table_14836185_3 WHERE scoring_average = "71.62"
### Context: CREATE TABLE table_14836185_3 (scoring_average VARCHAR) ### Question: In the year where Angela Stanford had a scoring average of 71.62, how many times did she take second place? ### Answer: SELECT COUNT(2 AS nd) FROM table_14836185_3 WHERE scoring_average = "71.62"
Namw the minimum production code for 16.04 million viewers
CREATE TABLE table_14845640_1 (production_code INTEGER, us_viewers__millions_ VARCHAR)
SELECT MIN(production_code) FROM table_14845640_1 WHERE us_viewers__millions_ = "16.04"
### Context: CREATE TABLE table_14845640_1 (production_code INTEGER, us_viewers__millions_ VARCHAR) ### Question: Namw the minimum production code for 16.04 million viewers ### Answer: SELECT MIN(production_code) FROM table_14845640_1 WHERE us_viewers__millions_ = "16.04"
Name the written by for 16.32 million viewers
CREATE TABLE table_14845640_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT written_by FROM table_14845640_1 WHERE us_viewers__millions_ = "16.32"
### Context: CREATE TABLE table_14845640_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Name the written by for 16.32 million viewers ### Answer: SELECT written_by FROM table_14845640_1 WHERE us_viewers__millions_ = "16.32"
What is the highest number of cuts made when her best finish is t4?
CREATE TABLE table_14853156_2 (cuts_made INTEGER, best_finish VARCHAR)
SELECT MAX(cuts_made) FROM table_14853156_2 WHERE best_finish = "T4"
### Context: CREATE TABLE table_14853156_2 (cuts_made INTEGER, best_finish VARCHAR) ### Question: What is the highest number of cuts made when her best finish is t4? ### Answer: SELECT MAX(cuts_made) FROM table_14853156_2 WHERE best_finish = "T4"
How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average?
CREATE TABLE table_14853156_2 (earnings___ VARCHAR, best_finish VARCHAR, scoring_average VARCHAR)
SELECT COUNT(earnings___) AS $__ FROM table_14853156_2 WHERE best_finish = "T2" AND scoring_average = "71.25"
### Context: CREATE TABLE table_14853156_2 (earnings___ VARCHAR, best_finish VARCHAR, scoring_average VARCHAR) ### Question: How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average? ### Answer: SELECT COUNT(earnings___) AS $__ FROM table_14853156_2 WHERE best_finish = "T2" AND scori...
What is the lowest number of cuts made when her best finish is t4?
CREATE TABLE table_14853156_2 (cuts_made INTEGER, best_finish VARCHAR)
SELECT MIN(cuts_made) FROM table_14853156_2 WHERE best_finish = "T4"
### Context: CREATE TABLE table_14853156_2 (cuts_made INTEGER, best_finish VARCHAR) ### Question: What is the lowest number of cuts made when her best finish is t4? ### Answer: SELECT MIN(cuts_made) FROM table_14853156_2 WHERE best_finish = "T4"
How many years has she ranked 56 on the money list?
CREATE TABLE table_14853156_2 (year VARCHAR, money_list_rank VARCHAR)
SELECT COUNT(year) FROM table_14853156_2 WHERE money_list_rank = "56"
### Context: CREATE TABLE table_14853156_2 (year VARCHAR, money_list_rank VARCHAR) ### Question: How many years has she ranked 56 on the money list? ### Answer: SELECT COUNT(year) FROM table_14853156_2 WHERE money_list_rank = "56"
What is the lowest number of wins?
CREATE TABLE table_14853156_2 (wins INTEGER)
SELECT MIN(wins) FROM table_14853156_2
### Context: CREATE TABLE table_14853156_2 (wins INTEGER) ### Question: What is the lowest number of wins? ### Answer: SELECT MIN(wins) FROM table_14853156_2
When steve gomer is the director who is the writer?
CREATE TABLE table_14847258_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_14847258_1 WHERE directed_by = "Steve Gomer"
### Context: CREATE TABLE table_14847258_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: When steve gomer is the director who is the writer? ### Answer: SELECT written_by FROM table_14847258_1 WHERE directed_by = "Steve Gomer"
15.03 million u.s viewers seen what episode?
CREATE TABLE table_14847258_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_14847258_1 WHERE us_viewers__millions_ = "15.03"
### Context: CREATE TABLE table_14847258_1 (title VARCHAR, us_viewers__millions_ VARCHAR) ### Question: 15.03 million u.s viewers seen what episode? ### Answer: SELECT title FROM table_14847258_1 WHERE us_viewers__millions_ = "15.03"
Name the most 3 credits
CREATE TABLE table_148535_2 (Id VARCHAR)
SELECT MIN(3 AS _credits) FROM table_148535_2
### Context: CREATE TABLE table_148535_2 (Id VARCHAR) ### Question: Name the most 3 credits ### Answer: SELECT MIN(3 AS _credits) FROM table_148535_2
Name the least 2 credits for straight hand
CREATE TABLE table_148535_2 (hand VARCHAR)
SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = "Straight"
### Context: CREATE TABLE table_148535_2 (hand VARCHAR) ### Question: Name the least 2 credits for straight hand ### Answer: SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = "Straight"
Name the least 2 credits for flush
CREATE TABLE table_148535_2 (hand VARCHAR)
SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = "Flush"
### Context: CREATE TABLE table_148535_2 (hand VARCHAR) ### Question: Name the least 2 credits for flush ### Answer: SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = "Flush"
Name the most 1 credit for three of a kind
CREATE TABLE table_148535_2 (hand VARCHAR)
SELECT MAX(1 AS _credit) FROM table_148535_2 WHERE hand = "Three of a Kind"
### Context: CREATE TABLE table_148535_2 (hand VARCHAR) ### Question: Name the most 1 credit for three of a kind ### Answer: SELECT MAX(1 AS _credit) FROM table_148535_2 WHERE hand = "Three of a Kind"
Name the points classification for mark renshaw and team csc
CREATE TABLE table_14856023_18 (points_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR)
SELECT points_classification FROM table_14856023_18 WHERE general_classification = "Mark Renshaw" AND team_classification = "Team CSC"
### Context: CREATE TABLE table_14856023_18 (points_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) ### Question: Name the points classification for mark renshaw and team csc ### Answer: SELECT points_classification FROM table_14856023_18 WHERE general_classification = "Mark Renshaw...
How many episodes were released on DVD in the US on October 13, 2009?
CREATE TABLE table_14855908_3 (episodes VARCHAR, region_1__us_ VARCHAR)
SELECT episodes FROM table_14855908_3 WHERE region_1__us_ = "October 13, 2009"
### Context: CREATE TABLE table_14855908_3 (episodes VARCHAR, region_1__us_ VARCHAR) ### Question: How many episodes were released on DVD in the US on October 13, 2009? ### Answer: SELECT episodes FROM table_14855908_3 WHERE region_1__us_ = "October 13, 2009"
How many episodes were put out in Region 4 on March 4, 2010?
CREATE TABLE table_14855908_3 (episodes INTEGER, region_4 VARCHAR)
SELECT MAX(episodes) FROM table_14855908_3 WHERE region_4 = "March 4, 2010"
### Context: CREATE TABLE table_14855908_3 (episodes INTEGER, region_4 VARCHAR) ### Question: How many episodes were put out in Region 4 on March 4, 2010? ### Answer: SELECT MAX(episodes) FROM table_14855908_3 WHERE region_4 = "March 4, 2010"
How many episodes were released in the season 1 DVD?
CREATE TABLE table_14855908_3 (episodes INTEGER, dvd_name VARCHAR)
SELECT MIN(episodes) FROM table_14855908_3 WHERE dvd_name = "Season 1"
### Context: CREATE TABLE table_14855908_3 (episodes INTEGER, dvd_name VARCHAR) ### Question: How many episodes were released in the season 1 DVD? ### Answer: SELECT MIN(episodes) FROM table_14855908_3 WHERE dvd_name = "Season 1"
What was the altitude of the explosion Hardtack Teak?
CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, explosion VARCHAR)
SELECT altitude__km_ FROM table_148578_1 WHERE explosion = "Hardtack Teak"
### Context: CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, explosion VARCHAR) ### Question: What was the altitude of the explosion Hardtack Teak? ### Answer: SELECT altitude__km_ FROM table_148578_1 WHERE explosion = "Hardtack Teak"
What was the altitude of the event on 1962-07-09?
CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, date VARCHAR)
SELECT altitude__km_ FROM table_148578_1 WHERE date = "1962-07-09"
### Context: CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, date VARCHAR) ### Question: What was the altitude of the event on 1962-07-09? ### Answer: SELECT altitude__km_ FROM table_148578_1 WHERE date = "1962-07-09"
What was the altitude of the yield of 1.4 megatons?
CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, yield__approximate_ VARCHAR)
SELECT altitude__km_ FROM table_148578_1 WHERE yield__approximate_ = "1.4 megatons"
### Context: CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, yield__approximate_ VARCHAR) ### Question: What was the altitude of the yield of 1.4 megatons? ### Answer: SELECT altitude__km_ FROM table_148578_1 WHERE yield__approximate_ = "1.4 megatons"
What was the yield of the K-4 explosion?
CREATE TABLE table_148578_1 (yield__approximate_ VARCHAR, explosion VARCHAR)
SELECT yield__approximate_ FROM table_148578_1 WHERE explosion = "K-4"
### Context: CREATE TABLE table_148578_1 (yield__approximate_ VARCHAR, explosion VARCHAR) ### Question: What was the yield of the K-4 explosion? ### Answer: SELECT yield__approximate_ FROM table_148578_1 WHERE explosion = "K-4"
What explosion had an altitude of 539 km?
CREATE TABLE table_148578_1 (explosion VARCHAR, altitude__km_ VARCHAR)
SELECT explosion FROM table_148578_1 WHERE altitude__km_ = "539"
### Context: CREATE TABLE table_148578_1 (explosion VARCHAR, altitude__km_ VARCHAR) ### Question: What explosion had an altitude of 539 km? ### Answer: SELECT explosion FROM table_148578_1 WHERE altitude__km_ = "539"
List all opponents in the September 23, 1984 game?
CREATE TABLE table_14863869_1 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_14863869_1 WHERE date = "September 23, 1984"
### Context: CREATE TABLE table_14863869_1 (opponent VARCHAR, date VARCHAR) ### Question: List all opponents in the September 23, 1984 game? ### Answer: SELECT opponent FROM table_14863869_1 WHERE date = "September 23, 1984"
What was the score in the game played on December 2, 1984?
CREATE TABLE table_14863869_1 (record VARCHAR, date VARCHAR)
SELECT record FROM table_14863869_1 WHERE date = "December 2, 1984"
### Context: CREATE TABLE table_14863869_1 (record VARCHAR, date VARCHAR) ### Question: What was the score in the game played on December 2, 1984? ### Answer: SELECT record FROM table_14863869_1 WHERE date = "December 2, 1984"
How many scores were there in week 11?
CREATE TABLE table_14863869_1 (record VARCHAR, week VARCHAR)
SELECT COUNT(record) FROM table_14863869_1 WHERE week = 11
### Context: CREATE TABLE table_14863869_1 (record VARCHAR, week VARCHAR) ### Question: How many scores were there in week 11? ### Answer: SELECT COUNT(record) FROM table_14863869_1 WHERE week = 11
What is the highest win for the team Nacional?
CREATE TABLE table_14871601_1 (wins INTEGER, team VARCHAR)
SELECT MAX(wins) FROM table_14871601_1 WHERE team = "Nacional"
### Context: CREATE TABLE table_14871601_1 (wins INTEGER, team VARCHAR) ### Question: What is the highest win for the team Nacional? ### Answer: SELECT MAX(wins) FROM table_14871601_1 WHERE team = "Nacional"
What is the smallest conceded value for the team 12 De Octubre?
CREATE TABLE table_14871601_1 (conceded INTEGER, team VARCHAR)
SELECT MIN(conceded) FROM table_14871601_1 WHERE team = "12 de Octubre"
### Context: CREATE TABLE table_14871601_1 (conceded INTEGER, team VARCHAR) ### Question: What is the smallest conceded value for the team 12 De Octubre? ### Answer: SELECT MIN(conceded) FROM table_14871601_1 WHERE team = "12 de Octubre"
What is the smallest draws value with 21 points?
CREATE TABLE table_14871601_1 (draws INTEGER, points VARCHAR)
SELECT MIN(draws) FROM table_14871601_1 WHERE points = 21
### Context: CREATE TABLE table_14871601_1 (draws INTEGER, points VARCHAR) ### Question: What is the smallest draws value with 21 points? ### Answer: SELECT MIN(draws) FROM table_14871601_1 WHERE points = 21
What is the largest loss for the Tacuary team?
CREATE TABLE table_14871601_1 (losses INTEGER, team VARCHAR)
SELECT MAX(losses) FROM table_14871601_1 WHERE team = "Tacuary"
### Context: CREATE TABLE table_14871601_1 (losses INTEGER, team VARCHAR) ### Question: What is the largest loss for the Tacuary team? ### Answer: SELECT MAX(losses) FROM table_14871601_1 WHERE team = "Tacuary"
What is the name of the venue where the opponent scored 51?
CREATE TABLE table_14877831_2 (venue VARCHAR, opponents VARCHAR)
SELECT venue FROM table_14877831_2 WHERE opponents = 51
### Context: CREATE TABLE table_14877831_2 (venue VARCHAR, opponents VARCHAR) ### Question: What is the name of the venue where the opponent scored 51? ### Answer: SELECT venue FROM table_14877831_2 WHERE opponents = 51