question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which earth has west metal?
CREATE TABLE table_name_10 (earth VARCHAR, metal VARCHAR)
SELECT earth FROM table_name_10 WHERE metal = "west"
### Context: CREATE TABLE table_name_10 (earth VARCHAR, metal VARCHAR) ### Question: Which earth has west metal? ### Answer: SELECT earth FROM table_name_10 WHERE metal = "west"
Which wood has stabilizing earth?
CREATE TABLE table_name_50 (wood VARCHAR, earth VARCHAR)
SELECT wood FROM table_name_50 WHERE earth = "stabilizing"
### Context: CREATE TABLE table_name_50 (wood VARCHAR, earth VARCHAR) ### Question: Which wood has stabilizing earth? ### Answer: SELECT wood FROM table_name_50 WHERE earth = "stabilizing"
Which fire has dry metal?
CREATE TABLE table_name_24 (fire VARCHAR, metal VARCHAR)
SELECT fire FROM table_name_24 WHERE metal = "dry"
### Context: CREATE TABLE table_name_24 (fire VARCHAR, metal VARCHAR) ### Question: Which fire has dry metal? ### Answer: SELECT fire FROM table_name_24 WHERE metal = "dry"
what name has a Rank of lieutenant colonel, and a Begin Date of 1904-02-22 22 february 1904?
CREATE TABLE table_name_87 (name VARCHAR, rank VARCHAR, begin_date VARCHAR)
SELECT name FROM table_name_87 WHERE rank = "lieutenant colonel" AND begin_date = "1904-02-22 22 february 1904"
### Context: CREATE TABLE table_name_87 (name VARCHAR, rank VARCHAR, begin_date VARCHAR) ### Question: what name has a Rank of lieutenant colonel, and a Begin Date of 1904-02-22 22 february 1904? ### Answer: SELECT name FROM table_name_87 WHERE rank = "lieutenant colonel" AND begin_date = "1904-02-22 22 february 1904"
Oklahoma State produced a player in which position in the draft?
CREATE TABLE table_name_26 (position VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_26 WHERE school_club_team = "oklahoma state"
### Context: CREATE TABLE table_name_26 (position VARCHAR, school_club_team VARCHAR) ### Question: Oklahoma State produced a player in which position in the draft? ### Answer: SELECT position FROM table_name_26 WHERE school_club_team = "oklahoma state"
What is the highest round where a back named Ed Cody can be found?
CREATE TABLE table_name_53 (round INTEGER, position VARCHAR, player VARCHAR)
SELECT MAX(round) FROM table_name_53 WHERE position = "back" AND player = "ed cody"
### Context: CREATE TABLE table_name_53 (round INTEGER, position VARCHAR, player VARCHAR) ### Question: What is the highest round where a back named Ed Cody can be found? ### Answer: SELECT MAX(round) FROM table_name_53 WHERE position = "back" AND player = "ed cody"
Which Losses is the lowest one that has a Season smaller than 1920, and Draws larger than 0?
CREATE TABLE table_name_75 (losses INTEGER, season VARCHAR, draws VARCHAR)
SELECT MIN(losses) FROM table_name_75 WHERE season < 1920 AND draws > 0
### Context: CREATE TABLE table_name_75 (losses INTEGER, season VARCHAR, draws VARCHAR) ### Question: Which Losses is the lowest one that has a Season smaller than 1920, and Draws larger than 0? ### Answer: SELECT MIN(losses) FROM table_name_75 WHERE season < 1920 AND draws > 0
Which Draws have Losses larger than 16, and a Season larger than 1966?
CREATE TABLE table_name_53 (draws INTEGER, losses VARCHAR, season VARCHAR)
SELECT SUM(draws) FROM table_name_53 WHERE losses > 16 AND season > 1966
### Context: CREATE TABLE table_name_53 (draws INTEGER, losses VARCHAR, season VARCHAR) ### Question: Which Draws have Losses larger than 16, and a Season larger than 1966? ### Answer: SELECT SUM(draws) FROM table_name_53 WHERE losses > 16 AND season > 1966
Which Draws have a Team of annandale, and Losses smaller than 13?
CREATE TABLE table_name_58 (draws INTEGER, team VARCHAR, losses VARCHAR)
SELECT SUM(draws) FROM table_name_58 WHERE team = "annandale" AND losses < 13
### Context: CREATE TABLE table_name_58 (draws INTEGER, team VARCHAR, losses VARCHAR) ### Question: Which Draws have a Team of annandale, and Losses smaller than 13? ### Answer: SELECT SUM(draws) FROM table_name_58 WHERE team = "annandale" AND losses < 13
Which Draws have Losses smaller than 16, and a Team of university, and Wins larger than 0?
CREATE TABLE table_name_38 (draws INTEGER, wins VARCHAR, losses VARCHAR, team VARCHAR)
SELECT AVG(draws) FROM table_name_38 WHERE losses < 16 AND team = "university" AND wins > 0
### Context: CREATE TABLE table_name_38 (draws INTEGER, wins VARCHAR, losses VARCHAR, team VARCHAR) ### Question: Which Draws have Losses smaller than 16, and a Team of university, and Wins larger than 0? ### Answer: SELECT AVG(draws) FROM table_name_38 WHERE losses < 16 AND team = "university" AND wins > 0
Which Wins is the lowest one that has a Season smaller than 1920, and Losses smaller than 14?
CREATE TABLE table_name_99 (wins INTEGER, season VARCHAR, losses VARCHAR)
SELECT MIN(wins) FROM table_name_99 WHERE season < 1920 AND losses < 14
### Context: CREATE TABLE table_name_99 (wins INTEGER, season VARCHAR, losses VARCHAR) ### Question: Which Wins is the lowest one that has a Season smaller than 1920, and Losses smaller than 14? ### Answer: SELECT MIN(wins) FROM table_name_99 WHERE season < 1920 AND losses < 14
Which date had a sport of Academics?
CREATE TABLE table_name_70 (date VARCHAR, sport VARCHAR)
SELECT date FROM table_name_70 WHERE sport = "academics"
### Context: CREATE TABLE table_name_70 (date VARCHAR, sport VARCHAR) ### Question: Which date had a sport of Academics? ### Answer: SELECT date FROM table_name_70 WHERE sport = "academics"
Which date had a site of N/A?
CREATE TABLE table_name_9 (date VARCHAR, site VARCHAR)
SELECT date FROM table_name_9 WHERE site = "n/a"
### Context: CREATE TABLE table_name_9 (date VARCHAR, site VARCHAR) ### Question: Which date had a site of N/A? ### Answer: SELECT date FROM table_name_9 WHERE site = "n/a"
what was the builder in 1929
CREATE TABLE table_name_22 (builder VARCHAR, year_built VARCHAR)
SELECT builder FROM table_name_22 WHERE year_built = "1929"
### Context: CREATE TABLE table_name_22 (builder VARCHAR, year_built VARCHAR) ### Question: what was the builder in 1929 ### Answer: SELECT builder FROM table_name_22 WHERE year_built = "1929"
What was the attendance for the March 6 game, where one of the teams had 53 points.
CREATE TABLE table_name_55 (attendance VARCHAR, points VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_55 WHERE points = 53 AND date = "march 6"
### Context: CREATE TABLE table_name_55 (attendance VARCHAR, points VARCHAR, date VARCHAR) ### Question: What was the attendance for the March 6 game, where one of the teams had 53 points. ### Answer: SELECT attendance FROM table_name_55 WHERE points = 53 AND date = "march 6"
For the game with 6,126 in attendance, how many points did both teams have in the standings?
CREATE TABLE table_name_16 (points VARCHAR, attendance VARCHAR)
SELECT COUNT(points) FROM table_name_16 WHERE attendance = 6 OFFSET 126
### Context: CREATE TABLE table_name_16 (points VARCHAR, attendance VARCHAR) ### Question: For the game with 6,126 in attendance, how many points did both teams have in the standings? ### Answer: SELECT COUNT(points) FROM table_name_16 WHERE attendance = 6 OFFSET 126
What is the record of the team with a St. Louis home?
CREATE TABLE table_name_18 (record VARCHAR, home VARCHAR)
SELECT record FROM table_name_18 WHERE home = "st. louis"
### Context: CREATE TABLE table_name_18 (record VARCHAR, home VARCHAR) ### Question: What is the record of the team with a St. Louis home? ### Answer: SELECT record FROM table_name_18 WHERE home = "st. louis"
What country has a territory of French Guiana?
CREATE TABLE table_name_28 (country VARCHAR, territory VARCHAR)
SELECT country FROM table_name_28 WHERE territory = "french guiana"
### Context: CREATE TABLE table_name_28 (country VARCHAR, territory VARCHAR) ### Question: What country has a territory of French Guiana? ### Answer: SELECT country FROM table_name_28 WHERE territory = "french guiana"
Which 2008-12 has a 2013 of A, and a Tournament of wimbledon?
CREATE TABLE table_name_77 (tournament VARCHAR)
SELECT 2008 AS _12 FROM table_name_77 WHERE 2013 = "a" AND tournament = "wimbledon"
### Context: CREATE TABLE table_name_77 (tournament VARCHAR) ### Question: Which 2008-12 has a 2013 of A, and a Tournament of wimbledon? ### Answer: SELECT 2008 AS _12 FROM table_name_77 WHERE 2013 = "a" AND tournament = "wimbledon"
Which 2013 has a 2007 of A, and a Tournament of french open?
CREATE TABLE table_name_49 (tournament VARCHAR)
SELECT 2013 FROM table_name_49 WHERE 2007 = "a" AND tournament = "french open"
### Context: CREATE TABLE table_name_49 (tournament VARCHAR) ### Question: Which 2013 has a 2007 of A, and a Tournament of french open? ### Answer: SELECT 2013 FROM table_name_49 WHERE 2007 = "a" AND tournament = "french open"
Which 2013 has a 2006 of grand slam tournaments?
CREATE TABLE table_name_64 (Id VARCHAR)
SELECT 2013 FROM table_name_64 WHERE 2006 = "grand slam tournaments"
### Context: CREATE TABLE table_name_64 (Id VARCHAR) ### Question: Which 2013 has a 2006 of grand slam tournaments? ### Answer: SELECT 2013 FROM table_name_64 WHERE 2006 = "grand slam tournaments"
Which 2006 has a 2007 of A?
CREATE TABLE table_name_98 (Id VARCHAR)
SELECT 2006 FROM table_name_98 WHERE 2007 = "a"
### Context: CREATE TABLE table_name_98 (Id VARCHAR) ### Question: Which 2006 has a 2007 of A? ### Answer: SELECT 2006 FROM table_name_98 WHERE 2007 = "a"
Which 2008-12 has a 2007 of A, and a Tournament of us open?
CREATE TABLE table_name_80 (tournament VARCHAR)
SELECT 2008 AS _12 FROM table_name_80 WHERE 2007 = "a" AND tournament = "us open"
### Context: CREATE TABLE table_name_80 (tournament VARCHAR) ### Question: Which 2008-12 has a 2007 of A, and a Tournament of us open? ### Answer: SELECT 2008 AS _12 FROM table_name_80 WHERE 2007 = "a" AND tournament = "us open"
What was the record on April 1?
CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_57 WHERE date = "april 1"
### Context: CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR) ### Question: What was the record on April 1? ### Answer: SELECT record FROM table_name_57 WHERE date = "april 1"
What's the score on April 9?
CREATE TABLE table_name_62 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_62 WHERE date = "april 9"
### Context: CREATE TABLE table_name_62 (score VARCHAR, date VARCHAR) ### Question: What's the score on April 9? ### Answer: SELECT score FROM table_name_62 WHERE date = "april 9"
Where was home on April 3?
CREATE TABLE table_name_71 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_71 WHERE date = "april 3"
### Context: CREATE TABLE table_name_71 (home VARCHAR, date VARCHAR) ### Question: Where was home on April 3? ### Answer: SELECT home FROM table_name_71 WHERE date = "april 3"
What's the score on April 9?
CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_12 WHERE date = "april 9"
### Context: CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR) ### Question: What's the score on April 9? ### Answer: SELECT score FROM table_name_12 WHERE date = "april 9"
What is the average number of points of the team with more than 18 played?
CREATE TABLE table_name_72 (points INTEGER, played INTEGER)
SELECT AVG(points) FROM table_name_72 WHERE played > 18
### Context: CREATE TABLE table_name_72 (points INTEGER, played INTEGER) ### Question: What is the average number of points of the team with more than 18 played? ### Answer: SELECT AVG(points) FROM table_name_72 WHERE played > 18
What is the lowest score of the team with 19 points and less than 18 played?
CREATE TABLE table_name_82 (scored INTEGER, points VARCHAR, played VARCHAR)
SELECT MIN(scored) FROM table_name_82 WHERE points = 19 AND played < 18
### Context: CREATE TABLE table_name_82 (scored INTEGER, points VARCHAR, played VARCHAR) ### Question: What is the lowest score of the team with 19 points and less than 18 played? ### Answer: SELECT MIN(scored) FROM table_name_82 WHERE points = 19 AND played < 18
What is the average number of draws of the team with less than 17 points and less than 4 wins?
CREATE TABLE table_name_31 (draws INTEGER, points VARCHAR, wins VARCHAR)
SELECT AVG(draws) FROM table_name_31 WHERE points < 17 AND wins < 4
### Context: CREATE TABLE table_name_31 (draws INTEGER, points VARCHAR, wins VARCHAR) ### Question: What is the average number of draws of the team with less than 17 points and less than 4 wins? ### Answer: SELECT AVG(draws) FROM table_name_31 WHERE points < 17 AND wins < 4
What is the title of the record with an artist of Tangorodrim, category number FSR006?
CREATE TABLE table_name_46 (title VARCHAR, artist VARCHAR, cat__number VARCHAR)
SELECT title FROM table_name_46 WHERE artist = "tangorodrim" AND cat__number = "fsr006"
### Context: CREATE TABLE table_name_46 (title VARCHAR, artist VARCHAR, cat__number VARCHAR) ### Question: What is the title of the record with an artist of Tangorodrim, category number FSR006? ### Answer: SELECT title FROM table_name_46 WHERE artist = "tangorodrim" AND cat__number = "fsr006"
What was the format of the release by Triumfall?
CREATE TABLE table_name_31 (format VARCHAR, artist VARCHAR)
SELECT format FROM table_name_31 WHERE artist = "triumfall"
### Context: CREATE TABLE table_name_31 (format VARCHAR, artist VARCHAR) ### Question: What was the format of the release by Triumfall? ### Answer: SELECT format FROM table_name_31 WHERE artist = "triumfall"
What is the category number that was released in November 2007?
CREATE TABLE table_name_85 (cat__number VARCHAR, release_date VARCHAR)
SELECT cat__number FROM table_name_85 WHERE release_date = "november 2007"
### Context: CREATE TABLE table_name_85 (cat__number VARCHAR, release_date VARCHAR) ### Question: What is the category number that was released in November 2007? ### Answer: SELECT cat__number FROM table_name_85 WHERE release_date = "november 2007"
Which is the lowest round to have a pick of 12 and position of linebacker?
CREATE TABLE table_name_86 (round INTEGER, pick__number VARCHAR, position VARCHAR)
SELECT MIN(round) FROM table_name_86 WHERE pick__number = 12 AND position = "linebacker"
### Context: CREATE TABLE table_name_86 (round INTEGER, pick__number VARCHAR, position VARCHAR) ### Question: Which is the lowest round to have a pick of 12 and position of linebacker? ### Answer: SELECT MIN(round) FROM table_name_86 WHERE pick__number = 12 AND position = "linebacker"
Which player was picked in round 15 with a pick smaller than 13?
CREATE TABLE table_name_76 (name VARCHAR, pick__number VARCHAR, round VARCHAR)
SELECT name FROM table_name_76 WHERE pick__number < 13 AND round = 15
### Context: CREATE TABLE table_name_76 (name VARCHAR, pick__number VARCHAR, round VARCHAR) ### Question: Which player was picked in round 15 with a pick smaller than 13? ### Answer: SELECT name FROM table_name_76 WHERE pick__number < 13 AND round = 15
How many picks were from Lamar College?
CREATE TABLE table_name_34 (pick__number VARCHAR, college VARCHAR)
SELECT COUNT(pick__number) FROM table_name_34 WHERE college = "lamar"
### Context: CREATE TABLE table_name_34 (pick__number VARCHAR, college VARCHAR) ### Question: How many picks were from Lamar College? ### Answer: SELECT COUNT(pick__number) FROM table_name_34 WHERE college = "lamar"
How many overall values have a college of Notre Dame and rounds over 2?
CREATE TABLE table_name_97 (overall VARCHAR, college VARCHAR, round VARCHAR)
SELECT COUNT(overall) FROM table_name_97 WHERE college = "notre dame" AND round > 2
### Context: CREATE TABLE table_name_97 (overall VARCHAR, college VARCHAR, round VARCHAR) ### Question: How many overall values have a college of Notre Dame and rounds over 2? ### Answer: SELECT COUNT(overall) FROM table_name_97 WHERE college = "notre dame" AND round > 2
What player was at Albion?
CREATE TABLE table_name_90 (player VARCHAR, venue VARCHAR)
SELECT player FROM table_name_90 WHERE venue = "albion"
### Context: CREATE TABLE table_name_90 (player VARCHAR, venue VARCHAR) ### Question: What player was at Albion? ### Answer: SELECT player FROM table_name_90 WHERE venue = "albion"
Where was the venue that had 274 runs?
CREATE TABLE table_name_29 (venue VARCHAR, runs VARCHAR)
SELECT venue FROM table_name_29 WHERE runs = "274"
### Context: CREATE TABLE table_name_29 (venue VARCHAR, runs VARCHAR) ### Question: Where was the venue that had 274 runs? ### Answer: SELECT venue FROM table_name_29 WHERE runs = "274"
which athlete played against Queensland?
CREATE TABLE table_name_17 (player VARCHAR, opponent VARCHAR)
SELECT player FROM table_name_17 WHERE opponent = "queensland"
### Context: CREATE TABLE table_name_17 (player VARCHAR, opponent VARCHAR) ### Question: which athlete played against Queensland? ### Answer: SELECT player FROM table_name_17 WHERE opponent = "queensland"
Where is the venue with more than 245 runs?
CREATE TABLE table_name_71 (venue VARCHAR, runs VARCHAR)
SELECT venue FROM table_name_71 WHERE runs = "245"
### Context: CREATE TABLE table_name_71 (venue VARCHAR, runs VARCHAR) ### Question: Where is the venue with more than 245 runs? ### Answer: SELECT venue FROM table_name_71 WHERE runs = "245"
Where did Jack Badcock play?
CREATE TABLE table_name_22 (venue VARCHAR, player VARCHAR)
SELECT venue FROM table_name_22 WHERE player = "jack badcock"
### Context: CREATE TABLE table_name_22 (venue VARCHAR, player VARCHAR) ### Question: Where did Jack Badcock play? ### Answer: SELECT venue FROM table_name_22 WHERE player = "jack badcock"
Which Surface has a Date of 16 november 2007?
CREATE TABLE table_name_73 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_73 WHERE date = "16 november 2007"
### Context: CREATE TABLE table_name_73 (surface VARCHAR, date VARCHAR) ### Question: Which Surface has a Date of 16 november 2007? ### Answer: SELECT surface FROM table_name_73 WHERE date = "16 november 2007"
Name the date for 2004 afc asian cup qualifier
CREATE TABLE table_name_23 (date VARCHAR, competition VARCHAR)
SELECT date FROM table_name_23 WHERE competition = "2004 afc asian cup qualifier"
### Context: CREATE TABLE table_name_23 (date VARCHAR, competition VARCHAR) ### Question: Name the date for 2004 afc asian cup qualifier ### Answer: SELECT date FROM table_name_23 WHERE competition = "2004 afc asian cup qualifier"
Name the venue for 23 january 2009
CREATE TABLE table_name_88 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_88 WHERE date = "23 january 2009"
### Context: CREATE TABLE table_name_88 (venue VARCHAR, date VARCHAR) ### Question: Name the venue for 23 january 2009 ### Answer: SELECT venue FROM table_name_88 WHERE date = "23 january 2009"
Name the competition for khartoum
CREATE TABLE table_name_54 (competition VARCHAR, venue VARCHAR)
SELECT competition FROM table_name_54 WHERE venue = "khartoum"
### Context: CREATE TABLE table_name_54 (competition VARCHAR, venue VARCHAR) ### Question: Name the competition for khartoum ### Answer: SELECT competition FROM table_name_54 WHERE venue = "khartoum"
What is the fewest ties the team had with fewer than 7 games?
CREATE TABLE table_name_25 (drawn INTEGER, games INTEGER)
SELECT MIN(drawn) FROM table_name_25 WHERE games < 7
### Context: CREATE TABLE table_name_25 (drawn INTEGER, games INTEGER) ### Question: What is the fewest ties the team had with fewer than 7 games? ### Answer: SELECT MIN(drawn) FROM table_name_25 WHERE games < 7
What is the population for a county that has a median income of $69,760?
CREATE TABLE table_name_25 (population VARCHAR, median_household_income VARCHAR)
SELECT population FROM table_name_25 WHERE median_household_income = "$69,760"
### Context: CREATE TABLE table_name_25 (population VARCHAR, median_household_income VARCHAR) ### Question: What is the population for a county that has a median income of $69,760? ### Answer: SELECT population FROM table_name_25 WHERE median_household_income = "$69,760"
What county has $51,456 income per capita?
CREATE TABLE table_name_37 (county VARCHAR, per_capita_income VARCHAR)
SELECT county FROM table_name_37 WHERE per_capita_income = "$51,456"
### Context: CREATE TABLE table_name_37 (county VARCHAR, per_capita_income VARCHAR) ### Question: What county has $51,456 income per capita? ### Answer: SELECT county FROM table_name_37 WHERE per_capita_income = "$51,456"
Who was the opponent when attendance was 60,355?
CREATE TABLE table_name_87 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_87 WHERE attendance = "60,355"
### Context: CREATE TABLE table_name_87 (opponent VARCHAR, attendance VARCHAR) ### Question: Who was the opponent when attendance was 60,355? ### Answer: SELECT opponent FROM table_name_87 WHERE attendance = "60,355"
Which Net profit/loss (SEK) has a Basic eps (SEK) of -6.58, and Employees (Average/Year) larger than 31,035?
CREATE TABLE table_name_87 (net_profit_loss__sek_ INTEGER, basic_eps__sek_ VARCHAR, employees__average_year_ VARCHAR)
SELECT SUM(net_profit_loss__sek_) FROM table_name_87 WHERE basic_eps__sek_ = -6.58 AND employees__average_year_ > 31 OFFSET 035
### Context: CREATE TABLE table_name_87 (net_profit_loss__sek_ INTEGER, basic_eps__sek_ VARCHAR, employees__average_year_ VARCHAR) ### Question: Which Net profit/loss (SEK) has a Basic eps (SEK) of -6.58, and Employees (Average/Year) larger than 31,035? ### Answer: SELECT SUM(net_profit_loss__sek_) FROM table_name_87 WHERE basic_eps__sek_ = -6.58 AND employees__average_year_ > 31 OFFSET 035
What is the result when 13 is the week?
CREATE TABLE table_name_64 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_64 WHERE week = 13
### Context: CREATE TABLE table_name_64 (result VARCHAR, week VARCHAR) ### Question: What is the result when 13 is the week? ### Answer: SELECT result FROM table_name_64 WHERE week = 13
What average week has shea stadium as the game site, and 1979-12-09 as the date?
CREATE TABLE table_name_11 (week INTEGER, game_site VARCHAR, date VARCHAR)
SELECT AVG(week) FROM table_name_11 WHERE game_site = "shea stadium" AND date = "1979-12-09"
### Context: CREATE TABLE table_name_11 (week INTEGER, game_site VARCHAR, date VARCHAR) ### Question: What average week has shea stadium as the game site, and 1979-12-09 as the date? ### Answer: SELECT AVG(week) FROM table_name_11 WHERE game_site = "shea stadium" AND date = "1979-12-09"
Name the most rank for the United States with wins less than 1
CREATE TABLE table_name_18 (rank INTEGER, country VARCHAR, wins VARCHAR)
SELECT MAX(rank) FROM table_name_18 WHERE country = "united states" AND wins < 1
### Context: CREATE TABLE table_name_18 (rank INTEGER, country VARCHAR, wins VARCHAR) ### Question: Name the most rank for the United States with wins less than 1 ### Answer: SELECT MAX(rank) FROM table_name_18 WHERE country = "united states" AND wins < 1
Name the most rank for wins more than 0 and events of 26
CREATE TABLE table_name_58 (rank INTEGER, events VARCHAR, wins VARCHAR)
SELECT MAX(rank) FROM table_name_58 WHERE events = 26 AND wins > 0
### Context: CREATE TABLE table_name_58 (rank INTEGER, events VARCHAR, wins VARCHAR) ### Question: Name the most rank for wins more than 0 and events of 26 ### Answer: SELECT MAX(rank) FROM table_name_58 WHERE events = 26 AND wins > 0
Name the average earnings for rank of 3 and wins less than 3
CREATE TABLE table_name_34 (earnings___ INTEGER, rank VARCHAR, wins VARCHAR)
SELECT AVG(earnings___) AS $__ FROM table_name_34 WHERE rank = 3 AND wins < 3
### Context: CREATE TABLE table_name_34 (earnings___ INTEGER, rank VARCHAR, wins VARCHAR) ### Question: Name the average earnings for rank of 3 and wins less than 3 ### Answer: SELECT AVG(earnings___) AS $__ FROM table_name_34 WHERE rank = 3 AND wins < 3
What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85?
CREATE TABLE table_name_14 (area__km_2__ INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR)
SELECT AVG(area__km_2__) FROM table_name_14 WHERE density__inhabitants_km_2__ < 206.2 AND altitude__mslm_ < 85
### Context: CREATE TABLE table_name_14 (area__km_2__ INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR) ### Question: What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85? ### Answer: SELECT AVG(area__km_2__) FROM table_name_14 WHERE density__inhabitants_km_2__ < 206.2 AND altitude__mslm_ < 85
What is the lowest density of alessandria where the area is bigger than 16.02 and altitude is less than 116?
CREATE TABLE table_name_39 (density__inhabitants_km_2__ INTEGER, city VARCHAR, area__km_2__ VARCHAR, altitude__mslm_ VARCHAR)
SELECT MIN(density__inhabitants_km_2__) FROM table_name_39 WHERE area__km_2__ > 16.02 AND altitude__mslm_ < 116 AND city = "alessandria"
### Context: CREATE TABLE table_name_39 (density__inhabitants_km_2__ INTEGER, city VARCHAR, area__km_2__ VARCHAR, altitude__mslm_ VARCHAR) ### Question: What is the lowest density of alessandria where the area is bigger than 16.02 and altitude is less than 116? ### Answer: SELECT MIN(density__inhabitants_km_2__) FROM table_name_39 WHERE area__km_2__ > 16.02 AND altitude__mslm_ < 116 AND city = "alessandria"
What is the lowest density of serravalle scrivia?
CREATE TABLE table_name_87 (density__inhabitants_km_2__ INTEGER, city VARCHAR)
SELECT MIN(density__inhabitants_km_2__) FROM table_name_87 WHERE city = "serravalle scrivia"
### Context: CREATE TABLE table_name_87 (density__inhabitants_km_2__ INTEGER, city VARCHAR) ### Question: What is the lowest density of serravalle scrivia? ### Answer: SELECT MIN(density__inhabitants_km_2__) FROM table_name_87 WHERE city = "serravalle scrivia"
What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?
CREATE TABLE table_name_37 (population INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR, city VARCHAR)
SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = "alessandria" AND density__inhabitants_km_2__ < 461.8
### Context: CREATE TABLE table_name_37 (population INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR, city VARCHAR) ### Question: What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8? ### Answer: SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = "alessandria" AND density__inhabitants_km_2__ < 461.8
What myspace has linkedin as the site, with an orkit greater than 3?
CREATE TABLE table_name_62 (myspace INTEGER, site VARCHAR, orkut VARCHAR)
SELECT AVG(myspace) FROM table_name_62 WHERE site = "linkedin" AND orkut > 3
### Context: CREATE TABLE table_name_62 (myspace INTEGER, site VARCHAR, orkut VARCHAR) ### Question: What myspace has linkedin as the site, with an orkit greater than 3? ### Answer: SELECT AVG(myspace) FROM table_name_62 WHERE site = "linkedin" AND orkut > 3
How many linkedin have Facebook as the site, with a myspace less than 64?
CREATE TABLE table_name_79 (linkedin VARCHAR, site VARCHAR, myspace VARCHAR)
SELECT COUNT(linkedin) FROM table_name_79 WHERE site = "facebook" AND myspace < 64
### Context: CREATE TABLE table_name_79 (linkedin VARCHAR, site VARCHAR, myspace VARCHAR) ### Question: How many linkedin have Facebook as the site, with a myspace less than 64? ### Answer: SELECT COUNT(linkedin) FROM table_name_79 WHERE site = "facebook" AND myspace < 64
What is the highest Ning that has a bebo less than 4, an orkut less than 100, with a plaxo greater than 0?
CREATE TABLE table_name_40 (ning INTEGER, plaxo VARCHAR, bebo VARCHAR, orkut VARCHAR)
SELECT MAX(ning) FROM table_name_40 WHERE bebo < 4 AND orkut < 100 AND plaxo > 0
### Context: CREATE TABLE table_name_40 (ning INTEGER, plaxo VARCHAR, bebo VARCHAR, orkut VARCHAR) ### Question: What is the highest Ning that has a bebo less than 4, an orkut less than 100, with a plaxo greater than 0? ### Answer: SELECT MAX(ning) FROM table_name_40 WHERE bebo < 4 AND orkut < 100 AND plaxo > 0
What is the average plaxo that has a myspace greater than 64, a bebo greater than 3, with 4 as the friendster?
CREATE TABLE table_name_63 (plaxo INTEGER, friendster VARCHAR, myspace VARCHAR, bebo VARCHAR)
SELECT AVG(plaxo) FROM table_name_63 WHERE myspace > 64 AND bebo > 3 AND friendster = 4
### Context: CREATE TABLE table_name_63 (plaxo INTEGER, friendster VARCHAR, myspace VARCHAR, bebo VARCHAR) ### Question: What is the average plaxo that has a myspace greater than 64, a bebo greater than 3, with 4 as the friendster? ### Answer: SELECT AVG(plaxo) FROM table_name_63 WHERE myspace > 64 AND bebo > 3 AND friendster = 4
What album has the title I Need A Life with the label of warp records / paper bag records?
CREATE TABLE table_name_18 (album VARCHAR, label VARCHAR, title VARCHAR)
SELECT album FROM table_name_18 WHERE label = "warp records / paper bag records" AND title = "i need a life"
### Context: CREATE TABLE table_name_18 (album VARCHAR, label VARCHAR, title VARCHAR) ### Question: What album has the title I Need A Life with the label of warp records / paper bag records? ### Answer: SELECT album FROM table_name_18 WHERE label = "warp records / paper bag records" AND title = "i need a life"
What title has a Label of warp records / paper bag records?
CREATE TABLE table_name_39 (title VARCHAR, label VARCHAR)
SELECT title FROM table_name_39 WHERE label = "warp records / paper bag records"
### Context: CREATE TABLE table_name_39 (title VARCHAR, label VARCHAR) ### Question: What title has a Label of warp records / paper bag records? ### Answer: SELECT title FROM table_name_39 WHERE label = "warp records / paper bag records"
What's the lowest Points for the Team of San Martín De Tucumán, and a Played that's smaller than 38?
CREATE TABLE table_name_84 (points INTEGER, team VARCHAR, played VARCHAR)
SELECT MIN(points) FROM table_name_84 WHERE team = "san martín de tucumán" AND played < 38
### Context: CREATE TABLE table_name_84 (points INTEGER, team VARCHAR, played VARCHAR) ### Question: What's the lowest Points for the Team of San Martín De Tucumán, and a Played that's smaller than 38? ### Answer: SELECT MIN(points) FROM table_name_84 WHERE team = "san martín de tucumán" AND played < 38
What nation has a total more than 3, with more than 5 for bronze, and less than 4 for the silver?
CREATE TABLE table_name_29 (nation VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_29 WHERE total > 3 AND bronze > 5 AND silver < 4
### Context: CREATE TABLE table_name_29 (nation VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR) ### Question: What nation has a total more than 3, with more than 5 for bronze, and less than 4 for the silver? ### Answer: SELECT nation FROM table_name_29 WHERE total > 3 AND bronze > 5 AND silver < 4
What is the largest number for bronze with a rank of 19?
CREATE TABLE table_name_61 (bronze INTEGER, rank VARCHAR)
SELECT MAX(bronze) FROM table_name_61 WHERE rank = "19"
### Context: CREATE TABLE table_name_61 (bronze INTEGER, rank VARCHAR) ### Question: What is the largest number for bronze with a rank of 19? ### Answer: SELECT MAX(bronze) FROM table_name_61 WHERE rank = "19"
what season had a score of 1:0
CREATE TABLE table_name_4 (season VARCHAR, score VARCHAR)
SELECT season FROM table_name_4 WHERE score = "1:0"
### Context: CREATE TABLE table_name_4 (season VARCHAR, score VARCHAR) ### Question: what season had a score of 1:0 ### Answer: SELECT season FROM table_name_4 WHERE score = "1:0"
indoor year is 1978, what is the record?
CREATE TABLE table_name_70 (record VARCHAR, indoor_year VARCHAR)
SELECT record FROM table_name_70 WHERE indoor_year = "1978"
### Context: CREATE TABLE table_name_70 (record VARCHAR, indoor_year VARCHAR) ### Question: indoor year is 1978, what is the record? ### Answer: SELECT record FROM table_name_70 WHERE indoor_year = "1978"
Record of 11-10-3 is what sum of game #?
CREATE TABLE table_name_57 (game__number INTEGER, record VARCHAR)
SELECT SUM(game__number) FROM table_name_57 WHERE record = "11-10-3"
### Context: CREATE TABLE table_name_57 (game__number INTEGER, record VARCHAR) ### Question: Record of 11-10-3 is what sum of game #? ### Answer: SELECT SUM(game__number) FROM table_name_57 WHERE record = "11-10-3"
Points of 31, and a Score of 1 - 5 is what home?
CREATE TABLE table_name_51 (home VARCHAR, points VARCHAR, score VARCHAR)
SELECT home FROM table_name_51 WHERE points = 31 AND score = "1 - 5"
### Context: CREATE TABLE table_name_51 (home VARCHAR, points VARCHAR, score VARCHAR) ### Question: Points of 31, and a Score of 1 - 5 is what home? ### Answer: SELECT home FROM table_name_51 WHERE points = 31 AND score = "1 - 5"
Visitor of calgary has what record?
CREATE TABLE table_name_30 (record VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_30 WHERE visitor = "calgary"
### Context: CREATE TABLE table_name_30 (record VARCHAR, visitor VARCHAR) ### Question: Visitor of calgary has what record? ### Answer: SELECT record FROM table_name_30 WHERE visitor = "calgary"
Score of 2 - 2 had what points?
CREATE TABLE table_name_47 (points VARCHAR, score VARCHAR)
SELECT points FROM table_name_47 WHERE score = "2 - 2"
### Context: CREATE TABLE table_name_47 (points VARCHAR, score VARCHAR) ### Question: Score of 2 - 2 had what points? ### Answer: SELECT points FROM table_name_47 WHERE score = "2 - 2"
What was the Attendance when Lincoln City was the Opponents with H/A of A?
CREATE TABLE table_name_20 (attendance VARCHAR, opponents VARCHAR, h___a VARCHAR)
SELECT COUNT(attendance) FROM table_name_20 WHERE opponents = "lincoln city" AND h___a = "a"
### Context: CREATE TABLE table_name_20 (attendance VARCHAR, opponents VARCHAR, h___a VARCHAR) ### Question: What was the Attendance when Lincoln City was the Opponents with H/A of A? ### Answer: SELECT COUNT(attendance) FROM table_name_20 WHERE opponents = "lincoln city" AND h___a = "a"
what Area has the frequency of 100.3 and an On-air ID of yass fm?
CREATE TABLE table_name_94 (area_served VARCHAR, frequency VARCHAR, on_air_id VARCHAR)
SELECT area_served FROM table_name_94 WHERE frequency = "100.3" AND on_air_id = "yass fm"
### Context: CREATE TABLE table_name_94 (area_served VARCHAR, frequency VARCHAR, on_air_id VARCHAR) ### Question: what Area has the frequency of 100.3 and an On-air ID of yass fm? ### Answer: SELECT area_served FROM table_name_94 WHERE frequency = "100.3" AND on_air_id = "yass fm"
What is the Callsign with an Area of tamworth and frequency of 0 88.9?
CREATE TABLE table_name_8 (callsign VARCHAR, area_served VARCHAR, frequency VARCHAR)
SELECT callsign FROM table_name_8 WHERE area_served = "tamworth" AND frequency = "0 88.9"
### Context: CREATE TABLE table_name_8 (callsign VARCHAR, area_served VARCHAR, frequency VARCHAR) ### Question: What is the Callsign with an Area of tamworth and frequency of 0 88.9? ### Answer: SELECT callsign FROM table_name_8 WHERE area_served = "tamworth" AND frequency = "0 88.9"
What is the Purpose of the Area Braidwood?
CREATE TABLE table_name_62 (purpose VARCHAR, area_served VARCHAR)
SELECT purpose FROM table_name_62 WHERE area_served = "braidwood"
### Context: CREATE TABLE table_name_62 (purpose VARCHAR, area_served VARCHAR) ### Question: What is the Purpose of the Area Braidwood? ### Answer: SELECT purpose FROM table_name_62 WHERE area_served = "braidwood"
What Band has a Frequency of 0 99.7 in the Area of Newcastle?
CREATE TABLE table_name_34 (band VARCHAR, frequency VARCHAR, area_served VARCHAR)
SELECT band FROM table_name_34 WHERE frequency = "0 99.7" AND area_served = "newcastle"
### Context: CREATE TABLE table_name_34 (band VARCHAR, frequency VARCHAR, area_served VARCHAR) ### Question: What Band has a Frequency of 0 99.7 in the Area of Newcastle? ### Answer: SELECT band FROM table_name_34 WHERE frequency = "0 99.7" AND area_served = "newcastle"
What is the Frequency of Gosford when the Callsign of 2cfm?
CREATE TABLE table_name_5 (frequency VARCHAR, area_served VARCHAR, callsign VARCHAR)
SELECT frequency FROM table_name_5 WHERE area_served = "gosford" AND callsign = "2cfm"
### Context: CREATE TABLE table_name_5 (frequency VARCHAR, area_served VARCHAR, callsign VARCHAR) ### Question: What is the Frequency of Gosford when the Callsign of 2cfm? ### Answer: SELECT frequency FROM table_name_5 WHERE area_served = "gosford" AND callsign = "2cfm"
What is the On-air ID with the frequency of 105.9, and purpose of commercial?
CREATE TABLE table_name_24 (on_air_id VARCHAR, frequency VARCHAR, purpose VARCHAR)
SELECT on_air_id FROM table_name_24 WHERE frequency = "105.9" AND purpose = "commercial"
### Context: CREATE TABLE table_name_24 (on_air_id VARCHAR, frequency VARCHAR, purpose VARCHAR) ### Question: What is the On-air ID with the frequency of 105.9, and purpose of commercial? ### Answer: SELECT on_air_id FROM table_name_24 WHERE frequency = "105.9" AND purpose = "commercial"
What Time/Retired has a Points that's smaller than 11 and has a Laps of 74?
CREATE TABLE table_name_48 (time_retired VARCHAR, points VARCHAR, laps VARCHAR)
SELECT time_retired FROM table_name_48 WHERE points < 11 AND laps = 74
### Context: CREATE TABLE table_name_48 (time_retired VARCHAR, points VARCHAR, laps VARCHAR) ### Question: What Time/Retired has a Points that's smaller than 11 and has a Laps of 74? ### Answer: SELECT time_retired FROM table_name_48 WHERE points < 11 AND laps = 74
What Time/Retired has a Laps of 86 and the Team of HVM Racing?
CREATE TABLE table_name_73 (time_retired VARCHAR, laps VARCHAR, team VARCHAR)
SELECT time_retired FROM table_name_73 WHERE laps = 86 AND team = "hvm racing"
### Context: CREATE TABLE table_name_73 (time_retired VARCHAR, laps VARCHAR, team VARCHAR) ### Question: What Time/Retired has a Laps of 86 and the Team of HVM Racing? ### Answer: SELECT time_retired FROM table_name_73 WHERE laps = 86 AND team = "hvm racing"
What is the Catalog number in France?
CREATE TABLE table_name_19 (catalog VARCHAR, region VARCHAR)
SELECT catalog FROM table_name_19 WHERE region = "france"
### Context: CREATE TABLE table_name_19 (catalog VARCHAR, region VARCHAR) ### Question: What is the Catalog number in France? ### Answer: SELECT catalog FROM table_name_19 WHERE region = "france"
What is the Format o Catalog F4 87199?
CREATE TABLE table_name_99 (format VARCHAR, catalog VARCHAR)
SELECT format FROM table_name_99 WHERE catalog = "f4 87199"
### Context: CREATE TABLE table_name_99 (format VARCHAR, catalog VARCHAR) ### Question: What is the Format o Catalog F4 87199? ### Answer: SELECT format FROM table_name_99 WHERE catalog = "f4 87199"
What is the Region of Catalog 885 973-4?
CREATE TABLE table_name_74 (region VARCHAR, catalog VARCHAR)
SELECT region FROM table_name_74 WHERE catalog = "885 973-4"
### Context: CREATE TABLE table_name_74 (region VARCHAR, catalog VARCHAR) ### Question: What is the Region of Catalog 885 973-4? ### Answer: SELECT region FROM table_name_74 WHERE catalog = "885 973-4"
What is the Catalog number in the Region of France?
CREATE TABLE table_name_42 (catalog VARCHAR, region VARCHAR)
SELECT catalog FROM table_name_42 WHERE region = "france"
### Context: CREATE TABLE table_name_42 (catalog VARCHAR, region VARCHAR) ### Question: What is the Catalog number in the Region of France? ### Answer: SELECT catalog FROM table_name_42 WHERE region = "france"
How many people in total attended the game on 1 november 1997?
CREATE TABLE table_name_37 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_37 WHERE date = "1 november 1997"
### Context: CREATE TABLE table_name_37 (attendance VARCHAR, date VARCHAR) ### Question: How many people in total attended the game on 1 november 1997? ### Answer: SELECT COUNT(attendance) FROM table_name_37 WHERE date = "1 november 1997"
Wins of 3, and a Pos. larger than 3 is what average loses?
CREATE TABLE table_name_75 (loses INTEGER, wins VARCHAR, pos VARCHAR)
SELECT AVG(loses) FROM table_name_75 WHERE wins = 3 AND pos > 3
### Context: CREATE TABLE table_name_75 (loses INTEGER, wins VARCHAR, pos VARCHAR) ### Question: Wins of 3, and a Pos. larger than 3 is what average loses? ### Answer: SELECT AVG(loses) FROM table_name_75 WHERE wins = 3 AND pos > 3
Matches larger than 5 is the sum of what position?
CREATE TABLE table_name_67 (pos INTEGER, matches INTEGER)
SELECT SUM(pos) FROM table_name_67 WHERE matches > 5
### Context: CREATE TABLE table_name_67 (pos INTEGER, matches INTEGER) ### Question: Matches larger than 5 is the sum of what position? ### Answer: SELECT SUM(pos) FROM table_name_67 WHERE matches > 5
What years did Dwane Morrison had a pct less than 0.389 and losses less than 12?
CREATE TABLE table_name_11 (years VARCHAR, name VARCHAR, pct VARCHAR, lost VARCHAR)
SELECT years FROM table_name_11 WHERE pct < 0.389 AND lost < 12 AND name = "dwane morrison"
### Context: CREATE TABLE table_name_11 (years VARCHAR, name VARCHAR, pct VARCHAR, lost VARCHAR) ### Question: What years did Dwane Morrison had a pct less than 0.389 and losses less than 12? ### Answer: SELECT years FROM table_name_11 WHERE pct < 0.389 AND lost < 12 AND name = "dwane morrison"
How many seasons did Charles C. Farrell coach?
CREATE TABLE table_name_56 (seasons VARCHAR, name VARCHAR)
SELECT COUNT(seasons) FROM table_name_56 WHERE name = "charles c. farrell"
### Context: CREATE TABLE table_name_56 (seasons VARCHAR, name VARCHAR) ### Question: How many seasons did Charles C. Farrell coach? ### Answer: SELECT COUNT(seasons) FROM table_name_56 WHERE name = "charles c. farrell"
What's the average pct for George Felton when he had losses greater than 7?
CREATE TABLE table_name_4 (pct INTEGER, lost VARCHAR, name VARCHAR)
SELECT AVG(pct) FROM table_name_4 WHERE lost > 7 AND name = "george felton"
### Context: CREATE TABLE table_name_4 (pct INTEGER, lost VARCHAR, name VARCHAR) ### Question: What's the average pct for George Felton when he had losses greater than 7? ### Answer: SELECT AVG(pct) FROM table_name_4 WHERE lost > 7 AND name = "george felton"
Which Margin of victory has a Runner(s)-up of josé maria cañizares?
CREATE TABLE table_name_38 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_38 WHERE runner_s__up = "josé maria cañizares"
### Context: CREATE TABLE table_name_38 (margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: Which Margin of victory has a Runner(s)-up of josé maria cañizares? ### Answer: SELECT margin_of_victory FROM table_name_38 WHERE runner_s__up = "josé maria cañizares"
Which Tournament has a Runner(s)-up of bob charles?
CREATE TABLE table_name_49 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT tournament FROM table_name_49 WHERE runner_s__up = "bob charles"
### Context: CREATE TABLE table_name_49 (tournament VARCHAR, runner_s__up VARCHAR) ### Question: Which Tournament has a Runner(s)-up of bob charles? ### Answer: SELECT tournament FROM table_name_49 WHERE runner_s__up = "bob charles"
What was the winning score on 7 jun 1976?
CREATE TABLE table_name_4 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_4 WHERE date = "7 jun 1976"
### Context: CREATE TABLE table_name_4 (winning_score VARCHAR, date VARCHAR) ### Question: What was the winning score on 7 jun 1976? ### Answer: SELECT winning_score FROM table_name_4 WHERE date = "7 jun 1976"
Which Winning score has a Margin of victory of 1 stroke, and a Date of 21 jun 1981?
CREATE TABLE table_name_19 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_19 WHERE margin_of_victory = "1 stroke" AND date = "21 jun 1981"
### Context: CREATE TABLE table_name_19 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR) ### Question: Which Winning score has a Margin of victory of 1 stroke, and a Date of 21 jun 1981? ### Answer: SELECT winning_score FROM table_name_19 WHERE margin_of_victory = "1 stroke" AND date = "21 jun 1981"
On which date was the Winning score –5 (70-65-69-75=279)?
CREATE TABLE table_name_92 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_name_92 WHERE winning_score = –5(70 - 65 - 69 - 75 = 279)
### Context: CREATE TABLE table_name_92 (date VARCHAR, winning_score VARCHAR) ### Question: On which date was the Winning score –5 (70-65-69-75=279)? ### Answer: SELECT date FROM table_name_92 WHERE winning_score = –5(70 - 65 - 69 - 75 = 279)
Which Runner(s)-up has a Winning score of –9 (71-68-72-68=279)?
CREATE TABLE table_name_71 (runner_s__up VARCHAR, winning_score VARCHAR)
SELECT runner_s__up FROM table_name_71 WHERE winning_score = –9(71 - 68 - 72 - 68 = 279)
### Context: CREATE TABLE table_name_71 (runner_s__up VARCHAR, winning_score VARCHAR) ### Question: Which Runner(s)-up has a Winning score of –9 (71-68-72-68=279)? ### Answer: SELECT runner_s__up FROM table_name_71 WHERE winning_score = –9(71 - 68 - 72 - 68 = 279)