text stringlengths 114 1.06k |
|---|
### 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č" ### context: CREATE TABLE table_25655781_17 (mountains_classification VARCHAR, winner 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é Greipel" AND points_classification = "André Greipel" ### context: CREATE TABLE table_25655781_17 (team_classification V... |
### question: How many stages are there? ### answer: SELECT MAX(stage) FROM table_25655781_17 ### context: CREATE TABLE table_25655781_17 (stage INTEGER) |
### 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" ### context: CREATE TABLE table_25655781_17 (sprint_classification VARCHAR, winner 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 ### context: CREATE TABLE table_25664518_3 (second_couple VARCHAR, itv1_weekly_ranking VARCHAR) |
### question: What is the maximum ITV1 weekly ranking? ### answer: SELECT MAX(itv1_weekly_ranking) FROM table_25664518_3 ### context: CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER) |
### 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" ### context: CREATE TABLE table_25664518_3 (viewers__millions_ 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" ### context: CREATE TABLE table_25664518_3 (first_couple VARCHAR, fourth_couple 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" ### context: CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER, viewers__millions_ 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" ### context: CREATE TABLE table_25668962_1 (no_in_series INTEGER, us_viewers__million_ 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" ### 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" ### context: CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, production_code 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 ### context: CREATE TABLE table_25668962_1 (us_viewers__million_ 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 ### context: CREATE TABLE table_25668962_1 (directed_by VARCHAR, no_in_series 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" ### context: CREATE TABLE table_25664518_4 (viewers__millions_ 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" ### context: CREATE TABLE table_25668203_2 (location VARCHAR, most_laps_led VARCHAR) |
### question: How many races went for 10 rounds? ### answer: SELECT COUNT(fastest_lap) FROM table_25668203_2 WHERE rnd = "10" ### context: CREATE TABLE table_25668203_2 (fastest_lap VARCHAR, rnd 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 = "Scott Rarick" ### context: CREATE TABLE table_25668203_2 (most_laps_led VARCHAR, location VARCHAR, winning_... |
### 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" ### context: CREATE TABLE table_25668203_2 (winning_team VARCHAR, winning_driver VARCHAR) |
### question: Who directed the episode with the production code 10? ### answer: 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 wrote the episode with production code 2? ### answer: 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 5? ### answer: SELECT written_by FROM table_25679312_2 WHERE prod_code = 5 ### context: CREATE TABLE table_25679312_2 (written_by VARCHAR, prod_code 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" ### context: CREATE TABLE table_256862_1 (finish VARCHAR, entries VARCHAR, winning_yacht VARCHAR) |
### question: Name the most legs for steinlager 2 ### answer: 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 wininng yacht for 14 entries ### answer: SELECT winning_yacht FROM table_256862_1 WHERE entries = "14" ### context: CREATE TABLE table_256862_1 (winning_yacht VARCHAR, entries 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" ### context: CREATE TABLE table_25691838_2 (the_wørd VARCHAR, original_airdate 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 ### context: CREATE TABLE table_25691838_2 (introductory_phrase VARCHAR, production_code VARCHAR) |
### question: What was the word on episode number 673? ### answer: 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: Who were the guests in the episode with production code 6021? ### answer: 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 on a show where the production code is 6152? ### answer: 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 for the episode with an original airdate of december 07? ### answer: SELECT guest FROM table_25691838_12 WHERE original_airdate = "December 07" ### context: CREATE TABLE table_25691838_12 (guest VARCHAR, original_airdate 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" ### context: CREATE TABLE table_25691838_12 (the_wørd VARCHAR, guest 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" ### context: CREATE TABLE table_25691838_12 (production_code VARCHAR, original_airdate 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" ### context: CREATE TABLE table_25691838_12 (episode__number INTEGER, guest 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" ### context: CREATE TABLE table_25691838_8 (guest VARCHAR, original_airdate 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 ### context: CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, production_code 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" ### context: CREATE TABLE table_25691838_8 (production_code INTEGER, original_airdate 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" ### context: CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, guest 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" ### context: CREATE TABLE table_25691838_8 (episode__number INTEGER, original_airdate VARCHAR) |
### question: What was the introductory phrase for episode 794? ### answer: 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 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" ### context: CREATE TABLE table_25691838_11 (original_airdate VARCHAR, guest 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" ### context: CREATE TABLE table_25691838_11 (production_code VARCHAR, original_airdate 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" ### context: CREATE TABLE table_25695027_1 (cylinder_size VARCHAR, number_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" ### context: CREATE TABLE table_25695027_1 (class VARCHAR, years_built 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 cylinder_size = "20 ½” x 26”" AND firebox = "Belpaire" AND valve_gear = "Stephenson" ### context: CREATE TABLE table_25695027_... |
### 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 = "Radial-stay" ### context: CREATE TABLE table_25695027_1 (years_built VARCHAR, cylinder_size VARCHAR, firebox ... |
### 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" ### context: CREATE TABLE table_25695027_1 (valves VARCHAR, years_built VARCHAR) |
### question: Name the agency for santa rosa avenue ### answer: 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 route number for rincon valley ### answer: 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 santa rosa avenue ### answer: 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: 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" ### context: CREATE TABLE table_2570269_3 (original_air_date__uk_ VARCHAR, episode_title 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" ### context: CREATE TABLE table_2570269_3 (episode_title VARCHAR, original_air_date__uk_ 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" ### context: CREATE TABLE table_2570269_3 (original_air_date__uk_ 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" ### context: CREATE TABLE table_2570269_3 (cast VARCHAR, episode__number 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" ### context: CREATE TABLE table_25703_1 (birth_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" ### context: CREATE TABLE table_25703_1 (death_2013 INTEGER, death_2012 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_2013 = "Moscow Oblast" ### context: CREATE TABLE table_25703_1 (death_2012 VARCHAR, death_2013 VARCHAR, january_s... |
### 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" ### context: CREATE TABLE table_25703_1 (birth_2013 VARCHAR, january_september_2013 VARCHAR) |
### question: How many touchdowns did the player took which gained 25 points? ### answer: SELECT touchdowns FROM table_25711913_2 WHERE points = 25 ### context: CREATE TABLE table_25711913_2 (touchdowns VARCHAR, points VARCHAR) |
### question: How many maximum points did Curtis scored? ### answer: SELECT MAX(points) FROM table_25711913_2 WHERE player = "Curtis" ### context: CREATE TABLE table_25711913_2 (points INTEGER, player VARCHAR) |
### question: How many touchdowns did the left guard took? ### answer: SELECT MAX(touchdowns) FROM table_25711913_2 WHERE position = "Left guard" ### context: CREATE TABLE table_25711913_2 (touchdowns INTEGER, 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" ### context: CREATE TABLE table_25711913_2 (field_goals VARCHAR, position VARCHAR) |
### question: What was the minimum touchdowns of the Fullback player? ### answer: SELECT MIN(touchdowns) FROM table_25711913_2 WHERE position = "Fullback" ### context: CREATE TABLE table_25711913_2 (touchdowns INTEGER, position VARCHAR) |
### question: How many touchdowns did the fullback score? ### answer: SELECT MIN(touchdowns) FROM table_25711913_8 WHERE position = "Fullback" ### context: CREATE TABLE table_25711913_8 (touchdowns INTEGER, position VARCHAR) |
### question: How many figures are provided for Weeks' field goals? ### answer: SELECT COUNT(field_goals) FROM table_25711913_8 WHERE player = "Weeks" ### context: CREATE TABLE table_25711913_8 (field_goals VARCHAR, player VARCHAR) |
### question: What is the most points recorded for a right halfback? ### answer: SELECT MAX(points) FROM table_25711913_8 WHERE position = "Right halfback" ### context: CREATE TABLE table_25711913_8 (points INTEGER, position VARCHAR) |
### question: Was Magoffin a starting player? ### answer: SELECT starter FROM table_25711913_8 WHERE player = "Magoffin" ### context: CREATE TABLE table_25711913_8 (starter VARCHAR, player VARCHAR) |
### question: Which player was at position left tackle? ### answer: SELECT player FROM table_25711913_8 WHERE position = "Left tackle" ### context: CREATE TABLE table_25711913_8 (player VARCHAR, position 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" ### context: CREATE TABLE table_25716399_1 (original_air_date VARCHAR, written_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" ### context: CREATE TABLE table_25716399_1 (no_in_season INTEGER, directed_by 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" ### context: CREATE TABLE table_25716399_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) |
### question: Who was the writer for season 14? ### answer: 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 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" ### context: CREATE TABLE table_25716399_1 (written_by VARCHAR, original_air_date VARCHAR) |
### question: what season was written by jonathan collier? ### answer: 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: 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" ### context: CREATE TABLE table_25716397_1 (no_in_season 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" ### context: CREATE TABLE table_25716397_1 (directed_by 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" ### context: CREATE TABLE table_25716397_1 (title VARCHAR, written_by VARCHAR) |
### question: How many directors of episode 55? ### answer: 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 titles are there for the episode written by Tom Scharpling? ### answer: SELECT COUNT(title) FROM table_25716401_1 WHERE written_by = "Tom Scharpling" ### context: CREATE TABLE table_25716401_1 (title VARCHAR, written_by VARCHAR) |
### question: Which episode number aired on 18 october 2012? ### answer: 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: 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 ### context: CREATE TABLE table_25721_3 (rank__cable_ INTEGER, total_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 ### context: CREATE TABLE table_25721_3 (dave_viewers INTEGER, dave_ja_vu_viewers VARCHAR) |
### question: How many episodes aired on 25 october 2012? ### answer: 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: 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 ### context: CREATE TABLE table_25721_3 (airdate VARCHAR, dave_ja_vu_viewers 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" ### context: CREATE TABLE table_25721_4 (_number_of_discs VARCHAR, release VARCHAR) |
### question: Which release had 6 DVDs? ### answer: SELECT release FROM table_25721_4 WHERE _number_of_discs = 6 ### context: CREATE TABLE table_25721_4 (release VARCHAR, _number_of_discs 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" ### context: CREATE TABLE table_25721_4 (region_1 VARCHAR, release VARCHAR) |
### question: How many field goals did Walter Rheinschild have? ### answer: SELECT MAX(field_goals) FROM table_25724294_2 WHERE player = "Walter Rheinschild" ### context: CREATE TABLE table_25724294_2 (field_goals INTEGER, player VARCHAR) |
### question: Jack Loell had how many extra points? ### answer: SELECT extra_points FROM table_25724294_2 WHERE player = "Jack Loell" ### context: CREATE TABLE table_25724294_2 (extra_points VARCHAR, player VARCHAR) |
### question: How many points did Donald Green score? ### answer: SELECT COUNT(points) FROM table_25730209_2 WHERE player = "Donald Green" ### context: CREATE TABLE table_25730209_2 (points 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" ### context: CREATE TABLE table_25730209_2 (field_goals VARCHAR, player VARCHAR) |
### question: What was the least amount of points scored? ### answer: SELECT MIN(extra_points) FROM table_25730209_2 ### context: CREATE TABLE table_25730209_2 (extra_points INTEGER) |
### question: How many extra points did Stanfield Wells make? ### answer: SELECT COUNT(extra_points) FROM table_25730209_2 WHERE player = "Stanfield Wells" ### context: CREATE TABLE table_25730209_2 (extra_points VARCHAR, player VARCHAR) |
### question: What are the most points listed? ### answer: SELECT MAX(points) FROM table_25730123_2 ### context: CREATE TABLE table_25730123_2 (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 ### context: CREATE TABLE table_25730123_2 (touchdowns VARCHAR, extra_points INTEGER) |
### 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 ### context: CREATE TABLE table_25730123_2 (player VARCHAR, extra_points VARCHAR, points 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" ### context: CREATE TABLE table_25730123_2 (field_goals INTEGER, player VARCHAR) |
### question: What is the least number of extra points? ### answer: SELECT MIN(extra_points) FROM table_25730326_2 ### context: CREATE TABLE table_25730326_2 (extra_points INTEGER) |
### question: How many points did William Wasmund have? ### answer: SELECT points FROM table_25730326_2 WHERE player = "William Wasmund" ### context: CREATE TABLE table_25730326_2 (points VARCHAR, player VARCHAR) |
### question: How many touchdowns did the player with 10 points have? ### answer: SELECT MIN(touchdowns) FROM table_25730326_2 WHERE points = 10 ### context: CREATE TABLE table_25730326_2 (touchdowns INTEGER, points VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.