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