question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
what's the state with highest point being mount katahdin
CREATE TABLE table_1416612_1 (state VARCHAR, highest_point VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT reg_season FROM table_14225409_1 WHERE playoffs = \"Conference Semifinals\" AND us_open_cup = \"Did not qualify\"" }
Name the population in 1931 for lubelskie
CREATE TABLE table_14245_3 (population__1931__in_1 VARCHAR, voivodeship_or_city VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_manufacturer = \"Scania\" AND fleet_numbers = \"3230\"" }
Which chassis manufacturer is for fleet numbers range 2530-2558
CREATE TABLE table_1425948_1 (chassis_manufacturer VARCHAR, fleet_numbers VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT channels FROM table_142573_1 WHERE designation = \"PC700\"" }
Name the maximum clock rate mhz
CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT Assistant AS principal__2013_2014_ FROM table_14254419_3 WHERE principal__2013_2014_ = \"Cort Monroe\"" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MAX(extra_points) FROM table_14341967_2 WHERE player = \"John Heston\"" }
Who scored the most points?
CREATE TABLE table_14342367_11 (points INTEGER)
{ "SQL_Query": "SELECT MAX(points) FROM table_14342367_11" }
What position did Joe Maddock play?
CREATE TABLE table_14342367_11 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(player) FROM table_14342367_15 WHERE total_points = 75" }
Name the most field goals
CREATE TABLE table_14342480_5 (field_goals INTEGER)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MAX(points) FROM table_14342592_7 WHERE position = \"Left tackle\" AND extra_points = 5" }