question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
what's the state with highest point being mount katahdin
CREATE TABLE table_1416612_1 (state VARCHAR, highest_point VARCHAR)
SELECT state FROM table_1416612_1 WHERE highest_point = "Mount Katahdin"
### Context: CREATE TABLE table_1416612_1 (state VARCHAR, highest_point VARCHAR) ### Question: what's the state with highest point being mount katahdin ### Answer: SELECT state FROM table_1416612_1 WHERE highest_point = "Mount Katahdin"
What language for the glam genre?
CREATE TABLE table_14160327_4 (language VARCHAR, genre VARCHAR)
SELECT language FROM table_14160327_4 WHERE genre = "Glam"
### Context: CREATE TABLE table_14160327_4 (language VARCHAR, genre VARCHAR) ### Question: What language for the glam genre? ### Answer: SELECT language FROM table_14160327_4 WHERE genre = "Glam"
What game allow the 1980s to be exportable?
CREATE TABLE table_14160327_4 (exportable VARCHAR, decade VARCHAR)
SELECT exportable FROM table_14160327_4 WHERE decade = "1980s"
### Context: CREATE TABLE table_14160327_4 (exportable VARCHAR, decade VARCHAR) ### Question: What game allow the 1980s to be exportable? ### Answer: SELECT exportable FROM table_14160327_4 WHERE decade = "1980s"
How many family friendly games are in the 1990s?
CREATE TABLE table_14160327_4 (family_friendly VARCHAR, decade VARCHAR)
SELECT COUNT(family_friendly) FROM table_14160327_4 WHERE decade = "1990s"
### Context: CREATE TABLE table_14160327_4 (family_friendly VARCHAR, decade VARCHAR) ### Question: How many family friendly games are in the 1990s? ### Answer: SELECT COUNT(family_friendly) FROM table_14160327_4 WHERE decade = "1990s"
When 0-1 is the aggregate what are the home (1st leg)?
CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR, aggregate VARCHAR)
SELECT home__1st_leg_ FROM table_14219514_2 WHERE aggregate = "0-1"
### Context: CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR, aggregate VARCHAR) ### Question: When 0-1 is the aggregate what are the home (1st leg)? ### Answer: SELECT home__1st_leg_ FROM table_14219514_2 WHERE aggregate = "0-1"
When belgrano is the home (1st leg) what is the home (2nd leg)?
CREATE TABLE table_14219514_2 (home__2nd_leg_ VARCHAR, home__1st_leg_ VARCHAR)
SELECT home__2nd_leg_ FROM table_14219514_2 WHERE home__1st_leg_ = "Belgrano"
### Context: CREATE TABLE table_14219514_2 (home__2nd_leg_ VARCHAR, home__1st_leg_ VARCHAR) ### Question: When belgrano is the home (1st leg) what is the home (2nd leg)? ### Answer: SELECT home__2nd_leg_ FROM table_14219514_2 WHERE home__1st_leg_ = "Belgrano"
When platense is the home (2nd leg) what is the 2nd leg?
CREATE TABLE table_14219514_2 (home__2nd_leg_ VARCHAR)
SELECT 2 AS nd_leg FROM table_14219514_2 WHERE home__2nd_leg_ = "Platense"
### Context: CREATE TABLE table_14219514_2 (home__2nd_leg_ VARCHAR) ### Question: When platense is the home (2nd leg) what is the 2nd leg? ### Answer: SELECT 2 AS nd_leg FROM table_14219514_2 WHERE home__2nd_leg_ = "Platense"
When altos hornos zapla is the home (1st leg) what is overall amount of 1st leg?
CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR)
SELECT COUNT(1 AS st_leg) FROM table_14219514_2 WHERE home__1st_leg_ = "Altos Hornos Zapla"
### Context: CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR) ### Question: When altos hornos zapla is the home (1st leg) what is overall amount of 1st leg? ### Answer: SELECT COUNT(1 AS st_leg) FROM table_14219514_2 WHERE home__1st_leg_ = "Altos Hornos Zapla"
When temperley is the home (2nd leg) what is the home (1st leg)?
CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR, home__2nd_leg_ VARCHAR)
SELECT home__1st_leg_ FROM table_14219514_2 WHERE home__2nd_leg_ = "Temperley"
### Context: CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR, home__2nd_leg_ VARCHAR) ### Question: When temperley is the home (2nd leg) what is the home (1st leg)? ### Answer: SELECT home__1st_leg_ FROM table_14219514_2 WHERE home__2nd_leg_ = "Temperley"
How many 2nd legs had an aggregate of 2-4?
CREATE TABLE table_14219514_1 (aggregate VARCHAR)
SELECT COUNT(2 AS nd_leg) FROM table_14219514_1 WHERE aggregate = "2-4"
### Context: CREATE TABLE table_14219514_1 (aggregate VARCHAR) ### Question: How many 2nd legs had an aggregate of 2-4? ### Answer: SELECT COUNT(2 AS nd_leg) FROM table_14219514_1 WHERE aggregate = "2-4"
How many 2nd legs are there where home (1st leg) is Independiente?
CREATE TABLE table_14219514_1 (home__1st_leg_ VARCHAR)
SELECT 2 AS nd_leg FROM table_14219514_1 WHERE home__1st_leg_ = "Independiente"
### Context: CREATE TABLE table_14219514_1 (home__1st_leg_ VARCHAR) ### Question: How many 2nd legs are there where home (1st leg) is Independiente? ### Answer: SELECT 2 AS nd_leg FROM table_14219514_1 WHERE home__1st_leg_ = "Independiente"
Who was in home (2nd leg) when Talleres was in home (1st leg)
CREATE TABLE table_14219514_1 (home__2nd_leg_ VARCHAR, home__1st_leg_ VARCHAR)
SELECT home__2nd_leg_ FROM table_14219514_1 WHERE home__1st_leg_ = "Talleres"
### Context: CREATE TABLE table_14219514_1 (home__2nd_leg_ VARCHAR, home__1st_leg_ VARCHAR) ### Question: Who was in home (2nd leg) when Talleres was in home (1st leg) ### Answer: SELECT home__2nd_leg_ FROM table_14219514_1 WHERE home__1st_leg_ = "Talleres"
Who was in 2nd leg when Boca Juniors was in home (1st leg)?
CREATE TABLE table_14219514_1 (home__1st_leg_ VARCHAR)
SELECT 2 AS nd_leg FROM table_14219514_1 WHERE home__1st_leg_ = "Boca Juniors"
### Context: CREATE TABLE table_14219514_1 (home__1st_leg_ VARCHAR) ### Question: Who was in 2nd leg when Boca Juniors was in home (1st leg)? ### Answer: SELECT 2 AS nd_leg FROM table_14219514_1 WHERE home__1st_leg_ = "Boca Juniors"
Name the playoffs for 2nd round open cup
CREATE TABLE table_14240688_1 (playoffs VARCHAR, open_cup VARCHAR)
SELECT playoffs FROM table_14240688_1 WHERE open_cup = "2nd Round"
### Context: CREATE TABLE table_14240688_1 (playoffs VARCHAR, open_cup VARCHAR) ### Question: Name the playoffs for 2nd round open cup ### Answer: SELECT playoffs FROM table_14240688_1 WHERE open_cup = "2nd Round"
What was the regular season standings for the year when the playoffs reached the conference semifinals and the team did not qualify for the US Open Cup?
CREATE TABLE table_14225409_1 (reg_season VARCHAR, playoffs VARCHAR, us_open_cup VARCHAR)
SELECT reg_season FROM table_14225409_1 WHERE playoffs = "Conference Semifinals" AND us_open_cup = "Did not qualify"
### Context: CREATE TABLE table_14225409_1 (reg_season VARCHAR, playoffs VARCHAR, us_open_cup VARCHAR) ### Question: What was the regular season standings for the year when the playoffs reached the conference semifinals and the team did not qualify for the US Open Cup? ### Answer: SELECT reg_season FROM table_14225409_...
Name the population in 1931 for lubelskie
CREATE TABLE table_14245_3 (population__1931__in_1 VARCHAR, voivodeship_or_city VARCHAR)
SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE voivodeship_or_city = "lubelskie"
### Context: CREATE TABLE table_14245_3 (population__1931__in_1 VARCHAR, voivodeship_or_city VARCHAR) ### Question: Name the population in 1931 for lubelskie ### Answer: SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE voivodeship_or_city = "lubelskie"
Name the population when the capital is tarnopol
CREATE TABLE table_14245_3 (population__1931__in_1 VARCHAR, capital VARCHAR)
SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE capital = "Tarnopol"
### Context: CREATE TABLE table_14245_3 (population__1931__in_1 VARCHAR, capital VARCHAR) ### Question: Name the population when the capital is tarnopol ### Answer: SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE capital = "Tarnopol"
Name the most bits 14-12 for output from accumulator to character bus
CREATE TABLE table_14249278_1 (bits_14_12 INTEGER, description VARCHAR)
SELECT MIN(bits_14_12) FROM table_14249278_1 WHERE description = "Output from accumulator to character bus"
### Context: CREATE TABLE table_14249278_1 (bits_14_12 INTEGER, description VARCHAR) ### Question: Name the most bits 14-12 for output from accumulator to character bus ### Answer: SELECT MIN(bits_14_12) FROM table_14249278_1 WHERE description = "Output from accumulator to character bus"
what is smallest number in fleet for chassis manufacturer Scania and fleet numbers is 3230?
CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_manufacturer VARCHAR, fleet_numbers VARCHAR)
SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_manufacturer = "Scania" AND fleet_numbers = "3230"
### Context: CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_manufacturer VARCHAR, fleet_numbers VARCHAR) ### Question: what is smallest number in fleet for chassis manufacturer Scania and fleet numbers is 3230? ### Answer: SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_manufacturer = "Sc...
Which chassis manufacturer is for fleet numbers range 2530-2558
CREATE TABLE table_1425948_1 (chassis_manufacturer VARCHAR, fleet_numbers VARCHAR)
SELECT chassis_manufacturer FROM table_1425948_1 WHERE fleet_numbers = "2530-2558"
### Context: CREATE TABLE table_1425948_1 (chassis_manufacturer VARCHAR, fleet_numbers VARCHAR) ### Question: Which chassis manufacturer is for fleet numbers range 2530-2558 ### Answer: SELECT chassis_manufacturer FROM table_1425948_1 WHERE fleet_numbers = "2530-2558"
Chassis model Scania K360ua has what minimum number in fleet?
CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_model VARCHAR)
SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_model = "Scania K360UA"
### Context: CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_model VARCHAR) ### Question: Chassis model Scania K360ua has what minimum number in fleet? ### Answer: SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_model = "Scania K360UA"
Name the channels when designation is pc700
CREATE TABLE table_142573_1 (channels VARCHAR, designation VARCHAR)
SELECT channels FROM table_142573_1 WHERE designation = "PC700"
### Context: CREATE TABLE table_142573_1 (channels VARCHAR, designation VARCHAR) ### Question: Name the channels when designation is pc700 ### Answer: SELECT channels FROM table_142573_1 WHERE designation = "PC700"
Name the maximum clock rate mhz
CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER)
SELECT MAX(clock_rate__mhz_) FROM table_142573_1
### Context: CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER) ### Question: Name the maximum clock rate mhz ### Answer: SELECT MAX(clock_rate__mhz_) FROM table_142573_1
Name the bus width bits when bandwidth mb/s is 3200
CREATE TABLE table_142573_1 (bus_width__bits_ VARCHAR, bandwidth__mb_s_ VARCHAR)
SELECT bus_width__bits_ FROM table_142573_1 WHERE bandwidth__mb_s_ = 3200
### Context: CREATE TABLE table_142573_1 (bus_width__bits_ VARCHAR, bandwidth__mb_s_ VARCHAR) ### Question: Name the bus width bits when bandwidth mb/s is 3200 ### Answer: SELECT bus_width__bits_ FROM table_142573_1 WHERE bandwidth__mb_s_ = 3200
Name the least clock rate mhz
CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER)
SELECT MIN(clock_rate__mhz_) FROM table_142573_1
### Context: CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER) ### Question: Name the least clock rate mhz ### Answer: SELECT MIN(clock_rate__mhz_) FROM table_142573_1
Name the least clock rate mhz when designation is rimm 4200
CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER, designation VARCHAR)
SELECT MIN(clock_rate__mhz_) FROM table_142573_1 WHERE designation = "RIMM 4200"
### Context: CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER, designation VARCHAR) ### Question: Name the least clock rate mhz when designation is rimm 4200 ### Answer: SELECT MIN(clock_rate__mhz_) FROM table_142573_1 WHERE designation = "RIMM 4200"
Name the number of clock rate mhz when bandwidth mb/s is 2400
CREATE TABLE table_142573_1 (clock_rate__mhz_ VARCHAR, bandwidth__mb_s_ VARCHAR)
SELECT COUNT(clock_rate__mhz_) FROM table_142573_1 WHERE bandwidth__mb_s_ = 2400
### Context: CREATE TABLE table_142573_1 (clock_rate__mhz_ VARCHAR, bandwidth__mb_s_ VARCHAR) ### Question: Name the number of clock rate mhz when bandwidth mb/s is 2400 ### Answer: SELECT COUNT(clock_rate__mhz_) FROM table_142573_1 WHERE bandwidth__mb_s_ = 2400
Which elementary schools list Cort Monroe as the principal from 2013 to 2014?
CREATE TABLE table_14254419_3 (elementary_schools VARCHAR, principal__2013_2014_ VARCHAR)
SELECT elementary_schools FROM table_14254419_3 WHERE principal__2013_2014_ = "Cort Monroe"
### Context: CREATE TABLE table_14254419_3 (elementary_schools VARCHAR, principal__2013_2014_ VARCHAR) ### Question: Which elementary schools list Cort Monroe as the principal from 2013 to 2014? ### Answer: SELECT elementary_schools FROM table_14254419_3 WHERE principal__2013_2014_ = "Cort Monroe"
Who are all the assistant principals that served from 2013-2014 under the principal Cort Monroe?
CREATE TABLE table_14254419_3 (Assistant VARCHAR, principal__2013_2014_ VARCHAR)
SELECT Assistant AS principal__2013_2014_ FROM table_14254419_3 WHERE principal__2013_2014_ = "Cort Monroe"
### Context: CREATE TABLE table_14254419_3 (Assistant VARCHAR, principal__2013_2014_ VARCHAR) ### Question: Who are all the assistant principals that served from 2013-2014 under the principal Cort Monroe? ### Answer: SELECT Assistant AS principal__2013_2014_ FROM table_14254419_3 WHERE principal__2013_2014_ = "Cort Mon...
Who played in the series that resulted in matches with the following scores: 0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5?
CREATE TABLE table_14263158_3 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_14263158_3 WHERE result = "0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5"
### Context: CREATE TABLE table_14263158_3 (opponent VARCHAR, result VARCHAR) ### Question: Who played in the series that resulted in matches with the following scores: 0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5? ### Answer: SELECT opponent FROM table_14263158_3 WHERE result = "0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5"
Where was there a change of 6.5%?
CREATE TABLE table_1425958_1 (name VARCHAR, _percentage_change VARCHAR)
SELECT name FROM table_1425958_1 WHERE _percentage_change = "6.5"
### Context: CREATE TABLE table_1425958_1 (name VARCHAR, _percentage_change VARCHAR) ### Question: Where was there a change of 6.5%? ### Answer: SELECT name FROM table_1425958_1 WHERE _percentage_change = "6.5"
When the change is 8.8%, what is the density (pop/km²)?
CREATE TABLE table_1425958_1 (density__pop_km²_ VARCHAR, _percentage_change VARCHAR)
SELECT density__pop_km²_ FROM table_1425958_1 WHERE _percentage_change = "8.8"
### Context: CREATE TABLE table_1425958_1 (density__pop_km²_ VARCHAR, _percentage_change VARCHAR) ### Question: When the change is 8.8%, what is the density (pop/km²)? ### Answer: SELECT density__pop_km²_ FROM table_1425958_1 WHERE _percentage_change = "8.8"
How many locations had a density (pop/km²) of 91.8 in the 2011 census?
CREATE TABLE table_1425958_1 (density__pop_km²_ VARCHAR)
SELECT COUNT(2011 AS _census) FROM table_1425958_1 WHERE density__pop_km²_ = "91.8"
### Context: CREATE TABLE table_1425958_1 (density__pop_km²_ VARCHAR) ### Question: How many locations had a density (pop/km²) of 91.8 in the 2011 census? ### Answer: SELECT COUNT(2011 AS _census) FROM table_1425958_1 WHERE density__pop_km²_ = "91.8"
When the % change is 8.4, what is the population rank?
CREATE TABLE table_1425958_1 (population_rank INTEGER, _percentage_change VARCHAR)
SELECT MIN(population_rank) FROM table_1425958_1 WHERE _percentage_change = "8.4"
### Context: CREATE TABLE table_1425958_1 (population_rank INTEGER, _percentage_change VARCHAR) ### Question: When the % change is 8.4, what is the population rank? ### Answer: SELECT MIN(population_rank) FROM table_1425958_1 WHERE _percentage_change = "8.4"
When the population rank is 34, what the is % change?
CREATE TABLE table_1425958_1 (_percentage_change VARCHAR, population_rank VARCHAR)
SELECT _percentage_change FROM table_1425958_1 WHERE population_rank = 34
### Context: CREATE TABLE table_1425958_1 (_percentage_change VARCHAR, population_rank VARCHAR) ### Question: When the population rank is 34, what the is % change? ### Answer: SELECT _percentage_change FROM table_1425958_1 WHERE population_rank = 34
How many teams scored exactly 38 points
CREATE TABLE table_14288212_1 (team VARCHAR, points_for VARCHAR)
SELECT COUNT(team) FROM table_14288212_1 WHERE points_for = 38
### Context: CREATE TABLE table_14288212_1 (team VARCHAR, points_for VARCHAR) ### Question: How many teams scored exactly 38 points ### Answer: SELECT COUNT(team) FROM table_14288212_1 WHERE points_for = 38
In what year did Italy begin playing?
CREATE TABLE table_14288212_1 (first_played INTEGER, team VARCHAR)
SELECT MIN(first_played) FROM table_14288212_1 WHERE team = "Italy"
### Context: CREATE TABLE table_14288212_1 (first_played INTEGER, team VARCHAR) ### Question: In what year did Italy begin playing? ### Answer: SELECT MIN(first_played) FROM table_14288212_1 WHERE team = "Italy"
For teams that played 5 games, what was the smallest number of wins?
CREATE TABLE table_14288212_1 (win INTEGER, played VARCHAR)
SELECT MIN(win) FROM table_14288212_1 WHERE played = 5
### Context: CREATE TABLE table_14288212_1 (win INTEGER, played VARCHAR) ### Question: For teams that played 5 games, what was the smallest number of wins? ### Answer: SELECT MIN(win) FROM table_14288212_1 WHERE played = 5
How many games did the team that began in 2011 and scored 36 points play?
CREATE TABLE table_14288212_1 (played VARCHAR, first_played VARCHAR, points_for VARCHAR)
SELECT COUNT(played) FROM table_14288212_1 WHERE first_played = 2011 AND points_for = 36
### Context: CREATE TABLE table_14288212_1 (played VARCHAR, first_played VARCHAR, points_for VARCHAR) ### Question: How many games did the team that began in 2011 and scored 36 points play? ### Answer: SELECT COUNT(played) FROM table_14288212_1 WHERE first_played = 2011 AND points_for = 36
What are all the run times with 8.2 million viewers?
CREATE TABLE table_1429629_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)
SELECT run_time FROM table_1429629_1 WHERE viewers__in_millions_ = "8.2"
### Context: CREATE TABLE table_1429629_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR) ### Question: What are all the run times with 8.2 million viewers? ### Answer: SELECT run_time FROM table_1429629_1 WHERE viewers__in_millions_ = "8.2"
What are all the episodes with an episode run time of 24:01?
CREATE TABLE table_1429629_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_1429629_1 WHERE run_time = "24:01"
### Context: CREATE TABLE table_1429629_1 (episode VARCHAR, run_time VARCHAR) ### Question: What are all the episodes with an episode run time of 24:01? ### Answer: SELECT episode FROM table_1429629_1 WHERE run_time = "24:01"
How many episodes had a broadcast date and run time of 24:43?
CREATE TABLE table_1429629_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT COUNT(broadcast_date) FROM table_1429629_1 WHERE run_time = "24:43"
### Context: CREATE TABLE table_1429629_1 (broadcast_date VARCHAR, run_time VARCHAR) ### Question: How many episodes had a broadcast date and run time of 24:43? ### Answer: SELECT COUNT(broadcast_date) FROM table_1429629_1 WHERE run_time = "24:43"
How many members gained university status in 1900?
CREATE TABLE table_142950_1 (research_funding__ VARCHAR, gained_university_status VARCHAR)
SELECT COUNT(research_funding__) AS £, 000 AS _ FROM table_142950_1 WHERE gained_university_status = 1900
### Context: CREATE TABLE table_142950_1 (research_funding__ VARCHAR, gained_university_status VARCHAR) ### Question: How many members gained university status in 1900? ### Answer: SELECT COUNT(research_funding__) AS £, 000 AS _ FROM table_142950_1 WHERE gained_university_status = 1900
What is the largest number of students?
CREATE TABLE table_142950_1 (total_number_of_students INTEGER)
SELECT MAX(total_number_of_students) FROM table_142950_1
### Context: CREATE TABLE table_142950_1 (total_number_of_students INTEGER) ### Question: What is the largest number of students? ### Answer: SELECT MAX(total_number_of_students) FROM table_142950_1
How many members have professor edward acton as vice-chancellor?
CREATE TABLE table_142950_1 (total_number_of_students VARCHAR, vice_chancellor VARCHAR)
SELECT COUNT(total_number_of_students) FROM table_142950_1 WHERE vice_chancellor = "Professor Edward Acton"
### Context: CREATE TABLE table_142950_1 (total_number_of_students VARCHAR, vice_chancellor VARCHAR) ### Question: How many members have professor edward acton as vice-chancellor? ### Answer: SELECT COUNT(total_number_of_students) FROM table_142950_1 WHERE vice_chancellor = "Professor Edward Acton"
What is the year leicester was established?
CREATE TABLE table_142950_1 (established INTEGER, location VARCHAR)
SELECT MAX(established) FROM table_142950_1 WHERE location = "Leicester"
### Context: CREATE TABLE table_142950_1 (established INTEGER, location VARCHAR) ### Question: What is the year leicester was established? ### Answer: SELECT MAX(established) FROM table_142950_1 WHERE location = "Leicester"
which country has miss universe Hungary as former pageant?
CREATE TABLE table_14308895_2 (country_territory VARCHAR, former_pageant VARCHAR)
SELECT country_territory FROM table_14308895_2 WHERE former_pageant = "Miss Universe Hungary"
### Context: CREATE TABLE table_14308895_2 (country_territory VARCHAR, former_pageant VARCHAR) ### Question: which country has miss universe Hungary as former pageant? ### Answer: SELECT country_territory FROM table_14308895_2 WHERE former_pageant = "Miss Universe Hungary"
which is the former pageant in the country where the new pageant is miss bahamas?
CREATE TABLE table_14308895_2 (former_pageant VARCHAR, new_pageant VARCHAR)
SELECT former_pageant FROM table_14308895_2 WHERE new_pageant = "Miss Bahamas"
### Context: CREATE TABLE table_14308895_2 (former_pageant VARCHAR, new_pageant VARCHAR) ### Question: which is the former pageant in the country where the new pageant is miss bahamas? ### Answer: SELECT former_pageant FROM table_14308895_2 WHERE new_pageant = "Miss Bahamas"
when did new zealand last compete?
CREATE TABLE table_14308895_2 (last_competed INTEGER, country_territory VARCHAR)
SELECT MAX(last_competed) FROM table_14308895_2 WHERE country_territory = "New Zealand"
### Context: CREATE TABLE table_14308895_2 (last_competed INTEGER, country_territory VARCHAR) ### Question: when did new zealand last compete? ### Answer: SELECT MAX(last_competed) FROM table_14308895_2 WHERE country_territory = "New Zealand"
How many new pageants does Aruba have?
CREATE TABLE table_14308895_2 (new_pageant VARCHAR, country_territory VARCHAR)
SELECT COUNT(new_pageant) FROM table_14308895_2 WHERE country_territory = "Aruba"
### Context: CREATE TABLE table_14308895_2 (new_pageant VARCHAR, country_territory VARCHAR) ### Question: How many new pageants does Aruba have? ### Answer: SELECT COUNT(new_pageant) FROM table_14308895_2 WHERE country_territory = "Aruba"
which is the new pageant from spain?
CREATE TABLE table_14308895_2 (new_pageant VARCHAR, country_territory VARCHAR)
SELECT new_pageant FROM table_14308895_2 WHERE country_territory = "Spain"
### Context: CREATE TABLE table_14308895_2 (new_pageant VARCHAR, country_territory VARCHAR) ### Question: which is the new pageant from spain? ### Answer: SELECT new_pageant FROM table_14308895_2 WHERE country_territory = "Spain"
Who was the away team when Carlton was the home team?
CREATE TABLE table_14312471_1 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_14312471_1 WHERE home_team = "Carlton"
### Context: CREATE TABLE table_14312471_1 (away_team VARCHAR, home_team VARCHAR) ### Question: Who was the away team when Carlton was the home team? ### Answer: SELECT away_team FROM table_14312471_1 WHERE home_team = "Carlton"
what is the number of teams where conmebol 1996 did not qualify?
CREATE TABLE table_14310205_1 (team VARCHAR, conmebol_1996 VARCHAR)
SELECT COUNT(team) FROM table_14310205_1 WHERE conmebol_1996 = "did not qualify"
### Context: CREATE TABLE table_14310205_1 (team VARCHAR, conmebol_1996 VARCHAR) ### Question: what is the number of teams where conmebol 1996 did not qualify? ### Answer: SELECT COUNT(team) FROM table_14310205_1 WHERE conmebol_1996 = "did not qualify"
what is the racing club where copa libertadores 1997?
CREATE TABLE table_14310205_1 (copa_libertadores_1997 VARCHAR, team VARCHAR)
SELECT copa_libertadores_1997 FROM table_14310205_1 WHERE team = "Racing Club"
### Context: CREATE TABLE table_14310205_1 (copa_libertadores_1997 VARCHAR, team VARCHAR) ### Question: what is the racing club where copa libertadores 1997? ### Answer: SELECT copa_libertadores_1997 FROM table_14310205_1 WHERE team = "Racing Club"
what is th copa libertadores 1997 is qf?
CREATE TABLE table_14310205_1 (copa_libertadores_1997 VARCHAR, supercopa_1996 VARCHAR)
SELECT copa_libertadores_1997 FROM table_14310205_1 WHERE supercopa_1996 = "QF"
### Context: CREATE TABLE table_14310205_1 (copa_libertadores_1997 VARCHAR, supercopa_1996 VARCHAR) ### Question: what is th copa libertadores 1997 is qf? ### Answer: SELECT copa_libertadores_1997 FROM table_14310205_1 WHERE supercopa_1996 = "QF"
What's the maximum crowd when scg is the ground?
CREATE TABLE table_14312471_4 (crowd INTEGER, ground VARCHAR)
SELECT MAX(crowd) FROM table_14312471_4 WHERE ground = "SCG"
### Context: CREATE TABLE table_14312471_4 (crowd INTEGER, ground VARCHAR) ### Question: What's the maximum crowd when scg is the ground? ### Answer: SELECT MAX(crowd) FROM table_14312471_4 WHERE ground = "SCG"
What are the ground where the crowd totals 19929?
CREATE TABLE table_14312471_4 (ground VARCHAR, crowd VARCHAR)
SELECT ground FROM table_14312471_4 WHERE crowd = 19929
### Context: CREATE TABLE table_14312471_4 (ground VARCHAR, crowd VARCHAR) ### Question: What are the ground where the crowd totals 19929? ### Answer: SELECT ground FROM table_14312471_4 WHERE crowd = 19929
Name the home team for manuka oval
CREATE TABLE table_14312471_3 (home_team VARCHAR, ground VARCHAR)
SELECT home_team FROM table_14312471_3 WHERE ground = "Manuka Oval"
### Context: CREATE TABLE table_14312471_3 (home_team VARCHAR, ground VARCHAR) ### Question: Name the home team for manuka oval ### Answer: SELECT home_team FROM table_14312471_3 WHERE ground = "Manuka Oval"
Name the away team score for richmond
CREATE TABLE table_14312471_3 (away_team VARCHAR)
SELECT away_team AS score FROM table_14312471_3 WHERE away_team = "Richmond"
### Context: CREATE TABLE table_14312471_3 (away_team VARCHAR) ### Question: Name the away team score for richmond ### Answer: SELECT away_team AS score FROM table_14312471_3 WHERE away_team = "Richmond"
Who made the report when the home team is north Melbourne?
CREATE TABLE table_14312471_7 (report VARCHAR, home_team VARCHAR)
SELECT report FROM table_14312471_7 WHERE home_team = "North Melbourne"
### Context: CREATE TABLE table_14312471_7 (report VARCHAR, home_team VARCHAR) ### Question: Who made the report when the home team is north Melbourne? ### Answer: SELECT report FROM table_14312471_7 WHERE home_team = "North Melbourne"
Who played Richmond at home?
CREATE TABLE table_14312471_7 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_14312471_7 WHERE away_team = "Richmond"
### Context: CREATE TABLE table_14312471_7 (home_team VARCHAR, away_team VARCHAR) ### Question: Who played Richmond at home? ### Answer: SELECT home_team FROM table_14312471_7 WHERE away_team = "Richmond"
Who has the home ground Aami stadium?
CREATE TABLE table_14312471_7 (home_team VARCHAR, ground VARCHAR)
SELECT home_team FROM table_14312471_7 WHERE ground = "AAMI Stadium"
### Context: CREATE TABLE table_14312471_7 (home_team VARCHAR, ground VARCHAR) ### Question: Who has the home ground Aami stadium? ### Answer: SELECT home_team FROM table_14312471_7 WHERE ground = "AAMI Stadium"
Who were all candidate when incumbent was D. Wyatt Aiken?
CREATE TABLE table_1431467_4 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1431467_4 WHERE incumbent = "D. Wyatt Aiken"
### Context: CREATE TABLE table_1431467_4 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were all candidate when incumbent was D. Wyatt Aiken? ### Answer: SELECT candidates FROM table_1431467_4 WHERE incumbent = "D. Wyatt Aiken"
How many incumbents for the district of South Carolina 5?
CREATE TABLE table_1431467_4 (incumbent VARCHAR, district VARCHAR)
SELECT COUNT(incumbent) FROM table_1431467_4 WHERE district = "South Carolina 5"
### Context: CREATE TABLE table_1431467_4 (incumbent VARCHAR, district VARCHAR) ### Question: How many incumbents for the district of South Carolina 5? ### Answer: SELECT COUNT(incumbent) FROM table_1431467_4 WHERE district = "South Carolina 5"
Who was everyone first elected when incumbent was John J. Hemphill?
CREATE TABLE table_1431467_4 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1431467_4 WHERE incumbent = "John J. Hemphill"
### Context: CREATE TABLE table_1431467_4 (first_elected VARCHAR, incumbent VARCHAR) ### Question: Who was everyone first elected when incumbent was John J. Hemphill? ### Answer: SELECT first_elected FROM table_1431467_4 WHERE incumbent = "John J. Hemphill"
When the girls singles is lindaweni fanetri what is the mixed doubled?
CREATE TABLE table_14319023_2 (mixed_doubles VARCHAR, girls_singles VARCHAR)
SELECT mixed_doubles FROM table_14319023_2 WHERE girls_singles = "Lindaweni Fanetri"
### Context: CREATE TABLE table_14319023_2 (mixed_doubles VARCHAR, girls_singles VARCHAR) ### Question: When the girls singles is lindaweni fanetri what is the mixed doubled? ### Answer: SELECT mixed_doubles FROM table_14319023_2 WHERE girls_singles = "Lindaweni Fanetri"
When the girls doubles is ayu pratiwi anggi widia what is the boys doubles?
CREATE TABLE table_14319023_2 (boys_doubles VARCHAR, girls_doubles VARCHAR)
SELECT boys_doubles FROM table_14319023_2 WHERE girls_doubles = "Ayu Pratiwi Anggi Widia"
### Context: CREATE TABLE table_14319023_2 (boys_doubles VARCHAR, girls_doubles VARCHAR) ### Question: When the girls doubles is ayu pratiwi anggi widia what is the boys doubles? ### Answer: SELECT boys_doubles FROM table_14319023_2 WHERE girls_doubles = "Ayu Pratiwi Anggi Widia"
When mixed doubles is didit juang indrianto yayu rahayu what is the most current year?
CREATE TABLE table_14319023_2 (year INTEGER, mixed_doubles VARCHAR)
SELECT MAX(year) FROM table_14319023_2 WHERE mixed_doubles = "Didit Juang Indrianto Yayu Rahayu"
### Context: CREATE TABLE table_14319023_2 (year INTEGER, mixed_doubles VARCHAR) ### Question: When mixed doubles is didit juang indrianto yayu rahayu what is the most current year? ### Answer: SELECT MAX(year) FROM table_14319023_2 WHERE mixed_doubles = "Didit Juang Indrianto Yayu Rahayu"
When mixed doubles is danny bawa chrisnanta debby susanto what is the boys singles?
CREATE TABLE table_14319023_2 (boys_singles VARCHAR, mixed_doubles VARCHAR)
SELECT boys_singles FROM table_14319023_2 WHERE mixed_doubles = "Danny Bawa Chrisnanta Debby Susanto"
### Context: CREATE TABLE table_14319023_2 (boys_singles VARCHAR, mixed_doubles VARCHAR) ### Question: When mixed doubles is danny bawa chrisnanta debby susanto what is the boys singles? ### Answer: SELECT boys_singles FROM table_14319023_2 WHERE mixed_doubles = "Danny Bawa Chrisnanta Debby Susanto"
When girls doubles is anneke feinya agustin wenny setiawati what is the mixed doubles?
CREATE TABLE table_14319023_2 (mixed_doubles VARCHAR, girls_doubles VARCHAR)
SELECT mixed_doubles FROM table_14319023_2 WHERE girls_doubles = "Anneke Feinya Agustin Wenny Setiawati"
### Context: CREATE TABLE table_14319023_2 (mixed_doubles VARCHAR, girls_doubles VARCHAR) ### Question: When girls doubles is anneke feinya agustin wenny setiawati what is the mixed doubles? ### Answer: SELECT mixed_doubles FROM table_14319023_2 WHERE girls_doubles = "Anneke Feinya Agustin Wenny Setiawati"
Name the total number of publishers for flushed away
CREATE TABLE table_14325653_2 (publisher_s_ VARCHAR, video_game VARCHAR)
SELECT COUNT(publisher_s_) FROM table_14325653_2 WHERE video_game = "Flushed Away"
### Context: CREATE TABLE table_14325653_2 (publisher_s_ VARCHAR, video_game VARCHAR) ### Question: Name the total number of publishers for flushed away ### Answer: SELECT COUNT(publisher_s_) FROM table_14325653_2 WHERE video_game = "Flushed Away"
Name the publisher for resident evil 4
CREATE TABLE table_14325653_2 (publisher_s_ VARCHAR, video_game VARCHAR)
SELECT publisher_s_ FROM table_14325653_2 WHERE video_game = "Resident Evil 4"
### Context: CREATE TABLE table_14325653_2 (publisher_s_ VARCHAR, video_game VARCHAR) ### Question: Name the publisher for resident evil 4 ### Answer: SELECT publisher_s_ FROM table_14325653_2 WHERE video_game = "Resident Evil 4"
What is the highest total number?
CREATE TABLE table_14330096_4 (total_number INTEGER)
SELECT MAX(total_number) FROM table_14330096_4
### Context: CREATE TABLE table_14330096_4 (total_number INTEGER) ### Question: What is the highest total number? ### Answer: SELECT MAX(total_number) FROM table_14330096_4
How many of the episodes have Roger Goldby as the director?
CREATE TABLE table_14330096_4 (total_number VARCHAR, director VARCHAR)
SELECT total_number FROM table_14330096_4 WHERE director = "Roger Goldby"
### Context: CREATE TABLE table_14330096_4 (total_number VARCHAR, director VARCHAR) ### Question: How many of the episodes have Roger Goldby as the director? ### Answer: SELECT total_number FROM table_14330096_4 WHERE director = "Roger Goldby"
Which episodes have Patrick Lau as the director and Lisa Holdsworth as the writer?
CREATE TABLE table_14330096_4 (title VARCHAR, director VARCHAR, writer VARCHAR)
SELECT title FROM table_14330096_4 WHERE director = "Patrick Lau" AND writer = "Lisa Holdsworth"
### Context: CREATE TABLE table_14330096_4 (title VARCHAR, director VARCHAR, writer VARCHAR) ### Question: Which episodes have Patrick Lau as the director and Lisa Holdsworth as the writer? ### Answer: SELECT title FROM table_14330096_4 WHERE director = "Patrick Lau" AND writer = "Lisa Holdsworth"
What is the Closure date of Hunterston B
CREATE TABLE table_143352_1 (accounting_closure_date INTEGER, agr_power_station VARCHAR)
SELECT MIN(accounting_closure_date) FROM table_143352_1 WHERE agr_power_station = "Hunterston B"
### Context: CREATE TABLE table_143352_1 (accounting_closure_date INTEGER, agr_power_station VARCHAR) ### Question: What is the Closure date of Hunterston B ### Answer: SELECT MIN(accounting_closure_date) FROM table_143352_1 WHERE agr_power_station = "Hunterston B"
How many power stations are connected to grid at Heysham 2
CREATE TABLE table_143352_1 (connected_to_grid VARCHAR, agr_power_station VARCHAR)
SELECT COUNT(connected_to_grid) FROM table_143352_1 WHERE agr_power_station = "Heysham 2"
### Context: CREATE TABLE table_143352_1 (connected_to_grid VARCHAR, agr_power_station VARCHAR) ### Question: How many power stations are connected to grid at Heysham 2 ### Answer: SELECT COUNT(connected_to_grid) FROM table_143352_1 WHERE agr_power_station = "Heysham 2"
What year did construction start at Heysham 1
CREATE TABLE table_143352_1 (construction_started VARCHAR, agr_power_station VARCHAR)
SELECT construction_started FROM table_143352_1 WHERE agr_power_station = "Heysham 1"
### Context: CREATE TABLE table_143352_1 (construction_started VARCHAR, agr_power_station VARCHAR) ### Question: What year did construction start at Heysham 1 ### Answer: SELECT construction_started FROM table_143352_1 WHERE agr_power_station = "Heysham 1"
When did construction start on the Power station with a net MWE of 1190
CREATE TABLE table_143352_1 (construction_started INTEGER, net_mwe VARCHAR)
SELECT MIN(construction_started) FROM table_143352_1 WHERE net_mwe = 1190
### Context: CREATE TABLE table_143352_1 (construction_started INTEGER, net_mwe VARCHAR) ### Question: When did construction start on the Power station with a net MWE of 1190 ### Answer: SELECT MIN(construction_started) FROM table_143352_1 WHERE net_mwe = 1190
Name the most extra points for john heston
CREATE TABLE table_14341967_2 (extra_points INTEGER, player VARCHAR)
SELECT MAX(extra_points) FROM table_14341967_2 WHERE player = "John Heston"
### Context: CREATE TABLE table_14341967_2 (extra_points INTEGER, player VARCHAR) ### Question: Name the most extra points for john heston ### Answer: SELECT MAX(extra_points) FROM table_14341967_2 WHERE player = "John Heston"
Who scored the most points?
CREATE TABLE table_14342367_11 (points INTEGER)
SELECT MAX(points) FROM table_14342367_11
### Context: CREATE TABLE table_14342367_11 (points INTEGER) ### Question: Who scored the most points? ### Answer: SELECT MAX(points) FROM table_14342367_11
What position did Joe Maddock play?
CREATE TABLE table_14342367_11 (position VARCHAR, player VARCHAR)
SELECT position FROM table_14342367_11 WHERE player = "Joe Maddock"
### Context: CREATE TABLE table_14342367_11 (position VARCHAR, player VARCHAR) ### Question: What position did Joe Maddock play? ### Answer: SELECT position FROM table_14342367_11 WHERE player = "Joe Maddock"
How many extra points did Paul Jones score?
CREATE TABLE table_14342367_11 (extra_points VARCHAR, player VARCHAR)
SELECT COUNT(extra_points) FROM table_14342367_11 WHERE player = "Paul Jones"
### Context: CREATE TABLE table_14342367_11 (extra_points VARCHAR, player VARCHAR) ### Question: How many extra points did Paul Jones score? ### Answer: SELECT COUNT(extra_points) FROM table_14342367_11 WHERE player = "Paul Jones"
How many points did Albert Herrnstein make?
CREATE TABLE table_14342367_7 (points VARCHAR, player VARCHAR)
SELECT points FROM table_14342367_7 WHERE player = "Albert Herrnstein"
### Context: CREATE TABLE table_14342367_7 (points VARCHAR, player VARCHAR) ### Question: How many points did Albert Herrnstein make? ### Answer: SELECT points FROM table_14342367_7 WHERE player = "Albert Herrnstein"
What positions did Paul Jones play?
CREATE TABLE table_14342367_7 (position VARCHAR, player VARCHAR)
SELECT position FROM table_14342367_7 WHERE player = "Paul Jones"
### Context: CREATE TABLE table_14342367_7 (position VARCHAR, player VARCHAR) ### Question: What positions did Paul Jones play? ### Answer: SELECT position FROM table_14342367_7 WHERE player = "Paul Jones"
What is the least amount of field goals made by a player?
CREATE TABLE table_14342367_7 (field_goals INTEGER)
SELECT MIN(field_goals) FROM table_14342367_7
### Context: CREATE TABLE table_14342367_7 (field_goals INTEGER) ### Question: What is the least amount of field goals made by a player? ### Answer: SELECT MIN(field_goals) FROM table_14342367_7
How many extra points did Paul Dickey received
CREATE TABLE table_14342367_15 (extra_points_1_point INTEGER, player VARCHAR)
SELECT MAX(extra_points_1_point) FROM table_14342367_15 WHERE player = "Paul Dickey"
### Context: CREATE TABLE table_14342367_15 (extra_points_1_point INTEGER, player VARCHAR) ### Question: How many extra points did Paul Dickey received ### Answer: SELECT MAX(extra_points_1_point) FROM table_14342367_15 WHERE player = "Paul Dickey"
How many 5 points field goals is minimum
CREATE TABLE table_14342367_15 (field_goals__5_points_ INTEGER)
SELECT MIN(field_goals__5_points_) FROM table_14342367_15
### Context: CREATE TABLE table_14342367_15 (field_goals__5_points_ INTEGER) ### Question: How many 5 points field goals is minimum ### Answer: SELECT MIN(field_goals__5_points_) FROM table_14342367_15
How many player with total points of 75
CREATE TABLE table_14342367_15 (player VARCHAR, total_points VARCHAR)
SELECT COUNT(player) FROM table_14342367_15 WHERE total_points = 75
### Context: CREATE TABLE table_14342367_15 (player VARCHAR, total_points VARCHAR) ### Question: How many player with total points of 75 ### Answer: SELECT COUNT(player) FROM table_14342367_15 WHERE total_points = 75
Name the most field goals
CREATE TABLE table_14342480_5 (field_goals INTEGER)
SELECT MAX(field_goals) FROM table_14342480_5
### Context: CREATE TABLE table_14342480_5 (field_goals INTEGER) ### Question: Name the most field goals ### Answer: SELECT MAX(field_goals) FROM table_14342480_5
Name the number of points for right halfback and starter being yes
CREATE TABLE table_14342480_5 (points VARCHAR, position VARCHAR, starter VARCHAR)
SELECT COUNT(points) FROM table_14342480_5 WHERE position = "Right halfback" AND starter = "yes"
### Context: CREATE TABLE table_14342480_5 (points VARCHAR, position VARCHAR, starter VARCHAR) ### Question: Name the number of points for right halfback and starter being yes ### Answer: SELECT COUNT(points) FROM table_14342480_5 WHERE position = "Right halfback" AND starter = "yes"
Na,e the number of field goals for right tackle
CREATE TABLE table_14342480_5 (field_goals VARCHAR, position VARCHAR)
SELECT COUNT(field_goals) FROM table_14342480_5 WHERE position = "Right tackle"
### Context: CREATE TABLE table_14342480_5 (field_goals VARCHAR, position VARCHAR) ### Question: Na,e the number of field goals for right tackle ### Answer: SELECT COUNT(field_goals) FROM table_14342480_5 WHERE position = "Right tackle"
Name the most extra points for right halfback
CREATE TABLE table_14342480_5 (extra_points INTEGER, position VARCHAR)
SELECT MAX(extra_points) FROM table_14342480_5 WHERE position = "Right halfback"
### Context: CREATE TABLE table_14342480_5 (extra_points INTEGER, position VARCHAR) ### Question: Name the most extra points for right halfback ### Answer: SELECT MAX(extra_points) FROM table_14342480_5 WHERE position = "Right halfback"
What positions does Tom Hammond play?
CREATE TABLE table_14342592_3 (position VARCHAR, player VARCHAR)
SELECT position FROM table_14342592_3 WHERE player = "Tom Hammond"
### Context: CREATE TABLE table_14342592_3 (position VARCHAR, player VARCHAR) ### Question: What positions does Tom Hammond play? ### Answer: SELECT position FROM table_14342592_3 WHERE player = "Tom Hammond"
What positions does Hal Weeks play?
CREATE TABLE table_14342592_3 (position VARCHAR, player VARCHAR)
SELECT position FROM table_14342592_3 WHERE player = "Hal Weeks"
### Context: CREATE TABLE table_14342592_3 (position VARCHAR, player VARCHAR) ### Question: What positions does Hal Weeks play? ### Answer: SELECT position FROM table_14342592_3 WHERE player = "Hal Weeks"
How many points does Clark have?
CREATE TABLE table_14342592_3 (points VARCHAR, player VARCHAR)
SELECT points FROM table_14342592_3 WHERE player = "Clark"
### Context: CREATE TABLE table_14342592_3 (points VARCHAR, player VARCHAR) ### Question: How many points does Clark have? ### Answer: SELECT points FROM table_14342592_3 WHERE player = "Clark"
How many points did the player who was right guard score?
CREATE TABLE table_14342592_7 (points VARCHAR, position VARCHAR)
SELECT COUNT(points) FROM table_14342592_7 WHERE position = "Right guard"
### Context: CREATE TABLE table_14342592_7 (points VARCHAR, position VARCHAR) ### Question: How many points did the player who was right guard score? ### Answer: SELECT COUNT(points) FROM table_14342592_7 WHERE position = "Right guard"
Was there a starter when 3 touchdowns were scored?
CREATE TABLE table_14342592_7 (starter VARCHAR, touchdowns VARCHAR)
SELECT starter FROM table_14342592_7 WHERE touchdowns = 3
### Context: CREATE TABLE table_14342592_7 (starter VARCHAR, touchdowns VARCHAR) ### Question: Was there a starter when 3 touchdowns were scored? ### Answer: SELECT starter FROM table_14342592_7 WHERE touchdowns = 3
How many touchdowns were there when Heston was in play?
CREATE TABLE table_14342592_7 (touchdowns INTEGER, player VARCHAR)
SELECT MAX(touchdowns) FROM table_14342592_7 WHERE player = "Heston"
### Context: CREATE TABLE table_14342592_7 (touchdowns INTEGER, player VARCHAR) ### Question: How many touchdowns were there when Heston was in play? ### Answer: SELECT MAX(touchdowns) FROM table_14342592_7 WHERE player = "Heston"
How many maximum points were there when the left tackle was played and there were 5 extra points?
CREATE TABLE table_14342592_7 (points INTEGER, position VARCHAR, extra_points VARCHAR)
SELECT MAX(points) FROM table_14342592_7 WHERE position = "Left tackle" AND extra_points = 5
### Context: CREATE TABLE table_14342592_7 (points INTEGER, position VARCHAR, extra_points VARCHAR) ### Question: How many maximum points were there when the left tackle was played and there were 5 extra points? ### Answer: SELECT MAX(points) FROM table_14342592_7 WHERE position = "Left tackle" AND extra_points = 5