question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Who had the mountains classification when borut božič was the winner?
CREATE TABLE table_25655781_17 (mountains_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_25655781_17 WHERE winner = "Borut Božič"
### Context: CREATE TABLE table_25655781_17 (mountains_classification VARCHAR, winner VARCHAR) ### Question: Who had the mountains classification when borut božič was the winner? ### Answer: SELECT mountains_classification FROM table_25655781_17 WHERE winner = "Borut Božič"
What was the team classification where andré greipel was the winner and had the points classification?
CREATE TABLE table_25655781_17 (team_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)
SELECT team_classification FROM table_25655781_17 WHERE winner = "André Greipel" AND points_classification = "André Greipel"
### Context: CREATE TABLE table_25655781_17 (team_classification VARCHAR, winner VARCHAR, points_classification VARCHAR) ### Question: What was the team classification where andré greipel was the winner and had the points classification? ### Answer: SELECT team_classification FROM table_25655781_17 WHERE winner = "Andr...
How many stages are there?
CREATE TABLE table_25655781_17 (stage INTEGER)
SELECT MAX(stage) FROM table_25655781_17
### Context: CREATE TABLE table_25655781_17 (stage INTEGER) ### Question: How many stages are there? ### Answer: SELECT MAX(stage) FROM table_25655781_17
How many sprint classifications are there where marco frapporti is the winner?
CREATE TABLE table_25655781_17 (sprint_classification VARCHAR, winner VARCHAR)
SELECT COUNT(sprint_classification) FROM table_25655781_17 WHERE winner = "Marco Frapporti"
### Context: CREATE TABLE table_25655781_17 (sprint_classification VARCHAR, winner VARCHAR) ### Question: How many sprint classifications are there where marco frapporti is the winner? ### Answer: SELECT COUNT(sprint_classification) FROM table_25655781_17 WHERE winner = "Marco Frapporti"
Who was the second couple for the episode having an ITV1 ranking of 29?
CREATE TABLE table_25664518_3 (second_couple VARCHAR, itv1_weekly_ranking VARCHAR)
SELECT second_couple FROM table_25664518_3 WHERE itv1_weekly_ranking = 29
### Context: CREATE TABLE table_25664518_3 (second_couple VARCHAR, itv1_weekly_ranking VARCHAR) ### Question: Who was the second couple for the episode having an ITV1 ranking of 29? ### Answer: SELECT second_couple FROM table_25664518_3 WHERE itv1_weekly_ranking = 29
What is the maximum ITV1 weekly ranking?
CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER)
SELECT MAX(itv1_weekly_ranking) FROM table_25664518_3
### Context: CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER) ### Question: What is the maximum ITV1 weekly ranking? ### Answer: SELECT MAX(itv1_weekly_ranking) FROM table_25664518_3
What was the number of viewers for the episode having a fourth couple of Tony and Jamie?
CREATE TABLE table_25664518_3 (viewers__millions_ VARCHAR, fourth_couple VARCHAR)
SELECT viewers__millions_ FROM table_25664518_3 WHERE fourth_couple = "Tony and Jamie"
### Context: CREATE TABLE table_25664518_3 (viewers__millions_ VARCHAR, fourth_couple VARCHAR) ### Question: What was the number of viewers for the episode having a fourth couple of Tony and Jamie? ### Answer: SELECT viewers__millions_ FROM table_25664518_3 WHERE fourth_couple = "Tony and Jamie"
Who was the first couple in the episode having a fourth couple of Sammy and Nat?
CREATE TABLE table_25664518_3 (first_couple VARCHAR, fourth_couple VARCHAR)
SELECT first_couple FROM table_25664518_3 WHERE fourth_couple = "Sammy and Nat"
### Context: CREATE TABLE table_25664518_3 (first_couple VARCHAR, fourth_couple VARCHAR) ### Question: Who was the first couple in the episode having a fourth couple of Sammy and Nat? ### Answer: SELECT first_couple FROM table_25664518_3 WHERE fourth_couple = "Sammy and Nat"
What is the minimum ITV1 ranking for the episode having viewership of 5.42 million?
CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER, viewers__millions_ VARCHAR)
SELECT MIN(itv1_weekly_ranking) FROM table_25664518_3 WHERE viewers__millions_ = "5.42"
### Context: CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER, viewers__millions_ VARCHAR) ### Question: What is the minimum ITV1 ranking for the episode having viewership of 5.42 million? ### Answer: SELECT MIN(itv1_weekly_ranking) FROM table_25664518_3 WHERE viewers__millions_ = "5.42"
What episode number in the series was viewed by 13.66 million people in the U.S.?
CREATE TABLE table_25668962_1 (no_in_series INTEGER, us_viewers__million_ VARCHAR)
SELECT MAX(no_in_series) FROM table_25668962_1 WHERE us_viewers__million_ = "13.66"
### Context: CREATE TABLE table_25668962_1 (no_in_series INTEGER, us_viewers__million_ VARCHAR) ### Question: What episode number in the series was viewed by 13.66 million people in the U.S.? ### Answer: SELECT MAX(no_in_series) FROM table_25668962_1 WHERE us_viewers__million_ = "13.66"
How many million U.S. viewers watched the epiode with a production code of 1arc12?
CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT us_viewers__million_ FROM table_25668962_1 WHERE production_code = "1ARC12"
### Context: CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, production_code VARCHAR) ### Question: How many million U.S. viewers watched the epiode with a production code of 1arc12? ### Answer: SELECT us_viewers__million_ FROM table_25668962_1 WHERE production_code = "1ARC12"
How many million U.S. viewers watched the episode with a production code of 1arc03?
CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT us_viewers__million_ FROM table_25668962_1 WHERE production_code = "1ARC03"
### Context: CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, production_code VARCHAR) ### Question: How many million U.S. viewers watched the episode with a production code of 1arc03? ### Answer: SELECT us_viewers__million_ FROM table_25668962_1 WHERE production_code = "1ARC03"
How many million U.S. viewers watched episode number 6 in the series?
CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, no_in_series VARCHAR)
SELECT us_viewers__million_ FROM table_25668962_1 WHERE no_in_series = 6
### Context: CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, no_in_series VARCHAR) ### Question: How many million U.S. viewers watched episode number 6 in the series? ### Answer: SELECT us_viewers__million_ FROM table_25668962_1 WHERE no_in_series = 6
Who directed episode number 18 in the series?
CREATE TABLE table_25668962_1 (directed_by VARCHAR, no_in_series VARCHAR)
SELECT directed_by FROM table_25668962_1 WHERE no_in_series = 18
### Context: CREATE TABLE table_25668962_1 (directed_by VARCHAR, no_in_series VARCHAR) ### Question: Who directed episode number 18 in the series? ### Answer: SELECT directed_by FROM table_25668962_1 WHERE no_in_series = 18
Who were the 3rd couple that were viewed by 4.89 million viewers?
CREATE TABLE table_25664518_4 (viewers__millions_ VARCHAR)
SELECT 3 AS rd_couple FROM table_25664518_4 WHERE viewers__millions_ = "4.89"
### Context: CREATE TABLE table_25664518_4 (viewers__millions_ VARCHAR) ### Question: Who were the 3rd couple that were viewed by 4.89 million viewers? ### Answer: SELECT 3 AS rd_couple FROM table_25664518_4 WHERE viewers__millions_ = "4.89"
What location(s) did patrick mckenna lead the most laps?
CREATE TABLE table_25668203_2 (location VARCHAR, most_laps_led VARCHAR)
SELECT location FROM table_25668203_2 WHERE most_laps_led = "Patrick McKenna"
### Context: CREATE TABLE table_25668203_2 (location VARCHAR, most_laps_led VARCHAR) ### Question: What location(s) did patrick mckenna lead the most laps? ### Answer: SELECT location FROM table_25668203_2 WHERE most_laps_led = "Patrick McKenna"
How many races went for 10 rounds?
CREATE TABLE table_25668203_2 (fastest_lap VARCHAR, rnd VARCHAR)
SELECT COUNT(fastest_lap) FROM table_25668203_2 WHERE rnd = "10"
### Context: CREATE TABLE table_25668203_2 (fastest_lap VARCHAR, rnd VARCHAR) ### Question: How many races went for 10 rounds? ### Answer: SELECT COUNT(fastest_lap) FROM table_25668203_2 WHERE rnd = "10"
Who had the most laps led in monterey, california when scott rarick won the race?
CREATE TABLE table_25668203_2 (most_laps_led VARCHAR, location VARCHAR, winning_driver VARCHAR)
SELECT most_laps_led FROM table_25668203_2 WHERE location = "Monterey, California" AND winning_driver = "Scott Rarick"
### Context: CREATE TABLE table_25668203_2 (most_laps_led VARCHAR, location VARCHAR, winning_driver VARCHAR) ### Question: Who had the most laps led in monterey, california when scott rarick won the race? ### Answer: SELECT most_laps_led FROM table_25668203_2 WHERE location = "Monterey, California" AND winning_driver =...
What was the winning team when mikhail goikhberg was the winning driver?
CREATE TABLE table_25668203_2 (winning_team VARCHAR, winning_driver VARCHAR)
SELECT winning_team FROM table_25668203_2 WHERE winning_driver = "Mikhail Goikhberg"
### Context: CREATE TABLE table_25668203_2 (winning_team VARCHAR, winning_driver VARCHAR) ### Question: What was the winning team when mikhail goikhberg was the winning driver? ### Answer: SELECT winning_team FROM table_25668203_2 WHERE winning_driver = "Mikhail Goikhberg"
Who directed the episode with the production code 10?
CREATE TABLE table_25679312_2 (directed_by VARCHAR, prod_code VARCHAR)
SELECT directed_by FROM table_25679312_2 WHERE prod_code = 10
### Context: CREATE TABLE table_25679312_2 (directed_by VARCHAR, prod_code VARCHAR) ### Question: Who directed the episode with the production code 10? ### Answer: SELECT directed_by FROM table_25679312_2 WHERE prod_code = 10
Who wrote the episode with production code 2?
CREATE TABLE table_25679312_2 (written_by VARCHAR, prod_code VARCHAR)
SELECT written_by FROM table_25679312_2 WHERE prod_code = 2
### Context: CREATE TABLE table_25679312_2 (written_by VARCHAR, prod_code VARCHAR) ### Question: Who wrote the episode with production code 2? ### Answer: SELECT written_by FROM table_25679312_2 WHERE prod_code = 2
Who wrote the episode with production code 5?
CREATE TABLE table_25679312_2 (written_by VARCHAR, prod_code VARCHAR)
SELECT written_by FROM table_25679312_2 WHERE prod_code = 5
### Context: CREATE TABLE table_25679312_2 (written_by VARCHAR, prod_code VARCHAR) ### Question: Who wrote the episode with production code 5? ### Answer: SELECT written_by FROM table_25679312_2 WHERE prod_code = 5
Name the number of finishes for 15 entries 15 and l'esprit d'equipe
CREATE TABLE table_256862_1 (finish VARCHAR, entries VARCHAR, winning_yacht VARCHAR)
SELECT COUNT(finish) FROM table_256862_1 WHERE entries = "15" AND winning_yacht = "L'Esprit d'Equipe"
### Context: CREATE TABLE table_256862_1 (finish VARCHAR, entries VARCHAR, winning_yacht VARCHAR) ### Question: Name the number of finishes for 15 entries 15 and l'esprit d'equipe ### Answer: SELECT COUNT(finish) FROM table_256862_1 WHERE entries = "15" AND winning_yacht = "L'Esprit d'Equipe"
Name the most legs for steinlager 2
CREATE TABLE table_256862_1 (legs INTEGER, winning_yacht VARCHAR)
SELECT MAX(legs) FROM table_256862_1 WHERE winning_yacht = "Steinlager 2"
### Context: CREATE TABLE table_256862_1 (legs INTEGER, winning_yacht VARCHAR) ### Question: Name the most legs for steinlager 2 ### Answer: SELECT MAX(legs) FROM table_256862_1 WHERE winning_yacht = "Steinlager 2"
Name the wininng yacht for 14 entries
CREATE TABLE table_256862_1 (winning_yacht VARCHAR, entries VARCHAR)
SELECT winning_yacht FROM table_256862_1 WHERE entries = "14"
### Context: CREATE TABLE table_256862_1 (winning_yacht VARCHAR, entries VARCHAR) ### Question: Name the wininng yacht for 14 entries ### Answer: SELECT winning_yacht FROM table_256862_1 WHERE entries = "14"
What was the word for the episode that aired February 11?
CREATE TABLE table_25691838_2 (the_wørd VARCHAR, original_airdate VARCHAR)
SELECT the_wørd FROM table_25691838_2 WHERE original_airdate = "February 11"
### Context: CREATE TABLE table_25691838_2 (the_wørd VARCHAR, original_airdate VARCHAR) ### Question: What was the word for the episode that aired February 11? ### Answer: SELECT the_wørd FROM table_25691838_2 WHERE original_airdate = "February 11"
What was the introductory phrase for the episode with the production bode 6026?
CREATE TABLE table_25691838_2 (introductory_phrase VARCHAR, production_code VARCHAR)
SELECT introductory_phrase FROM table_25691838_2 WHERE production_code = 6026
### Context: CREATE TABLE table_25691838_2 (introductory_phrase VARCHAR, production_code VARCHAR) ### Question: What was the introductory phrase for the episode with the production bode 6026? ### Answer: SELECT introductory_phrase FROM table_25691838_2 WHERE production_code = 6026
What was the word on episode number 673?
CREATE TABLE table_25691838_2 (the_wørd VARCHAR, episode__number VARCHAR)
SELECT the_wørd FROM table_25691838_2 WHERE episode__number = 673
### Context: CREATE TABLE table_25691838_2 (the_wørd VARCHAR, episode__number VARCHAR) ### Question: What was the word on episode number 673? ### Answer: SELECT the_wørd FROM table_25691838_2 WHERE episode__number = 673
Who were the guests in the episode with production code 6021?
CREATE TABLE table_25691838_2 (guest VARCHAR, production_code VARCHAR)
SELECT guest FROM table_25691838_2 WHERE production_code = 6021
### Context: CREATE TABLE table_25691838_2 (guest VARCHAR, production_code VARCHAR) ### Question: Who were the guests in the episode with production code 6021? ### Answer: SELECT guest FROM table_25691838_2 WHERE production_code = 6021
Who were the guests on a show where the production code is 6152?
CREATE TABLE table_25691838_12 (guest VARCHAR, production_code VARCHAR)
SELECT guest FROM table_25691838_12 WHERE production_code = 6152
### Context: CREATE TABLE table_25691838_12 (guest VARCHAR, production_code VARCHAR) ### Question: Who were the guests on a show where the production code is 6152? ### Answer: SELECT guest FROM table_25691838_12 WHERE production_code = 6152
Who were the guests for the episode with an original airdate of december 07?
CREATE TABLE table_25691838_12 (guest VARCHAR, original_airdate VARCHAR)
SELECT guest FROM table_25691838_12 WHERE original_airdate = "December 07"
### Context: CREATE TABLE table_25691838_12 (guest VARCHAR, original_airdate VARCHAR) ### Question: Who were the guests for the episode with an original airdate of december 07? ### Answer: SELECT guest FROM table_25691838_12 WHERE original_airdate = "December 07"
What is "the wørd" when guests were daniel ellsberg , william wegman , julie taymor?
CREATE TABLE table_25691838_12 (the_wørd VARCHAR, guest VARCHAR)
SELECT the_wørd FROM table_25691838_12 WHERE guest = "Daniel Ellsberg , William Wegman , Julie Taymor"
### Context: CREATE TABLE table_25691838_12 (the_wørd VARCHAR, guest VARCHAR) ### Question: What is "the wørd" when guests were daniel ellsberg , william wegman , julie taymor? ### Answer: SELECT the_wørd FROM table_25691838_12 WHERE guest = "Daniel Ellsberg , William Wegman , Julie Taymor"
What is the production code of the episode with an original airdate of december 01?
CREATE TABLE table_25691838_12 (production_code VARCHAR, original_airdate VARCHAR)
SELECT production_code FROM table_25691838_12 WHERE original_airdate = "December 01"
### Context: CREATE TABLE table_25691838_12 (production_code VARCHAR, original_airdate VARCHAR) ### Question: What is the production code of the episode with an original airdate of december 01? ### Answer: SELECT production_code FROM table_25691838_12 WHERE original_airdate = "December 01"
What is the episode # when the guests were julie nixon eisenhower and david eisenhower?
CREATE TABLE table_25691838_12 (episode__number INTEGER, guest VARCHAR)
SELECT MIN(episode__number) FROM table_25691838_12 WHERE guest = "Julie Nixon Eisenhower and David Eisenhower"
### Context: CREATE TABLE table_25691838_12 (episode__number INTEGER, guest VARCHAR) ### Question: What is the episode # when the guests were julie nixon eisenhower and david eisenhower? ### Answer: SELECT MIN(episode__number) FROM table_25691838_12 WHERE guest = "Julie Nixon Eisenhower and David Eisenhower"
Who were the guests on the episode that first aired August 16?
CREATE TABLE table_25691838_8 (guest VARCHAR, original_airdate VARCHAR)
SELECT guest FROM table_25691838_8 WHERE original_airdate = "August 16"
### Context: CREATE TABLE table_25691838_8 (guest VARCHAR, original_airdate VARCHAR) ### Question: Who were the guests on the episode that first aired August 16? ### Answer: SELECT guest FROM table_25691838_8 WHERE original_airdate = "August 16"
What was the introductory phrase on the episode production code 6101?
CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, production_code VARCHAR)
SELECT introductory_phrase FROM table_25691838_8 WHERE production_code = 6101
### Context: CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, production_code VARCHAR) ### Question: What was the introductory phrase on the episode production code 6101? ### Answer: SELECT introductory_phrase FROM table_25691838_8 WHERE production_code = 6101
What was the smallest production code for August 11's original episode?
CREATE TABLE table_25691838_8 (production_code INTEGER, original_airdate VARCHAR)
SELECT MIN(production_code) FROM table_25691838_8 WHERE original_airdate = "August 11"
### Context: CREATE TABLE table_25691838_8 (production_code INTEGER, original_airdate VARCHAR) ### Question: What was the smallest production code for August 11's original episode? ### Answer: SELECT MIN(production_code) FROM table_25691838_8 WHERE original_airdate = "August 11"
How many introductory phrases were there on David Finkel's guest episode?
CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, guest VARCHAR)
SELECT COUNT(introductory_phrase) FROM table_25691838_8 WHERE guest = "David Finkel"
### Context: CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, guest VARCHAR) ### Question: How many introductory phrases were there on David Finkel's guest episode? ### Answer: SELECT COUNT(introductory_phrase) FROM table_25691838_8 WHERE guest = "David Finkel"
What was the minimum number of the episode that first aired August 11?
CREATE TABLE table_25691838_8 (episode__number INTEGER, original_airdate VARCHAR)
SELECT MIN(episode__number) FROM table_25691838_8 WHERE original_airdate = "August 11"
### Context: CREATE TABLE table_25691838_8 (episode__number INTEGER, original_airdate VARCHAR) ### Question: What was the minimum number of the episode that first aired August 11? ### Answer: SELECT MIN(episode__number) FROM table_25691838_8 WHERE original_airdate = "August 11"
What was the introductory phrase for episode 794?
CREATE TABLE table_25691838_11 (introductory_phrase VARCHAR, episode__number VARCHAR)
SELECT introductory_phrase FROM table_25691838_11 WHERE episode__number = 794
### Context: CREATE TABLE table_25691838_11 (introductory_phrase VARCHAR, episode__number VARCHAR) ### Question: What was the introductory phrase for episode 794? ### Answer: SELECT introductory_phrase FROM table_25691838_11 WHERE episode__number = 794
What date did the episode originally air on with salvatore giunta as a guest?
CREATE TABLE table_25691838_11 (original_airdate VARCHAR, guest VARCHAR)
SELECT original_airdate FROM table_25691838_11 WHERE guest = "Salvatore Giunta"
### Context: CREATE TABLE table_25691838_11 (original_airdate VARCHAR, guest VARCHAR) ### Question: What date did the episode originally air on with salvatore giunta as a guest? ### Answer: SELECT original_airdate FROM table_25691838_11 WHERE guest = "Salvatore Giunta"
How many production codes were there for the episode that aired on November 15?
CREATE TABLE table_25691838_11 (production_code VARCHAR, original_airdate VARCHAR)
SELECT COUNT(production_code) FROM table_25691838_11 WHERE original_airdate = "November 15"
### Context: CREATE TABLE table_25691838_11 (production_code VARCHAR, original_airdate VARCHAR) ### Question: How many production codes were there for the episode that aired on November 15? ### Answer: SELECT COUNT(production_code) FROM table_25691838_11 WHERE original_airdate = "November 15"
What was the cylinder size of this engine that was made with only 88 pieces?
CREATE TABLE table_25695027_1 (cylinder_size VARCHAR, number_built VARCHAR)
SELECT cylinder_size FROM table_25695027_1 WHERE number_built = "88"
### Context: CREATE TABLE table_25695027_1 (cylinder_size VARCHAR, number_built VARCHAR) ### Question: What was the cylinder size of this engine that was made with only 88 pieces? ### Answer: SELECT cylinder_size FROM table_25695027_1 WHERE number_built = "88"
What was the engine class that was built on 1906-08?
CREATE TABLE table_25695027_1 (class VARCHAR, years_built VARCHAR)
SELECT class FROM table_25695027_1 WHERE years_built = "1906-08"
### Context: CREATE TABLE table_25695027_1 (class VARCHAR, years_built VARCHAR) ### Question: What was the engine class that was built on 1906-08? ### Answer: SELECT class FROM table_25695027_1 WHERE years_built = "1906-08"
How many engines were built with a cylinder size of 20 ½” x 26”, firebox is belpaire and valve gear is from Stephenson?
CREATE TABLE table_25695027_1 (number_built VARCHAR, valve_gear VARCHAR, cylinder_size VARCHAR, firebox VARCHAR)
SELECT number_built FROM table_25695027_1 WHERE cylinder_size = "20 ½” x 26”" AND firebox = "Belpaire" AND valve_gear = "Stephenson"
### Context: CREATE TABLE table_25695027_1 (number_built VARCHAR, valve_gear VARCHAR, cylinder_size VARCHAR, firebox VARCHAR) ### Question: How many engines were built with a cylinder size of 20 ½” x 26”, firebox is belpaire and valve gear is from Stephenson? ### Answer: SELECT number_built FROM table_25695027_1 WHERE ...
This engine with a cylinder size of 20 ½” x 26” and a firebox of radial-stay was built when?
CREATE TABLE table_25695027_1 (years_built VARCHAR, cylinder_size VARCHAR, firebox VARCHAR)
SELECT years_built FROM table_25695027_1 WHERE cylinder_size = "20 ½” x 26”" AND firebox = "Radial-stay"
### Context: CREATE TABLE table_25695027_1 (years_built VARCHAR, cylinder_size VARCHAR, firebox VARCHAR) ### Question: This engine with a cylinder size of 20 ½” x 26” and a firebox of radial-stay was built when? ### Answer: SELECT years_built FROM table_25695027_1 WHERE cylinder_size = "20 ½” x 26”" AND firebox = "Radi...
How many types of valves were used on this engine that was built on 1902-05?
CREATE TABLE table_25695027_1 (valves VARCHAR, years_built VARCHAR)
SELECT COUNT(valves) FROM table_25695027_1 WHERE years_built = "1902-05"
### Context: CREATE TABLE table_25695027_1 (valves VARCHAR, years_built VARCHAR) ### Question: How many types of valves were used on this engine that was built on 1902-05? ### Answer: SELECT COUNT(valves) FROM table_25695027_1 WHERE years_built = "1902-05"
Name the agency for santa rosa avenue
CREATE TABLE table_25692955_1 (agency VARCHAR, south_west_terminal VARCHAR)
SELECT agency FROM table_25692955_1 WHERE south_west_terminal = "Santa Rosa Avenue"
### Context: CREATE TABLE table_25692955_1 (agency VARCHAR, south_west_terminal VARCHAR) ### Question: Name the agency for santa rosa avenue ### Answer: SELECT agency FROM table_25692955_1 WHERE south_west_terminal = "Santa Rosa Avenue"
Name the route number for rincon valley
CREATE TABLE table_25692955_1 (route_number VARCHAR, south_west_terminal VARCHAR)
SELECT route_number FROM table_25692955_1 WHERE south_west_terminal = "Rincon Valley"
### Context: CREATE TABLE table_25692955_1 (route_number VARCHAR, south_west_terminal VARCHAR) ### Question: Name the route number for rincon valley ### Answer: SELECT route_number FROM table_25692955_1 WHERE south_west_terminal = "Rincon Valley"
Name the route number for santa rosa avenue
CREATE TABLE table_25692955_1 (route_number VARCHAR, north_east_terminal VARCHAR)
SELECT route_number FROM table_25692955_1 WHERE north_east_terminal = "Santa Rosa Avenue"
### Context: CREATE TABLE table_25692955_1 (route_number VARCHAR, north_east_terminal VARCHAR) ### Question: Name the route number for santa rosa avenue ### Answer: SELECT route_number FROM table_25692955_1 WHERE north_east_terminal = "Santa Rosa Avenue"
What is the original air date of the episode "Another Happy Day"?
CREATE TABLE table_2570269_3 (original_air_date__uk_ VARCHAR, episode_title VARCHAR)
SELECT original_air_date__uk_ FROM table_2570269_3 WHERE episode_title = "Another Happy Day"
### Context: CREATE TABLE table_2570269_3 (original_air_date__uk_ VARCHAR, episode_title VARCHAR) ### Question: What is the original air date of the episode "Another Happy Day"? ### Answer: SELECT original_air_date__uk_ FROM table_2570269_3 WHERE episode_title = "Another Happy Day"
What is the title of the episode that aired on 13 august 1981?
CREATE TABLE table_2570269_3 (episode_title VARCHAR, original_air_date__uk_ VARCHAR)
SELECT episode_title FROM table_2570269_3 WHERE original_air_date__uk_ = "13 August 1981"
### Context: CREATE TABLE table_2570269_3 (episode_title VARCHAR, original_air_date__uk_ VARCHAR) ### Question: What is the title of the episode that aired on 13 august 1981? ### Answer: SELECT episode_title FROM table_2570269_3 WHERE original_air_date__uk_ = "13 August 1981"
What is the original air date of episode 3-02?
CREATE TABLE table_2570269_3 (original_air_date__uk_ VARCHAR, episode__number VARCHAR)
SELECT original_air_date__uk_ FROM table_2570269_3 WHERE episode__number = "3-02"
### Context: CREATE TABLE table_2570269_3 (original_air_date__uk_ VARCHAR, episode__number VARCHAR) ### Question: What is the original air date of episode 3-02? ### Answer: SELECT original_air_date__uk_ FROM table_2570269_3 WHERE episode__number = "3-02"
Who are the cast members of episode 3-04?
CREATE TABLE table_2570269_3 (cast VARCHAR, episode__number VARCHAR)
SELECT cast FROM table_2570269_3 WHERE episode__number = "3-04"
### Context: CREATE TABLE table_2570269_3 (cast VARCHAR, episode__number VARCHAR) ### Question: Who are the cast members of episode 3-04? ### Answer: SELECT cast FROM table_2570269_3 WHERE episode__number = "3-04"
What is the highest birth/2013 when the death/2012 is 14,1?
CREATE TABLE table_25703_1 (birth_2013 INTEGER, death_2012 VARCHAR)
SELECT MAX(birth_2013) FROM table_25703_1 WHERE death_2012 = "14,1"
### Context: CREATE TABLE table_25703_1 (birth_2013 INTEGER, death_2012 VARCHAR) ### Question: What is the highest birth/2013 when the death/2012 is 14,1? ### Answer: SELECT MAX(birth_2013) FROM table_25703_1 WHERE death_2012 = "14,1"
What is the highest death/2013 when the death/2012 is 12,7?
CREATE TABLE table_25703_1 (death_2013 INTEGER, death_2012 VARCHAR)
SELECT MAX(death_2013) FROM table_25703_1 WHERE death_2012 = "12,7"
### Context: CREATE TABLE table_25703_1 (death_2013 INTEGER, death_2012 VARCHAR) ### Question: What is the highest death/2013 when the death/2012 is 12,7? ### Answer: SELECT MAX(death_2013) FROM table_25703_1 WHERE death_2012 = "12,7"
What are the death/2012 number when death/2013 is 140 and January–September 2013 is Moscow Oblast?
CREATE TABLE table_25703_1 (death_2012 VARCHAR, death_2013 VARCHAR, january_september_2013 VARCHAR)
SELECT death_2012 FROM table_25703_1 WHERE death_2013 = 140 AND january_september_2013 = "Moscow Oblast"
### Context: CREATE TABLE table_25703_1 (death_2012 VARCHAR, death_2013 VARCHAR, january_september_2013 VARCHAR) ### Question: What are the death/2012 number when death/2013 is 140 and January–September 2013 is Moscow Oblast? ### Answer: SELECT death_2012 FROM table_25703_1 WHERE death_2013 = 140 AND january_september_...
How many figures for birth/2013 when January-September is Oryol Oblast?
CREATE TABLE table_25703_1 (birth_2013 VARCHAR, january_september_2013 VARCHAR)
SELECT COUNT(birth_2013) FROM table_25703_1 WHERE january_september_2013 = "Oryol Oblast"
### Context: CREATE TABLE table_25703_1 (birth_2013 VARCHAR, january_september_2013 VARCHAR) ### Question: How many figures for birth/2013 when January-September is Oryol Oblast? ### Answer: SELECT COUNT(birth_2013) FROM table_25703_1 WHERE january_september_2013 = "Oryol Oblast"
How many touchdowns did the player took which gained 25 points?
CREATE TABLE table_25711913_2 (touchdowns VARCHAR, points VARCHAR)
SELECT touchdowns FROM table_25711913_2 WHERE points = 25
### Context: CREATE TABLE table_25711913_2 (touchdowns VARCHAR, points VARCHAR) ### Question: How many touchdowns did the player took which gained 25 points? ### Answer: SELECT touchdowns FROM table_25711913_2 WHERE points = 25
How many maximum points did Curtis scored?
CREATE TABLE table_25711913_2 (points INTEGER, player VARCHAR)
SELECT MAX(points) FROM table_25711913_2 WHERE player = "Curtis"
### Context: CREATE TABLE table_25711913_2 (points INTEGER, player VARCHAR) ### Question: How many maximum points did Curtis scored? ### Answer: SELECT MAX(points) FROM table_25711913_2 WHERE player = "Curtis"
How many touchdowns did the left guard took?
CREATE TABLE table_25711913_2 (touchdowns INTEGER, position VARCHAR)
SELECT MAX(touchdowns) FROM table_25711913_2 WHERE position = "Left guard"
### Context: CREATE TABLE table_25711913_2 (touchdowns INTEGER, position VARCHAR) ### Question: How many touchdowns did the left guard took? ### Answer: SELECT MAX(touchdowns) FROM table_25711913_2 WHERE position = "Left guard"
How many numbers were recorded on the fields goals of the Left End player?
CREATE TABLE table_25711913_2 (field_goals VARCHAR, position VARCHAR)
SELECT COUNT(field_goals) FROM table_25711913_2 WHERE position = "Left end"
### Context: CREATE TABLE table_25711913_2 (field_goals VARCHAR, position VARCHAR) ### Question: How many numbers were recorded on the fields goals of the Left End player? ### Answer: SELECT COUNT(field_goals) FROM table_25711913_2 WHERE position = "Left end"
What was the minimum touchdowns of the Fullback player?
CREATE TABLE table_25711913_2 (touchdowns INTEGER, position VARCHAR)
SELECT MIN(touchdowns) FROM table_25711913_2 WHERE position = "Fullback"
### Context: CREATE TABLE table_25711913_2 (touchdowns INTEGER, position VARCHAR) ### Question: What was the minimum touchdowns of the Fullback player? ### Answer: SELECT MIN(touchdowns) FROM table_25711913_2 WHERE position = "Fullback"
How many touchdowns did the fullback score?
CREATE TABLE table_25711913_8 (touchdowns INTEGER, position VARCHAR)
SELECT MIN(touchdowns) FROM table_25711913_8 WHERE position = "Fullback"
### Context: CREATE TABLE table_25711913_8 (touchdowns INTEGER, position VARCHAR) ### Question: How many touchdowns did the fullback score? ### Answer: SELECT MIN(touchdowns) FROM table_25711913_8 WHERE position = "Fullback"
How many figures are provided for Weeks' field goals?
CREATE TABLE table_25711913_8 (field_goals VARCHAR, player VARCHAR)
SELECT COUNT(field_goals) FROM table_25711913_8 WHERE player = "Weeks"
### Context: CREATE TABLE table_25711913_8 (field_goals VARCHAR, player VARCHAR) ### Question: How many figures are provided for Weeks' field goals? ### Answer: SELECT COUNT(field_goals) FROM table_25711913_8 WHERE player = "Weeks"
What is the most points recorded for a right halfback?
CREATE TABLE table_25711913_8 (points INTEGER, position VARCHAR)
SELECT MAX(points) FROM table_25711913_8 WHERE position = "Right halfback"
### Context: CREATE TABLE table_25711913_8 (points INTEGER, position VARCHAR) ### Question: What is the most points recorded for a right halfback? ### Answer: SELECT MAX(points) FROM table_25711913_8 WHERE position = "Right halfback"
Was Magoffin a starting player?
CREATE TABLE table_25711913_8 (starter VARCHAR, player VARCHAR)
SELECT starter FROM table_25711913_8 WHERE player = "Magoffin"
### Context: CREATE TABLE table_25711913_8 (starter VARCHAR, player VARCHAR) ### Question: Was Magoffin a starting player? ### Answer: SELECT starter FROM table_25711913_8 WHERE player = "Magoffin"
Which player was at position left tackle?
CREATE TABLE table_25711913_8 (player VARCHAR, position VARCHAR)
SELECT player FROM table_25711913_8 WHERE position = "Left tackle"
### Context: CREATE TABLE table_25711913_8 (player VARCHAR, position VARCHAR) ### Question: Which player was at position left tackle? ### Answer: SELECT player FROM table_25711913_8 WHERE position = "Left tackle"
What is the original air date for the episode written by daniel dratch?
CREATE TABLE table_25716399_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_25716399_1 WHERE written_by = "Daniel Dratch"
### Context: CREATE TABLE table_25716399_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: What is the original air date for the episode written by daniel dratch? ### Answer: SELECT original_air_date FROM table_25716399_1 WHERE written_by = "Daniel Dratch"
What season was an episode directed by wendey stanzler?
CREATE TABLE table_25716399_1 (no_in_season INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_season) FROM table_25716399_1 WHERE directed_by = "Wendey Stanzler"
### Context: CREATE TABLE table_25716399_1 (no_in_season INTEGER, directed_by VARCHAR) ### Question: What season was an episode directed by wendey stanzler? ### Answer: SELECT MAX(no_in_season) FROM table_25716399_1 WHERE directed_by = "Wendey Stanzler"
What was the original air date where there were u.s. viewers (millions) is 5.60?
CREATE TABLE table_25716399_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT original_air_date FROM table_25716399_1 WHERE us_viewers__millions_ = "5.60"
### Context: CREATE TABLE table_25716399_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What was the original air date where there were u.s. viewers (millions) is 5.60? ### Answer: SELECT original_air_date FROM table_25716399_1 WHERE us_viewers__millions_ = "5.60"
Who was the writer for season 14?
CREATE TABLE table_25716399_1 (written_by VARCHAR, no_in_season VARCHAR)
SELECT written_by FROM table_25716399_1 WHERE no_in_season = 14
### Context: CREATE TABLE table_25716399_1 (written_by VARCHAR, no_in_season VARCHAR) ### Question: Who was the writer for season 14? ### Answer: SELECT written_by FROM table_25716399_1 WHERE no_in_season = 14
Who wrote the episode where the original air date is july20,2007?
CREATE TABLE table_25716399_1 (written_by VARCHAR, original_air_date VARCHAR)
SELECT written_by FROM table_25716399_1 WHERE original_air_date = "July20,2007"
### Context: CREATE TABLE table_25716399_1 (written_by VARCHAR, original_air_date VARCHAR) ### Question: Who wrote the episode where the original air date is july20,2007? ### Answer: SELECT written_by FROM table_25716399_1 WHERE original_air_date = "July20,2007"
what season was written by jonathan collier?
CREATE TABLE table_25716399_1 (no_in_season INTEGER, written_by VARCHAR)
SELECT MAX(no_in_season) FROM table_25716399_1 WHERE written_by = "Jonathan Collier"
### Context: CREATE TABLE table_25716399_1 (no_in_season INTEGER, written_by VARCHAR) ### Question: what season was written by jonathan collier? ### Answer: SELECT MAX(no_in_season) FROM table_25716399_1 WHERE written_by = "Jonathan Collier"
How many episodes were written by Tom Scharpling and Daniel Dratch?
CREATE TABLE table_25716397_1 (no_in_season VARCHAR, written_by VARCHAR)
SELECT COUNT(no_in_season) FROM table_25716397_1 WHERE written_by = "Tom Scharpling and Daniel Dratch"
### Context: CREATE TABLE table_25716397_1 (no_in_season VARCHAR, written_by VARCHAR) ### Question: How many episodes were written by Tom Scharpling and Daniel Dratch? ### Answer: SELECT COUNT(no_in_season) FROM table_25716397_1 WHERE written_by = "Tom Scharpling and Daniel Dratch"
How many people directed the episode that Joe Toplyn wrote?
CREATE TABLE table_25716397_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT COUNT(directed_by) FROM table_25716397_1 WHERE written_by = "Joe Toplyn"
### Context: CREATE TABLE table_25716397_1 (directed_by VARCHAR, written_by VARCHAR) ### Question: How many people directed the episode that Joe Toplyn wrote? ### Answer: SELECT COUNT(directed_by) FROM table_25716397_1 WHERE written_by = "Joe Toplyn"
How many titles does the episode written by Joe Toplyn have?
CREATE TABLE table_25716397_1 (title VARCHAR, written_by VARCHAR)
SELECT COUNT(title) FROM table_25716397_1 WHERE written_by = "Joe Toplyn"
### Context: CREATE TABLE table_25716397_1 (title VARCHAR, written_by VARCHAR) ### Question: How many titles does the episode written by Joe Toplyn have? ### Answer: SELECT COUNT(title) FROM table_25716397_1 WHERE written_by = "Joe Toplyn"
How many directors of episode 55?
CREATE TABLE table_25716397_1 (directed_by VARCHAR, series_no VARCHAR)
SELECT COUNT(directed_by) FROM table_25716397_1 WHERE series_no = 55
### Context: CREATE TABLE table_25716397_1 (directed_by VARCHAR, series_no VARCHAR) ### Question: How many directors of episode 55? ### Answer: SELECT COUNT(directed_by) FROM table_25716397_1 WHERE series_no = 55
How many titles are there for the episode written by Tom Scharpling?
CREATE TABLE table_25716401_1 (title VARCHAR, written_by VARCHAR)
SELECT COUNT(title) FROM table_25716401_1 WHERE written_by = "Tom Scharpling"
### Context: CREATE TABLE table_25716401_1 (title VARCHAR, written_by VARCHAR) ### Question: How many titles are there for the episode written by Tom Scharpling? ### Answer: SELECT COUNT(title) FROM table_25716401_1 WHERE written_by = "Tom Scharpling"
Which episode number aired on 18 october 2012?
CREATE TABLE table_25721_3 (episode_no INTEGER, airdate VARCHAR)
SELECT MIN(episode_no) FROM table_25721_3 WHERE airdate = "18 October 2012"
### Context: CREATE TABLE table_25721_3 (episode_no INTEGER, airdate VARCHAR) ### Question: Which episode number aired on 18 october 2012? ### Answer: SELECT MIN(episode_no) FROM table_25721_3 WHERE airdate = "18 October 2012"
What is the lowest cable rank of an episode with 1464000 viewers?
CREATE TABLE table_25721_3 (rank__cable_ INTEGER, total_viewers VARCHAR)
SELECT MIN(rank__cable_) FROM table_25721_3 WHERE total_viewers = 1464000
### Context: CREATE TABLE table_25721_3 (rank__cable_ INTEGER, total_viewers VARCHAR) ### Question: What is the lowest cable rank of an episode with 1464000 viewers? ### Answer: SELECT MIN(rank__cable_) FROM table_25721_3 WHERE total_viewers = 1464000
What is the highest number of dave viewers of an episode with 119000 dave ja vu viewers?
CREATE TABLE table_25721_3 (dave_viewers INTEGER, dave_ja_vu_viewers VARCHAR)
SELECT MAX(dave_viewers) FROM table_25721_3 WHERE dave_ja_vu_viewers = 119000
### Context: CREATE TABLE table_25721_3 (dave_viewers INTEGER, dave_ja_vu_viewers VARCHAR) ### Question: What is the highest number of dave viewers of an episode with 119000 dave ja vu viewers? ### Answer: SELECT MAX(dave_viewers) FROM table_25721_3 WHERE dave_ja_vu_viewers = 119000
How many episodes aired on 25 october 2012?
CREATE TABLE table_25721_3 (total_viewers VARCHAR, airdate VARCHAR)
SELECT COUNT(total_viewers) FROM table_25721_3 WHERE airdate = "25 October 2012"
### Context: CREATE TABLE table_25721_3 (total_viewers VARCHAR, airdate VARCHAR) ### Question: How many episodes aired on 25 october 2012? ### Answer: SELECT COUNT(total_viewers) FROM table_25721_3 WHERE airdate = "25 October 2012"
What was the airdate of the episode with 106000 dave ja vu viewers?
CREATE TABLE table_25721_3 (airdate VARCHAR, dave_ja_vu_viewers VARCHAR)
SELECT airdate FROM table_25721_3 WHERE dave_ja_vu_viewers = 106000
### Context: CREATE TABLE table_25721_3 (airdate VARCHAR, dave_ja_vu_viewers VARCHAR) ### Question: What was the airdate of the episode with 106000 dave ja vu viewers? ### Answer: SELECT airdate FROM table_25721_3 WHERE dave_ja_vu_viewers = 106000
How many DVDs where were in the complete collection series 1-8 with extras?
CREATE TABLE table_25721_4 (_number_of_discs VARCHAR, release VARCHAR)
SELECT _number_of_discs FROM table_25721_4 WHERE release = "The Complete Collection Series 1-8 with extras"
### Context: CREATE TABLE table_25721_4 (_number_of_discs VARCHAR, release VARCHAR) ### Question: How many DVDs where were in the complete collection series 1-8 with extras? ### Answer: SELECT _number_of_discs FROM table_25721_4 WHERE release = "The Complete Collection Series 1-8 with extras"
Which release had 6 DVDs?
CREATE TABLE table_25721_4 (release VARCHAR, _number_of_discs VARCHAR)
SELECT release FROM table_25721_4 WHERE _number_of_discs = 6
### Context: CREATE TABLE table_25721_4 (release VARCHAR, _number_of_discs VARCHAR) ### Question: Which release had 6 DVDs? ### Answer: SELECT release FROM table_25721_4 WHERE _number_of_discs = 6
How many region 1's did back to earth have?
CREATE TABLE table_25721_4 (region_1 VARCHAR, release VARCHAR)
SELECT COUNT(region_1) FROM table_25721_4 WHERE release = "Back to Earth"
### Context: CREATE TABLE table_25721_4 (region_1 VARCHAR, release VARCHAR) ### Question: How many region 1's did back to earth have? ### Answer: SELECT COUNT(region_1) FROM table_25721_4 WHERE release = "Back to Earth"
How many field goals did Walter Rheinschild have?
CREATE TABLE table_25724294_2 (field_goals INTEGER, player VARCHAR)
SELECT MAX(field_goals) FROM table_25724294_2 WHERE player = "Walter Rheinschild"
### Context: CREATE TABLE table_25724294_2 (field_goals INTEGER, player VARCHAR) ### Question: How many field goals did Walter Rheinschild have? ### Answer: SELECT MAX(field_goals) FROM table_25724294_2 WHERE player = "Walter Rheinschild"
Jack Loell had how many extra points?
CREATE TABLE table_25724294_2 (extra_points VARCHAR, player VARCHAR)
SELECT extra_points FROM table_25724294_2 WHERE player = "Jack Loell"
### Context: CREATE TABLE table_25724294_2 (extra_points VARCHAR, player VARCHAR) ### Question: Jack Loell had how many extra points? ### Answer: SELECT extra_points FROM table_25724294_2 WHERE player = "Jack Loell"
How many points did Donald Green score?
CREATE TABLE table_25730209_2 (points VARCHAR, player VARCHAR)
SELECT COUNT(points) FROM table_25730209_2 WHERE player = "Donald Green"
### Context: CREATE TABLE table_25730209_2 (points VARCHAR, player VARCHAR) ### Question: How many points did Donald Green score? ### Answer: SELECT COUNT(points) FROM table_25730209_2 WHERE player = "Donald Green"
How many field goals did Donald Green score?
CREATE TABLE table_25730209_2 (field_goals VARCHAR, player VARCHAR)
SELECT COUNT(field_goals) FROM table_25730209_2 WHERE player = "Donald Green"
### Context: CREATE TABLE table_25730209_2 (field_goals VARCHAR, player VARCHAR) ### Question: How many field goals did Donald Green score? ### Answer: SELECT COUNT(field_goals) FROM table_25730209_2 WHERE player = "Donald Green"
What was the least amount of points scored?
CREATE TABLE table_25730209_2 (extra_points INTEGER)
SELECT MIN(extra_points) FROM table_25730209_2
### Context: CREATE TABLE table_25730209_2 (extra_points INTEGER) ### Question: What was the least amount of points scored? ### Answer: SELECT MIN(extra_points) FROM table_25730209_2
How many extra points did Stanfield Wells make?
CREATE TABLE table_25730209_2 (extra_points VARCHAR, player VARCHAR)
SELECT COUNT(extra_points) FROM table_25730209_2 WHERE player = "Stanfield Wells"
### Context: CREATE TABLE table_25730209_2 (extra_points VARCHAR, player VARCHAR) ### Question: How many extra points did Stanfield Wells make? ### Answer: SELECT COUNT(extra_points) FROM table_25730209_2 WHERE player = "Stanfield Wells"
What are the most points listed?
CREATE TABLE table_25730123_2 (points INTEGER)
SELECT MAX(points) FROM table_25730123_2
### Context: CREATE TABLE table_25730123_2 (points INTEGER) ### Question: What are the most points listed? ### Answer: SELECT MAX(points) FROM table_25730123_2
How many touchdowns were the when there was more than 1.0 extra point?
CREATE TABLE table_25730123_2 (touchdowns VARCHAR, extra_points INTEGER)
SELECT touchdowns FROM table_25730123_2 WHERE extra_points > 1.0
### Context: CREATE TABLE table_25730123_2 (touchdowns VARCHAR, extra_points INTEGER) ### Question: How many touchdowns were the when there was more than 1.0 extra point? ### Answer: SELECT touchdowns FROM table_25730123_2 WHERE extra_points > 1.0
Name the player/s when there were 20 points with less than 1.0 extra point .
CREATE TABLE table_25730123_2 (player VARCHAR, extra_points VARCHAR, points VARCHAR)
SELECT player FROM table_25730123_2 WHERE extra_points < 1.0 AND points = 20
### Context: CREATE TABLE table_25730123_2 (player VARCHAR, extra_points VARCHAR, points VARCHAR) ### Question: Name the player/s when there were 20 points with less than 1.0 extra point . ### Answer: SELECT player FROM table_25730123_2 WHERE extra_points < 1.0 AND points = 20
What were the least amount of field goals when Frederick L. Conklin played?
CREATE TABLE table_25730123_2 (field_goals INTEGER, player VARCHAR)
SELECT MIN(field_goals) FROM table_25730123_2 WHERE player = "Frederick L. Conklin"
### Context: CREATE TABLE table_25730123_2 (field_goals INTEGER, player VARCHAR) ### Question: What were the least amount of field goals when Frederick L. Conklin played? ### Answer: SELECT MIN(field_goals) FROM table_25730123_2 WHERE player = "Frederick L. Conklin"
What is the least number of extra points?
CREATE TABLE table_25730326_2 (extra_points INTEGER)
SELECT MIN(extra_points) FROM table_25730326_2
### Context: CREATE TABLE table_25730326_2 (extra_points INTEGER) ### Question: What is the least number of extra points? ### Answer: SELECT MIN(extra_points) FROM table_25730326_2
How many points did William Wasmund have?
CREATE TABLE table_25730326_2 (points VARCHAR, player VARCHAR)
SELECT points FROM table_25730326_2 WHERE player = "William Wasmund"
### Context: CREATE TABLE table_25730326_2 (points VARCHAR, player VARCHAR) ### Question: How many points did William Wasmund have? ### Answer: SELECT points FROM table_25730326_2 WHERE player = "William Wasmund"
How many touchdowns did the player with 10 points have?
CREATE TABLE table_25730326_2 (touchdowns INTEGER, points VARCHAR)
SELECT MIN(touchdowns) FROM table_25730326_2 WHERE points = 10
### Context: CREATE TABLE table_25730326_2 (touchdowns INTEGER, points VARCHAR) ### Question: How many touchdowns did the player with 10 points have? ### Answer: SELECT MIN(touchdowns) FROM table_25730326_2 WHERE points = 10