answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT date FROM table_14984078_1 WHERE week = 13
CREATE TABLE table_14984078_1 (date VARCHAR, week VARCHAR)
What was the game date in week 13?
SELECT game_site FROM table_14984078_1 WHERE opponent = "Detroit Lions"
CREATE TABLE table_14984078_1 (game_site VARCHAR, opponent VARCHAR)
Where did the team play the Detroit Lions?
SELECT week FROM table_14984078_1 WHERE date = "December 2, 1962"
CREATE TABLE table_14984078_1 (week VARCHAR, date VARCHAR)
What week of the season did the date December 2, 1962 fall on?
SELECT result FROM table_14984039_1 WHERE date = "October 14, 1956"
CREATE TABLE table_14984039_1 (result VARCHAR, date VARCHAR)
what is the result for October 14, 1956?
SELECT game_site FROM table_14984103_1 WHERE week = 6
CREATE TABLE table_14984103_1 (game_site VARCHAR, week VARCHAR)
Name the game site for week 6
SELECT COUNT(week) FROM table_14984103_1 WHERE opponent = "San Francisco 49ers"
CREATE TABLE table_14984103_1 (week VARCHAR, opponent VARCHAR)
Name the number of weeks for san francisco 49ers
SELECT MAX(attendance) FROM table_14984103_1 WHERE game_site = "Los Angeles Memorial Coliseum"
CREATE TABLE table_14984103_1 (attendance INTEGER, game_site VARCHAR)
Name the most attendance for game site for los angeles memorial coliseum
SELECT result FROM table_14984126_1 WHERE record = "0–1"
CREATE TABLE table_14984126_1 (result VARCHAR, record VARCHAR)
what's the result with record being 0–1
SELECT game_site FROM table_14984126_1 WHERE result = "L 24–34"
CREATE TABLE table_14984126_1 (game_site VARCHAR, result VARCHAR)
what's the game site with result being l 24–34
SELECT COUNT(result) FROM table_14984126_1 WHERE date = "October 25, 1964"
CREATE TABLE table_14984126_1 (result VARCHAR, date VARCHAR)
how many result with date being october 25, 1964
SELECT COUNT(opponent) FROM table_14984126_1 WHERE date = "October 25, 1964"
CREATE TABLE table_14984126_1 (opponent VARCHAR, date VARCHAR)
how many opponent with date being october 25, 1964
SELECT population__2010_census_ FROM table_14986292_1 WHERE population_2000_census = 920599
CREATE TABLE table_14986292_1 (population__2010_census_ VARCHAR, population_2000_census VARCHAR)
Name the population 2010 census for population 2000 census of 920599
SELECT COUNT(population_2000_census) FROM table_14986292_1 WHERE administrative_division = "Mesquita"
CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, administrative_division VARCHAR)
Name the total number of population 2000 census for mesquita
SELECT population_2000_census FROM table_14986292_1 WHERE area__km²_ = "77"
CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, area__km²_ VARCHAR)
Name the population 2000 census for 77 area
SELECT COUNT(area__km²_) FROM table_14986292_1 WHERE population_density_2010___km²_ = 514
CREATE TABLE table_14986292_1 (area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR)
Name the number of area where population density 2010 for 514
SELECT COUNT(population_density_2010___km²_) FROM table_14986292_1 WHERE administrative_division = "Duque de Caxias"
CREATE TABLE table_14986292_1 (population_density_2010___km²_ VARCHAR, administrative_division VARCHAR)
Name the number of population density 2010 for duque de caxias
SELECT administrative_division FROM table_14986292_1 WHERE population__2010_census_ = 95391
CREATE TABLE table_14986292_1 (administrative_division VARCHAR, population__2010_census_ VARCHAR)
Name the administrative division for 95391
SELECT MIN(losses) FROM table_14997324_5 WHERE team = "12 de Octubre"
CREATE TABLE table_14997324_5 (losses INTEGER, team VARCHAR)
How many losses did 12 de Octubre have ?
SELECT santee_sisseton FROM table_1499791_2 WHERE english_gloss = "morning"
CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, english_gloss VARCHAR)
Name the santee sisseton for morning
SELECT southern_lakota FROM table_1499791_2 WHERE english_gloss = "morning"
CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, english_gloss VARCHAR)
Name the southern lakota for morning
SELECT southern_lakota FROM table_1499791_2 WHERE yankton_yanktonai = "wakȟáŋyeža"
CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR)
Name the southern lakota for wakȟáŋyeža
SELECT english_gloss FROM table_1499791_2 WHERE southern_lakota = "naháŋȟčiŋ"
CREATE TABLE table_1499791_2 (english_gloss VARCHAR, southern_lakota VARCHAR)
Name the english gloss for naháŋȟčiŋ
SELECT COUNT(santee_sisseton) FROM table_1499791_2 WHERE yankton_yanktonai = "híŋhaŋna"
CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, yankton_yanktonai VARCHAR)
Name the santee sisseton for híŋhaŋna
SELECT yankton_yanktonai FROM table_1499791_2 WHERE southern_lakota = "wičháša"
CREATE TABLE table_1499791_2 (yankton_yanktonai VARCHAR, southern_lakota VARCHAR)
Name the yankton yanktonai for wičháša
SELECT MAX(round) FROM table_14999879_2
CREATE TABLE table_14999879_2 (round INTEGER)
What was the last round the team drafted?
SELECT college FROM table_14999879_2 WHERE player = "Steve Justice"
CREATE TABLE table_14999879_2 (college VARCHAR, player VARCHAR)
What college did steve justice attend?
SELECT COUNT(womens_doubles) FROM table_15001957_1 WHERE mens_singles = "Philippe Aulner"
CREATE TABLE table_15001957_1 (womens_doubles VARCHAR, mens_singles VARCHAR)
How may women doubles winner were there when Philippe Aulner was mens singles winner?
SELECT COUNT(mixed_doubles) FROM table_15001957_1 WHERE year = 1996
CREATE TABLE table_15001957_1 (mixed_doubles VARCHAR, year VARCHAR)
How many mixed doubles were won in 1996?
SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = "Reinhold Pum Karl Buchart" AND mixed_doubles = "Hermann Fröhlich Lore Voit"
CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR, mixed_doubles VARCHAR)
who is the the womens doubles with mens doubles being reinhold pum karl buchart and mixed doubles being hermann fröhlich lore voit
SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = "Leopold Bauer Alfred Kohlhauser"
CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)
who is the the womens doubles with mens doubles being leopold bauer alfred kohlhauser
SELECT mixed_doubles FROM table_15002265_1 WHERE mens_singles = "Peter Moritz"
CREATE TABLE table_15002265_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)
who is the the mixed doubles with mens singles being peter moritz
SELECT mens_doubles FROM table_15002265_1 WHERE mens_singles = "Jürgen Koch" AND womens_singles = "Sabine Ploner"
CREATE TABLE table_15002265_1 (mens_doubles VARCHAR, mens_singles VARCHAR, womens_singles VARCHAR)
who is the the mens doubles with mens singles being jürgen koch and womens singles being sabine ploner
SELECT womens_singles FROM table_15002265_1 WHERE mixed_doubles = "Bernd Frohnwieser Hilde Themel" AND year < 1959.0
CREATE TABLE table_15002265_1 (womens_singles VARCHAR, mixed_doubles VARCHAR, year VARCHAR)
who is the the womens singles with mixed doubles being bernd frohnwieser hilde themel and year being smaller than 1959.0
SELECT COUNT(mixed_doubles) FROM table_15002177_1 WHERE womens_singles = "Olga Koseli"
CREATE TABLE table_15002177_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)
How many mixed doubles were there in the year that Olga Koseli won the women's singles?
SELECT MAX(_number) FROM table_15026994_5 WHERE viewing_figure = "7.02 million"
CREATE TABLE table_15026994_5 (_number INTEGER, viewing_figure VARCHAR)
What is the # for the episode with viewing figures of 7.02 million ?
SELECT MIN(rank) FROM table_150340_3 WHERE country = "Puerto Rico"
CREATE TABLE table_150340_3 (rank INTEGER, country VARCHAR)
What is the lowest rank for puerto rico?
SELECT COUNT(director) FROM table_15026994_2 WHERE writer = "Gaby Chiappe"
CREATE TABLE table_15026994_2 (director VARCHAR, writer VARCHAR)
How many different directors are associated with the writer Gaby Chiappe?
SELECT writer FROM table_15026994_2 WHERE viewing_figure = "7.01 million"
CREATE TABLE table_15026994_2 (writer VARCHAR, viewing_figure VARCHAR)
What writers are associated with a viewing figure of 7.01 million?
SELECT episode FROM table_15026994_2 WHERE viewing_figure = "6.72 million"
CREATE TABLE table_15026994_2 (episode VARCHAR, viewing_figure VARCHAR)
What are all episodes with a viewing figure of 6.72 million?
SELECT original_air_date FROM table_15026994_2 WHERE viewing_figure = "7.27 million"
CREATE TABLE table_15026994_2 (original_air_date VARCHAR, viewing_figure VARCHAR)
What original air dates are associated with a viewing figure of 7.27 million?
SELECT director FROM table_15026994_3 WHERE _number = 13
CREATE TABLE table_15026994_3 (director VARCHAR, _number VARCHAR)
Who is the director of the episode at entry number 13?
SELECT COUNT(writer) FROM table_15026994_3 WHERE director = "David Tucker"
CREATE TABLE table_15026994_3 (writer VARCHAR, director VARCHAR)
Who wrote the episode that David Tucker directed?
SELECT episode FROM table_15026994_3 WHERE viewing_figure = "6.34 million"
CREATE TABLE table_15026994_3 (episode VARCHAR, viewing_figure VARCHAR)
Which episode has been viewed 6.34 million times?
SELECT original_air_date FROM table_15026994_3 WHERE director = "Paul Marcus"
CREATE TABLE table_15026994_3 (original_air_date VARCHAR, director VARCHAR)
What is the original air date of the episode directed by Paul Marcus?
SELECT COUNT(license) FROM table_15038373_1 WHERE version = "1.2.2.0"
CREATE TABLE table_15038373_1 (license VARCHAR, version VARCHAR)
How many licenses have version 1.2.2.0?
SELECT version FROM table_15038373_1 WHERE software = "SBaGen"
CREATE TABLE table_15038373_1 (version VARCHAR, software VARCHAR)
What is the version with sbagen software?
SELECT COUNT(license) FROM table_15038373_1 WHERE software = "Mind WorkStation"
CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR)
How many licenses have mind workstation software?
SELECT software FROM table_15038373_1 WHERE version = "1.2.2.0"
CREATE TABLE table_15038373_1 (software VARCHAR, version VARCHAR)
What is the software with version 1.2.2.0?
SELECT license FROM table_15038373_1 WHERE software = "BeeOne SMOD/HMS"
CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR)
What is hte license for beeone smod/hms software?
SELECT operating_systems FROM table_15038373_1 WHERE software = "SBaGen"
CREATE TABLE table_15038373_1 (operating_systems VARCHAR, software VARCHAR)
What are all the operating systems for sbagen?
SELECT english FROM table_15040_8 WHERE french = "cheval"
CREATE TABLE table_15040_8 (english VARCHAR, french VARCHAR)
What is the English word for the French word cheval?
SELECT spanish FROM table_15040_8 WHERE french = "filtrer"
CREATE TABLE table_15040_8 (spanish VARCHAR, french VARCHAR)
What is the Spanish word for the French word filtrer?
SELECT french FROM table_15040_8 WHERE german = "filtern"
CREATE TABLE table_15040_8 (french VARCHAR, german VARCHAR)
What is the French word where the German word is filtern?
SELECT french FROM table_15040_8 WHERE russian = "filtrovat (фильтровать)"
CREATE TABLE table_15040_8 (french VARCHAR, russian VARCHAR)
What is the french word for the Russian word filtrovat (фильтровать)?
SELECT french FROM table_15040_8 WHERE italian = "nazione"
CREATE TABLE table_15040_8 (french VARCHAR, italian VARCHAR)
What is the French word for the Italian word nazione?
SELECT english FROM table_15040_8 WHERE russian = "loshad, kobyla (лошадь, кобыла)"
CREATE TABLE table_15040_8 (english VARCHAR, russian VARCHAR)
What is the English word for the Russian words loshad, kobyla (лошадь, кобыла)?
SELECT states FROM table_15055594_6 WHERE fall_06 = 3821
CREATE TABLE table_15055594_6 (states VARCHAR, fall_06 VARCHAR)
Which state had 3821 students in the fall of 06?
SELECT fall_05 FROM table_15055594_6 WHERE states = "Maryland"
CREATE TABLE table_15055594_6 (fall_05 VARCHAR, states VARCHAR)
How man students were from Maryland in Fall 05?
SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_07 = 3940
CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_07 VARCHAR)
What is the number of students in Fall 09 from the state that had 3940 in Fall 07?
SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_06 = 3821
CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_06 VARCHAR)
What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06?
SELECT MIN(fall_06) FROM table_15055594_6
CREATE TABLE table_15055594_6 (fall_06 INTEGER)
What is the lowest number of students from a state during the Fall 06 semester?
SELECT 1321 AS _percentage FROM table_15051_4 WHERE north_carolina = "Colorado"
CREATE TABLE table_15051_4 (north_carolina VARCHAR)
Name the 132.1% for where north carolina is colorado
SELECT COUNT(shot_pct) FROM table_1505809_2 WHERE blank_ends = 8
CREATE TABLE table_1505809_2 (shot_pct VARCHAR, blank_ends VARCHAR)
What is the total of all Shot PCT occurrences when the value of Blank Ends is 8?
SELECT locale FROM table_1505809_2 WHERE l = 2
CREATE TABLE table_1505809_2 (locale VARCHAR, l VARCHAR)
Where is the Locale when L is 2.
SELECT MIN(blank_ends) FROM table_1505809_2 WHERE stolen_ends = 7
CREATE TABLE table_1505809_2 (blank_ends INTEGER, stolen_ends VARCHAR)
What is the lowest value of Blank Ends when Stolen Ends is 7.
SELECT Ends AS lost FROM table_1505809_2 WHERE blank_ends = 9
CREATE TABLE table_1505809_2 (Ends VARCHAR, blank_ends VARCHAR)
What is the value of Ends Lost when Blank Ends is 9.
SELECT COUNT(combination_classification) FROM table_15059783_1 WHERE points_classification = "Alessandro Petacchi" AND winner = "Erik Zabel"
CREATE TABLE table_15059783_1 (combination_classification VARCHAR, points_classification VARCHAR, winner VARCHAR)
How many combination classifications have the winner as Erik Zabel and a points classification as Alessandro Petacchi
SELECT mountains_classification FROM table_15059783_1 WHERE winner = "Alejandro Valverde" AND points_classification = "Erik Zabel"
CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)
If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?
SELECT COUNT(team_classification) FROM table_15059783_1 WHERE combination_classification = "Alejandro Valverde" AND points_classification = "Alessandro Petacchi"
CREATE TABLE table_15059783_1 (team_classification VARCHAR, combination_classification VARCHAR, points_classification VARCHAR)
How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi?
SELECT COUNT(avg_finish) FROM table_1507423_4 WHERE winnings = "$3,816,362"
CREATE TABLE table_1507423_4 (avg_finish VARCHAR, winnings VARCHAR)
How many times were the winnings $3,816,362?
SELECT COUNT(wins) FROM table_1507423_4 WHERE position = "26th"
CREATE TABLE table_1507423_4 (wins VARCHAR, position VARCHAR)
How many wins were there when the position was 26th?
SELECT avg_finish FROM table_1507423_4 WHERE avg_start = "18.4"
CREATE TABLE table_1507423_4 (avg_finish VARCHAR, avg_start VARCHAR)
What was the average finish when the average start was 18.4?
SELECT COUNT(team_s_) FROM table_1507423_4 WHERE position = "76th"
CREATE TABLE table_1507423_4 (team_s_ VARCHAR, position VARCHAR)
How many teams had a 76th position finish?
SELECT MIN(wins) FROM table_1507423_4
CREATE TABLE table_1507423_4 (wins INTEGER)
What is the maximumum number of wins?
SELECT team_s_ FROM table_1507423_4 WHERE year = 2007
CREATE TABLE table_1507423_4 (team_s_ VARCHAR, year VARCHAR)
What teams won in 2007?
SELECT COUNT(top_10) FROM table_1507423_5 WHERE position = "78th"
CREATE TABLE table_1507423_5 (top_10 VARCHAR, position VARCHAR)
How many entries arr there for the top 10 for the 78th position?
SELECT MAX(top_10) FROM table_1507423_5 WHERE team_s_ = "#55/#83 Robby Gordon Motorsports"
CREATE TABLE table_1507423_5 (top_10 INTEGER, team_s_ VARCHAR)
Where does team #55/#83 robby gordon motorsports rank in the top 10?
SELECT COUNT(winnings) FROM table_1507423_5 WHERE team_s_ = "#07 Robby Gordon Motorsports"
CREATE TABLE table_1507423_5 (winnings VARCHAR, team_s_ VARCHAR)
How many entries are shown for winnings for team #07 robby gordon motorsports?
SELECT to_par FROM table_1507431_1 WHERE winning_score = 67 - 67 - 69 - 69 = 272
CREATE TABLE table_1507431_1 (to_par VARCHAR, winning_score VARCHAR)
What are all values for 'to par' for the winning score of 67-67-69-69=272?
SELECT date FROM table_1507431_1 WHERE tournament = "Buick Classic"
CREATE TABLE table_1507431_1 (date VARCHAR, tournament VARCHAR)
The tournament Buick Classic occured on what dates?
SELECT runner_up FROM table_1507431_1 WHERE no = 2
CREATE TABLE table_1507431_1 (runner_up VARCHAR, no VARCHAR)
Who are all runner-ups for No. 2?
SELECT date_completed FROM table_15070195_1 WHERE nickname = "Halley"
CREATE TABLE table_15070195_1 (date_completed VARCHAR, nickname VARCHAR)
when the nickname halley is used, what are the date completed
SELECT framed_size FROM table_15070195_1 WHERE date_completed = "02/91"
CREATE TABLE table_15070195_1 (framed_size VARCHAR, date_completed VARCHAR)
the date complted is 02/91, what framed size was used
SELECT framed_size FROM table_15070195_1 WHERE nickname = "Robot Black"
CREATE TABLE table_15070195_1 (framed_size VARCHAR, nickname VARCHAR)
for the robot black nickname, what framed size is used
SELECT attribute FROM table_1507852_1 WHERE type = "DOMNodeRemoved"
CREATE TABLE table_1507852_1 (attribute VARCHAR, type VARCHAR)
What are the attributes when the type is "DOMNodeRemoved"?
SELECT COUNT(category) FROM table_1507852_1 WHERE attribute = "onreset"
CREATE TABLE table_1507852_1 (category VARCHAR, attribute VARCHAR)
How many categories are there when the attribute is "onreset"?
SELECT COUNT(description) FROM table_1507852_1 WHERE attribute = "ondragstart"
CREATE TABLE table_1507852_1 (description VARCHAR, attribute VARCHAR)
How many descriptions are there when the attribute is "ondragstart"?
SELECT description FROM table_1507852_1 WHERE type = "reset"
CREATE TABLE table_1507852_1 (description VARCHAR, type VARCHAR)
When the type is "reset" what is the description?
SELECT team_classification FROM table_15088557_1 WHERE combination_classification = "Mederic Clain"
CREATE TABLE table_15088557_1 (team_classification VARCHAR, combination_classification VARCHAR)
Name all the team clasification where the combination classification is mederic clain
SELECT COUNT(stage) FROM table_15088557_1 WHERE winner = "Jose Vicente Garcia Acosta"
CREATE TABLE table_15088557_1 (stage VARCHAR, winner VARCHAR)
In how many stages did Jose Vicente Garcia Acosta won?
SELECT MIN(stage) FROM table_15088557_1 WHERE winner = "Sergei Smetanine"
CREATE TABLE table_15088557_1 (stage INTEGER, winner VARCHAR)
What is the minimum stage where Sergei Smetanine won?
SELECT MIN(stage) FROM table_15088557_1 WHERE mountains_classification = "Aitor Osa" AND winner = "Aitor González"
CREATE TABLE table_15088557_1 (stage INTEGER, mountains_classification VARCHAR, winner VARCHAR)
what is the minimum stage where mountains classification is aitor osa and aitor gonzález won?
SELECT COUNT(number_of_seasons_in_top_division) FROM table_1510519_1 WHERE position_in_2012_13 = "005 5th"
CREATE TABLE table_1510519_1 (number_of_seasons_in_top_division VARCHAR, position_in_2012_13 VARCHAR)
How many seasons in the top division for the team that finished 005 5th in 2012-2013
SELECT COUNT(country) FROM table_1515346_2 WHERE honoree_s_ = "Roberto De Vicenzo"
CREATE TABLE table_1515346_2 (country VARCHAR, honoree_s_ VARCHAR)
How many countries does honoree Roberto de Vicenzo represent?
SELECT country FROM table_1515346_2 WHERE player = "Keith Fergus"
CREATE TABLE table_1515346_2 (country VARCHAR, player VARCHAR)
For which country does Keith Fergus play?
SELECT player FROM table_1515346_2 WHERE country = "Australia" AND honoree_s_ = "Byron Nelson"
CREATE TABLE table_1515346_2 (player VARCHAR, country VARCHAR, honoree_s_ VARCHAR)
Who won the tournament for Australia in the year when Byron Nelson was Honoree?
SELECT margin_of_victory FROM table_1515346_2 WHERE honoree_s_ = "Tommy Armour"
CREATE TABLE table_1515346_2 (margin_of_victory VARCHAR, honoree_s_ VARCHAR)
What was the margin of victory in the year when the honoree was Tommy Armour?
SELECT MAX(year) FROM table_1514559_1 WHERE championship = "US Open"
CREATE TABLE table_1514559_1 (year INTEGER, championship VARCHAR)
What year was the most recent US Open championship?
SELECT COUNT(nominee) FROM table_15162479_8 WHERE net_vote = "15.17%"
CREATE TABLE table_15162479_8 (nominee VARCHAR, net_vote VARCHAR)
How many nominees had a net voice of 15.17%
SELECT nominee FROM table_15162479_8 WHERE net_vote = "34.46%"
CREATE TABLE table_15162479_8 (nominee VARCHAR, net_vote VARCHAR)
What nominees had a net vote of 34.46%?