question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
what is the numbr for fri may 30 and mon may 26 is 19' 02.890 118.847mph?
CREATE TABLE table_14209455_1 (fri_30_may VARCHAR, mon_26_may VARCHAR)
SELECT fri_30_may FROM table_14209455_1 WHERE mon_26_may = "19' 02.890 118.847mph"
What the name of the school where the last win in 2007-08?
CREATE TABLE table_14286908_1 (school VARCHAR, year_of_last_win VARCHAR)
SELECT school FROM table_14286908_1 WHERE year_of_last_win = "2007-08"
How many times was banbridge academy the winner?
CREATE TABLE table_14286908_1 (winners VARCHAR, school VARCHAR)
SELECT COUNT(winners) FROM table_14286908_1 WHERE school = "Banbridge Academy"
What are the names that had a finalist score of 2?
CREATE TABLE table_14286908_1 (school VARCHAR, finalists VARCHAR)
SELECT school FROM table_14286908_1 WHERE finalists = 2
In what year was the total finals at 10?
CREATE TABLE table_14286908_1 (year_of_last_win VARCHAR, total_finals VARCHAR)
SELECT year_of_last_win FROM table_14286908_1 WHERE total_finals = 10
What is the name of the school where the year of last win is 1985-86?
CREATE TABLE table_14286908_1 (school VARCHAR, year_of_last_win VARCHAR)
SELECT school FROM table_14286908_1 WHERE year_of_last_win = "1985-86"
How many total finals where there when the last win was in 2012-13?
CREATE TABLE table_14286908_1 (total_finals VARCHAR, year_of_last_win VARCHAR)
SELECT total_finals FROM table_14286908_1 WHERE year_of_last_win = "2012-13"
Name the most played
CREATE TABLE table_14323347_1 (played INTEGER)
SELECT MAX(played) FROM table_14323347_1
Name the total number of 1992-93 for 115 points
CREATE TABLE table_14323347_1 (points VARCHAR)
SELECT COUNT(1992 AS _93) FROM table_14323347_1 WHERE points = 115
Name the most touchdowns for field goals being 1
CREATE TABLE table_14342480_6 (touchdowns INTEGER, field_goals VARCHAR)
SELECT MAX(touchdowns) FROM table_14342480_6 WHERE field_goals = 1
Name the starter for position being left end
CREATE TABLE table_14342480_6 (starter VARCHAR, position VARCHAR)
SELECT starter FROM table_14342480_6 WHERE position = "Left end"
Name the fewest touchdowns
CREATE TABLE table_14342480_6 (touchdowns INTEGER)
SELECT MIN(touchdowns) FROM table_14342480_6
Name the most extra points for right tackle
CREATE TABLE table_14342480_6 (extra_points INTEGER, position VARCHAR)
SELECT MAX(extra_points) FROM table_14342480_6 WHERE position = "Right tackle"
Name the number of points for field goals being 1
CREATE TABLE table_14342480_6 (points VARCHAR, field_goals VARCHAR)
SELECT COUNT(points) FROM table_14342480_6 WHERE field_goals = 1
Name the most touchdowns for becker
CREATE TABLE table_14342592_8 (touchdowns INTEGER, player VARCHAR)
SELECT MAX(touchdowns) FROM table_14342592_8 WHERE player = "Becker"
Name the extra points for left guard
CREATE TABLE table_14342592_8 (extra_points VARCHAR, position VARCHAR)
SELECT extra_points FROM table_14342592_8 WHERE position = "Left guard"
Name the least touchdowns for 11 points
CREATE TABLE table_14342592_8 (touchdowns INTEGER, points VARCHAR)
SELECT MIN(touchdowns) FROM table_14342592_8 WHERE points = 11
Name the most field goals
CREATE TABLE table_14342592_8 (field_goals INTEGER)
SELECT MAX(field_goals) FROM table_14342592_8
Name the number of field goals for 19 extra points
CREATE TABLE table_14342592_8 (field_goals VARCHAR, extra_points VARCHAR)
SELECT COUNT(field_goals) FROM table_14342592_8 WHERE extra_points = 19
Name the most touchdowns for norcross
CREATE TABLE table_14342592_8 (touchdowns INTEGER, player VARCHAR)
SELECT MAX(touchdowns) FROM table_14342592_8 WHERE player = "Norcross"
Name who was famous for finished in 9th
CREATE TABLE table_14345690_4 (famous_for VARCHAR, finished VARCHAR)
SELECT famous_for FROM table_14345690_4 WHERE finished = "9th"
Name the finished for exited day 13
CREATE TABLE table_14345690_4 (finished VARCHAR, exited VARCHAR)
SELECT finished FROM table_14345690_4 WHERE exited = "Day 13"
Name the entered for famous for page 3 model
CREATE TABLE table_14345690_4 (entered VARCHAR, famous_for VARCHAR)
SELECT entered FROM table_14345690_4 WHERE famous_for = "Page 3 Model"
Name the finished for kerry katona
CREATE TABLE table_14345690_4 (finished VARCHAR, celebrity VARCHAR)
SELECT COUNT(finished) FROM table_14345690_4 WHERE celebrity = "Kerry Katona"
Name the number of celebrity for athlete
CREATE TABLE table_14345690_4 (celebrity VARCHAR, famous_for VARCHAR)
SELECT COUNT(celebrity) FROM table_14345690_4 WHERE famous_for = "Athlete"
What is the total number of values for "Teleplay by" category for series # 35?
CREATE TABLE table_14346950_1 (teleplay_by VARCHAR, series__number VARCHAR)
SELECT COUNT(teleplay_by) FROM table_14346950_1 WHERE series__number = 35
Who is the teleplay by when the director is Rob Bailey?
CREATE TABLE table_14346950_1 (teleplay_by VARCHAR, directed_by VARCHAR)
SELECT teleplay_by FROM table_14346950_1 WHERE directed_by = "Rob Bailey"
What is the season # for a teleplay by Richard Price and the director is Steve Shill?
CREATE TABLE table_14346950_1 (season__number VARCHAR, teleplay_by VARCHAR, directed_by VARCHAR)
SELECT season__number FROM table_14346950_1 WHERE teleplay_by = "Richard Price" AND directed_by = "Steve Shill"
What time in eastern standard time was game held at denver broncos?
CREATE TABLE table_14433719_1 (time___et__ VARCHAR, opponent VARCHAR)
SELECT time___et__ FROM table_14433719_1 WHERE opponent = "at Denver Broncos"
What are the names of all unix shell with PowerShell (Cmdlet) of select-string?
CREATE TABLE table_14465871_1 (unix_shell VARCHAR, powershell__cmdlet_ VARCHAR)
SELECT unix_shell FROM table_14465871_1 WHERE powershell__cmdlet_ = "Select-String"
What are all values of CMD.EXE / COMMAND.COM for the unix shell echo?
CREATE TABLE table_14465871_1 (cmdexe___commandcom VARCHAR, unix_shell VARCHAR)
SELECT cmdexe___commandcom FROM table_14465871_1 WHERE unix_shell = "echo"
If Powershell (alias) is cpi, copy, cp, what are all corresponding descriptions.
CREATE TABLE table_14465871_1 (description VARCHAR, powershell__alias_ VARCHAR)
SELECT description FROM table_14465871_1 WHERE powershell__alias_ = "cpi, copy, cp"
When the cmd.exe / command.com is type, what are all associated values for powershell (cmdlet)?
CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, cmdexe___commandcom VARCHAR)
SELECT powershell__cmdlet_ FROM table_14465871_1 WHERE cmdexe___commandcom = "type"
How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv?
CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, unix_shell VARCHAR)
SELECT COUNT(powershell__cmdlet_) FROM table_14465871_1 WHERE unix_shell = "env, export, set, setenv"
What county has 2053 households?
CREATE TABLE table_1447085_1 (county VARCHAR, number_of_households VARCHAR)
SELECT county FROM table_1447085_1 WHERE number_of_households = 2053
Which place has a rank of 71?
CREATE TABLE table_1447085_1 (place VARCHAR, rank VARCHAR)
SELECT place FROM table_1447085_1 WHERE rank = 71
Which county has a median household income of $98,090?
CREATE TABLE table_1447085_1 (county VARCHAR, median_house__hold_income VARCHAR)
SELECT county FROM table_1447085_1 WHERE median_house__hold_income = "$98,090"
What is the median household income for Woodside?
CREATE TABLE table_1447085_1 (median_house__hold_income VARCHAR, place VARCHAR)
SELECT median_house__hold_income FROM table_1447085_1 WHERE place = "Woodside"
What is the per capita income for Fayette County?
CREATE TABLE table_1447085_1 (per_capita_income VARCHAR, county VARCHAR)
SELECT per_capita_income FROM table_1447085_1 WHERE county = "Fayette county"
Where does the common of Galliate rank in population?
CREATE TABLE table_1449169_1 (rank VARCHAR, common VARCHAR)
SELECT rank FROM table_1449169_1 WHERE common = "Galliate"
Which common has an area (km2) of 38.38?
CREATE TABLE table_1449169_1 (common VARCHAR, area__km_2__ VARCHAR)
SELECT common FROM table_1449169_1 WHERE area__km_2__ = "38.38"
Which common has an area (km2) of 103.02?
CREATE TABLE table_1449169_1 (common VARCHAR, area__km_2__ VARCHAR)
SELECT common FROM table_1449169_1 WHERE area__km_2__ = "103.02"
What is the minimum altitude (mslm) in all the commons?
CREATE TABLE table_1449169_1 (altitude__mslm_ INTEGER)
SELECT MIN(altitude__mslm_) FROM table_1449169_1
What rank is the common with an area of 47.3 km^2?
CREATE TABLE table_1449176_1 (rank VARCHAR, area__km_2__ VARCHAR)
SELECT rank FROM table_1449176_1 WHERE area__km_2__ = "47.3"
What is the density of the common with an area of 20.4 km^2?
CREATE TABLE table_1449176_1 (density__inhabitants_km_2__ VARCHAR, area__km_2__ VARCHAR)
SELECT density__inhabitants_km_2__ FROM table_1449176_1 WHERE area__km_2__ = "20.4"
How many altitudes does the common with an area of 130.7 km^2 have?
CREATE TABLE table_1449176_1 (altitude__mslm_ VARCHAR, area__km_2__ VARCHAR)
SELECT COUNT(altitude__mslm_) FROM table_1449176_1 WHERE area__km_2__ = "130.7"
How may population figures are given for Settimo Torinese
CREATE TABLE table_1449176_1 (population VARCHAR, common_of VARCHAR)
SELECT COUNT(population) FROM table_1449176_1 WHERE common_of = "Settimo Torinese"
What is the name of the 9th ranked common?
CREATE TABLE table_1449176_1 (common_of VARCHAR, rank VARCHAR)
SELECT common_of FROM table_1449176_1 WHERE rank = "9th"
The common of Chieri has what population density?
CREATE TABLE table_1449176_1 (density__inhabitants_km_2__ VARCHAR, common_of VARCHAR)
SELECT density__inhabitants_km_2__ FROM table_1449176_1 WHERE common_of = "Chieri"
what's the economics score with education being 92.0
CREATE TABLE table_145439_1 (economics VARCHAR, education VARCHAR)
SELECT economics FROM table_145439_1 WHERE education = "92.0"
what's the health score with justice being 80.7
CREATE TABLE table_145439_1 (health VARCHAR, justice VARCHAR)
SELECT health FROM table_145439_1 WHERE justice = "80.7"
what's the rank for iceland
CREATE TABLE table_145439_1 (rank VARCHAR, country VARCHAR)
SELECT rank FROM table_145439_1 WHERE country = "Iceland"
what's the country with health being 91.4
CREATE TABLE table_145439_1 (country VARCHAR, health VARCHAR)
SELECT country FROM table_145439_1 WHERE health = "91.4"
what's the economics score with justice being 90.8
CREATE TABLE table_145439_1 (economics VARCHAR, justice VARCHAR)
SELECT economics FROM table_145439_1 WHERE justice = "90.8"
On October 17, 1937 what was maximum number or attendants.
CREATE TABLE table_14608759_1 (attendance INTEGER, date VARCHAR)
SELECT MAX(attendance) FROM table_14608759_1 WHERE date = "October 17, 1937"
In week 9 who were the opponent?
CREATE TABLE table_14608759_1 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_14608759_1 WHERE week = 9
What are week 4 results?
CREATE TABLE table_14608759_1 (result VARCHAR, week VARCHAR)
SELECT result FROM table_14608759_1 WHERE week = 4
What was Trevard Lindley's number?
CREATE TABLE table_14624447_33 (number INTEGER, name VARCHAR)
SELECT MAX(number) FROM table_14624447_33 WHERE name = "Trevard Lindley"
Name the player for chicago black hawks
CREATE TABLE table_1473672_8 (player VARCHAR, nhl_team VARCHAR)
SELECT player FROM table_1473672_8 WHERE nhl_team = "Chicago Black Hawks"
Name the position for pick number 128
CREATE TABLE table_1473672_8 (position VARCHAR, pick__number VARCHAR)
SELECT position FROM table_1473672_8 WHERE pick__number = 128
Name the college/junior/club team for left wing
CREATE TABLE table_1473672_8 (college_junior_club_team VARCHAR, position VARCHAR)
SELECT college_junior_club_team FROM table_1473672_8 WHERE position = "Left Wing"
What is the Burmese term for Thursday?
CREATE TABLE table_14850099_18 (burmese VARCHAR, english VARCHAR)
SELECT burmese FROM table_14850099_18 WHERE english = "Thursday"
What is the cardinal direction associated with Venus?
CREATE TABLE table_14850099_18 (cardinal_direction VARCHAR, planet VARCHAR)
SELECT cardinal_direction FROM table_14850099_18 WHERE planet = "Venus"
What is the Burmese term associated with a cardinal direction of west?
CREATE TABLE table_14850099_18 (burmese VARCHAR, cardinal_direction VARCHAR)
SELECT burmese FROM table_14850099_18 WHERE cardinal_direction = "West"
What is the planet associated with the direction of south?
CREATE TABLE table_14850099_18 (planet VARCHAR, cardinal_direction VARCHAR)
SELECT planet FROM table_14850099_18 WHERE cardinal_direction = "South"
What is the value scored when there were 19 points for the team 3 de Febrero?
CREATE TABLE table_14871601_2 (scored INTEGER, points VARCHAR, team VARCHAR)
SELECT MAX(scored) FROM table_14871601_2 WHERE points = 19 AND team = "3 de Febrero"
What was the number of losses when the scored value was 25?
CREATE TABLE table_14871601_2 (losses INTEGER, scored VARCHAR)
SELECT MAX(losses) FROM table_14871601_2 WHERE scored = 25
What were all Yachts with a sail number of 6952?
CREATE TABLE table_14882588_3 (yacht VARCHAR, sail_number VARCHAR)
SELECT yacht FROM table_14882588_3 WHERE sail_number = "6952"
How many yachts had a position of 3?
CREATE TABLE table_14882588_3 (yacht VARCHAR, position VARCHAR)
SELECT COUNT(yacht) FROM table_14882588_3 WHERE position = 3
What are all sail numbers for the yacht Yendys?
CREATE TABLE table_14882588_3 (sail_number VARCHAR, yacht VARCHAR)
SELECT sail_number FROM table_14882588_3 WHERE yacht = "Yendys"
Who is the courtside reporter for the year 2009-10?
CREATE TABLE table_14902507_2 (courtside_reporter VARCHAR, year VARCHAR)
SELECT courtside_reporter FROM table_14902507_2 WHERE year = "2009-10"
Who is the studio host for the year 2006-07?
CREATE TABLE table_14902507_2 (studio_host VARCHAR, year VARCHAR)
SELECT studio_host FROM table_14902507_2 WHERE year = "2006-07"
Who are the studio analysts for the year 2008-09?
CREATE TABLE table_14902507_2 (studio_analysts VARCHAR, year VARCHAR)
SELECT studio_analysts FROM table_14902507_2 WHERE year = "2008-09"
How many channels were the games shown on in 2001-02?
CREATE TABLE table_14902507_2 (channel VARCHAR, year VARCHAR)
SELECT COUNT(channel) FROM table_14902507_2 WHERE year = "2001-02"
What is the current venue for the Miami Masters tournament?
CREATE TABLE table_14903081_1 (current_venue VARCHAR, tournament VARCHAR)
SELECT current_venue FROM table_14903081_1 WHERE tournament = "Miami Masters"
Rome is in which country?
CREATE TABLE table_14903081_1 (country VARCHAR, location VARCHAR)
SELECT country FROM table_14903081_1 WHERE location = "Rome"
How many tournaments have their current venue as the Lindner Family Tennis Center?
CREATE TABLE table_14903081_1 (tournament VARCHAR, current_venue VARCHAR)
SELECT COUNT(tournament) FROM table_14903081_1 WHERE current_venue = "Lindner Family Tennis Center"
What year was the tournament first held in Italy?
CREATE TABLE table_14903081_1 (began INTEGER, country VARCHAR)
SELECT MIN(began) FROM table_14903081_1 WHERE country = "Italy"
Which current venues location is Mason, Ohio?
CREATE TABLE table_14903081_1 (current_venue VARCHAR, location VARCHAR)
SELECT current_venue FROM table_14903081_1 WHERE location = "Mason, Ohio"
Which tournaments current venue is the Madrid Arena?
CREATE TABLE table_14903081_1 (tournament VARCHAR, current_venue VARCHAR)
SELECT tournament FROM table_14903081_1 WHERE current_venue = "Madrid Arena"
What are all values for Womens Doubles in the year 2000/2001?
CREATE TABLE table_14903841_1 (womens_doubles VARCHAR, year VARCHAR)
SELECT womens_doubles FROM table_14903841_1 WHERE year = "2000/2001"
Who are all the womens doubles for the year 2008/2009?
CREATE TABLE table_14903841_1 (womens_doubles VARCHAR, year VARCHAR)
SELECT womens_doubles FROM table_14903841_1 WHERE year = "2008/2009"
Which episode number drew in 3.84 million viewers in the U.S.?
CREATE TABLE table_14929574_3 (series__number INTEGER, us_viewers__million_ VARCHAR)
SELECT MAX(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = "3.84"
How many viewers did the episode directed by David Nutter draw in?
CREATE TABLE table_14929574_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
SELECT us_viewers__million_ FROM table_14929574_3 WHERE directed_by = "David Nutter"
Which episode number drew in 3.35 million viewers in the United States?
CREATE TABLE table_14929574_3 (series__number VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = "3.35"
Which episode number was directed by Bill Eagles?
CREATE TABLE table_14929574_3 (series__number INTEGER, directed_by VARCHAR)
SELECT MIN(series__number) FROM table_14929574_3 WHERE directed_by = "Bill Eagles"
How many masters fought using a boxing style?
CREATE TABLE table_14937957_1 (masters VARCHAR, martial_art_style VARCHAR)
SELECT COUNT(masters) FROM table_14937957_1 WHERE martial_art_style = "Boxing"
How many times did episode 1.8 air?
CREATE TABLE table_14937957_1 (original_airdate VARCHAR, episode__number VARCHAR)
SELECT COUNT(original_airdate) FROM table_14937957_1 WHERE episode__number = "1.8"
Which masters fought in hapkido style?
CREATE TABLE table_14937957_1 (masters VARCHAR, martial_art_style VARCHAR)
SELECT masters FROM table_14937957_1 WHERE martial_art_style = "Hapkido"
When did the episode featuring a master using Brazilian jiu-jitsu air?
CREATE TABLE table_14937957_1 (original_airdate VARCHAR, martial_art_style VARCHAR)
SELECT original_airdate FROM table_14937957_1 WHERE martial_art_style = "Brazilian Jiu-Jitsu"
In which country is the city of Netanya?
CREATE TABLE table_14937957_1 (country VARCHAR, city VARCHAR)
SELECT country FROM table_14937957_1 WHERE city = "Netanya"
Which martial arts style was shown in Rio de Janeiro?
CREATE TABLE table_14937957_1 (martial_art_style VARCHAR, city VARCHAR)
SELECT martial_art_style FROM table_14937957_1 WHERE city = "Rio de Janeiro"
When 74804 is the attendance what week is it?
CREATE TABLE table_14941284_1 (week VARCHAR, attendance VARCHAR)
SELECT week FROM table_14941284_1 WHERE attendance = 74804
When it is October 25, 1981 who is the opponent?
CREATE TABLE table_14941284_1 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_14941284_1 WHERE date = "October 25, 1981"
When it is week 2 what is the record?
CREATE TABLE table_14941284_1 (record VARCHAR, week VARCHAR)
SELECT record FROM table_14941284_1 WHERE week = 2
When it is October 18, 1981 where is the game site?
CREATE TABLE table_14941284_1 (game_site VARCHAR, date VARCHAR)
SELECT game_site FROM table_14941284_1 WHERE date = "October 18, 1981"
Name the median income for age band being under 20
CREATE TABLE table_14946657_3 (median_income VARCHAR, age_band VARCHAR)
SELECT median_income FROM table_14946657_3 WHERE age_band = "Under 20"
How many episodes in history have a running time of 24:06?
CREATE TABLE table_1498589_1 (archive VARCHAR, run_time VARCHAR)
SELECT COUNT(archive) FROM table_1498589_1 WHERE run_time = "24:06"
Name the southern lakota for híŋhaŋna
CREATE TABLE table_1499774_5 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR)
SELECT southern_lakota FROM table_1499774_5 WHERE yankton_yanktonai = "híŋhaŋna"
Name the santee sisseton for wičháša
CREATE TABLE table_1499774_5 (santee_sisseton VARCHAR, yankton_yanktonai VARCHAR)
SELECT santee_sisseton FROM table_1499774_5 WHERE yankton_yanktonai = "wičháša"