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