question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which athlete played at the Birmingham venue?
CREATE TABLE table_name_32 (athlete VARCHAR, venue VARCHAR)
SELECT athlete FROM table_name_32 WHERE venue = "birmingham"
### Context: CREATE TABLE table_name_32 (athlete VARCHAR, venue VARCHAR) ### Question: Which athlete played at the Birmingham venue? ### Answer: SELECT athlete FROM table_name_32 WHERE venue = "birmingham"
Which Frequency has a Webcast of •, and a Callsign of xemr?
CREATE TABLE table_name_31 (frequency INTEGER, webcast VARCHAR, callsign VARCHAR)
SELECT AVG(frequency) FROM table_name_31 WHERE webcast = "•" AND callsign = "xemr"
### Context: CREATE TABLE table_name_31 (frequency INTEGER, webcast VARCHAR, callsign VARCHAR) ### Question: Which Frequency has a Webcast of •, and a Callsign of xemr? ### Answer: SELECT AVG(frequency) FROM table_name_31 WHERE webcast = "•" AND callsign = "xemr"
Which Website has a Frequency smaller than 760 and a Callsign of kkyx?
CREATE TABLE table_name_85 (website VARCHAR, frequency VARCHAR, callsign VARCHAR)
SELECT website FROM table_name_85 WHERE frequency < 760 AND callsign = "kkyx"
### Context: CREATE TABLE table_name_85 (website VARCHAR, frequency VARCHAR, callsign VARCHAR) ### Question: Which Website has a Frequency smaller than 760 and a Callsign of kkyx? ### Answer: SELECT website FROM table_name_85 WHERE frequency < 760 AND callsign = "kkyx"
Which Webcast has a Callsign of kgbt?
CREATE TABLE table_name_91 (webcast VARCHAR, callsign VARCHAR)
SELECT webcast FROM table_name_91 WHERE callsign = "kgbt"
### Context: CREATE TABLE table_name_91 (webcast VARCHAR, callsign VARCHAR) ### Question: Which Webcast has a Callsign of kgbt? ### Answer: SELECT webcast FROM table_name_91 WHERE callsign = "kgbt"
Which Frequency has a Website of •, and a Webcast of •in san antonio?
CREATE TABLE table_name_44 (frequency INTEGER, city_of_license VARCHAR, website VARCHAR, webcast VARCHAR)
SELECT AVG(frequency) FROM table_name_44 WHERE website = "•" AND webcast = "•" AND city_of_license = "san antonio"
### Context: CREATE TABLE table_name_44 (frequency INTEGER, city_of_license VARCHAR, website VARCHAR, webcast VARCHAR) ### Question: Which Frequency has a Website of •, and a Webcast of •in san antonio? ### Answer: SELECT AVG(frequency) FROM table_name_44 WHERE website = "•" AND webcast = "•" AND city_of_license = "san antonio"
What years did the player play when he scored 78 points and 22 goals?
CREATE TABLE table_name_56 (years VARCHAR, points VARCHAR, goals VARCHAR)
SELECT years FROM table_name_56 WHERE points = "78" AND goals = "22"
### Context: CREATE TABLE table_name_56 (years VARCHAR, points VARCHAR, goals VARCHAR) ### Question: What years did the player play when he scored 78 points and 22 goals? ### Answer: SELECT years FROM table_name_56 WHERE points = "78" AND goals = "22"
How many goals did Joey Worthen have when he had 15 assists?
CREATE TABLE table_name_78 (goals VARCHAR, assists VARCHAR, player VARCHAR)
SELECT goals FROM table_name_78 WHERE assists = "15" AND player = "joey worthen"
### Context: CREATE TABLE table_name_78 (goals VARCHAR, assists VARCHAR, player VARCHAR) ### Question: How many goals did Joey Worthen have when he had 15 assists? ### Answer: SELECT goals FROM table_name_78 WHERE assists = "15" AND player = "joey worthen"
How many goals were scored when 158 points were collected?
CREATE TABLE table_name_45 (goals VARCHAR, points VARCHAR)
SELECT goals FROM table_name_45 WHERE points = "158"
### Context: CREATE TABLE table_name_45 (goals VARCHAR, points VARCHAR) ### Question: How many goals were scored when 158 points were collected? ### Answer: SELECT goals FROM table_name_45 WHERE points = "158"
What years had players who scored 36 goals?
CREATE TABLE table_name_51 (years VARCHAR, goals VARCHAR)
SELECT years FROM table_name_51 WHERE goals = "36"
### Context: CREATE TABLE table_name_51 (years VARCHAR, goals VARCHAR) ### Question: What years had players who scored 36 goals? ### Answer: SELECT years FROM table_name_51 WHERE goals = "36"
What was the rank of the player who had 13 assists?
CREATE TABLE table_name_14 (rank VARCHAR, assists VARCHAR)
SELECT rank FROM table_name_14 WHERE assists = "13"
### Context: CREATE TABLE table_name_14 (rank VARCHAR, assists VARCHAR) ### Question: What was the rank of the player who had 13 assists? ### Answer: SELECT rank FROM table_name_14 WHERE assists = "13"
What is the sum of the weeks during which the Redskins played against the Houston Oilers and had more than 54,582 fans in attendance?
CREATE TABLE table_name_97 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
SELECT SUM(week) FROM table_name_97 WHERE opponent = "houston oilers" AND attendance > 54 OFFSET 582
### Context: CREATE TABLE table_name_97 (week INTEGER, opponent VARCHAR, attendance VARCHAR) ### Question: What is the sum of the weeks during which the Redskins played against the Houston Oilers and had more than 54,582 fans in attendance? ### Answer: SELECT SUM(week) FROM table_name_97 WHERE opponent = "houston oilers" AND attendance > 54 OFFSET 582
What is the highest attendance for week 1?
CREATE TABLE table_name_63 (attendance INTEGER, week INTEGER)
SELECT MAX(attendance) FROM table_name_63 WHERE week < 1
### Context: CREATE TABLE table_name_63 (attendance INTEGER, week INTEGER) ### Question: What is the highest attendance for week 1? ### Answer: SELECT MAX(attendance) FROM table_name_63 WHERE week < 1
What is the total number in attendance for the game after week 8 that was on November 25, 1979?
CREATE TABLE table_name_49 (attendance VARCHAR, week VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_49 WHERE week > 8 AND date = "november 25, 1979"
### Context: CREATE TABLE table_name_49 (attendance VARCHAR, week VARCHAR, date VARCHAR) ### Question: What is the total number in attendance for the game after week 8 that was on November 25, 1979? ### Answer: SELECT COUNT(attendance) FROM table_name_49 WHERE week > 8 AND date = "november 25, 1979"
Which Surface has a Score of 2009 wta tour?
CREATE TABLE table_name_13 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_13 WHERE score = "2009 wta tour"
### Context: CREATE TABLE table_name_13 (surface VARCHAR, score VARCHAR) ### Question: Which Surface has a Score of 2009 wta tour? ### Answer: SELECT surface FROM table_name_13 WHERE score = "2009 wta tour"
Which Round has a Ranking of 2008 wta tour?
CREATE TABLE table_name_31 (round VARCHAR, ranking VARCHAR)
SELECT round FROM table_name_31 WHERE ranking = "2008 wta tour"
### Context: CREATE TABLE table_name_31 (round VARCHAR, ranking VARCHAR) ### Question: Which Round has a Ranking of 2008 wta tour? ### Answer: SELECT round FROM table_name_31 WHERE ranking = "2008 wta tour"
Which Surface has a Round of 4th round, and a Player of maria sharapova?
CREATE TABLE table_name_57 (surface VARCHAR, round VARCHAR, player VARCHAR)
SELECT surface FROM table_name_57 WHERE round = "4th round" AND player = "maria sharapova"
### Context: CREATE TABLE table_name_57 (surface VARCHAR, round VARCHAR, player VARCHAR) ### Question: Which Surface has a Round of 4th round, and a Player of maria sharapova? ### Answer: SELECT surface FROM table_name_57 WHERE round = "4th round" AND player = "maria sharapova"
Which Player has a Score of 6–4, 7–6 (7–5)?
CREATE TABLE table_name_97 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_97 WHERE score = "6–4, 7–6 (7–5)"
### Context: CREATE TABLE table_name_97 (player VARCHAR, score VARCHAR) ### Question: Which Player has a Score of 6–4, 7–6 (7–5)? ### Answer: SELECT player FROM table_name_97 WHERE score = "6–4, 7–6 (7–5)"
Which Round has a Player of anna chakvetadze?
CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR)
SELECT round FROM table_name_23 WHERE player = "anna chakvetadze"
### Context: CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR) ### Question: Which Round has a Player of anna chakvetadze? ### Answer: SELECT round FROM table_name_23 WHERE player = "anna chakvetadze"
Record of 89-67 had what loss?
CREATE TABLE table_name_16 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_16 WHERE record = "89-67"
### Context: CREATE TABLE table_name_16 (loss VARCHAR, record VARCHAR) ### Question: Record of 89-67 had what loss? ### Answer: SELECT loss FROM table_name_16 WHERE record = "89-67"
Score of 3 - 2 had what record?
CREATE TABLE table_name_93 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_93 WHERE score = "3 - 2"
### Context: CREATE TABLE table_name_93 (record VARCHAR, score VARCHAR) ### Question: Score of 3 - 2 had what record? ### Answer: SELECT record FROM table_name_93 WHERE score = "3 - 2"
Opponent of @ blue jays, and a Loss of lyon (5-4) had what opponent?
CREATE TABLE table_name_60 (record VARCHAR, opponent VARCHAR, loss VARCHAR)
SELECT record FROM table_name_60 WHERE opponent = "@ blue jays" AND loss = "lyon (5-4)"
### Context: CREATE TABLE table_name_60 (record VARCHAR, opponent VARCHAR, loss VARCHAR) ### Question: Opponent of @ blue jays, and a Loss of lyon (5-4) had what opponent? ### Answer: SELECT record FROM table_name_60 WHERE opponent = "@ blue jays" AND loss = "lyon (5-4)"
Loss of lyon (5-4) had what score?
CREATE TABLE table_name_17 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_17 WHERE loss = "lyon (5-4)"
### Context: CREATE TABLE table_name_17 (score VARCHAR, loss VARCHAR) ### Question: Loss of lyon (5-4) had what score? ### Answer: SELECT score FROM table_name_17 WHERE loss = "lyon (5-4)"
Loss of finley (8-7) had what record?
CREATE TABLE table_name_99 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_99 WHERE loss = "finley (8-7)"
### Context: CREATE TABLE table_name_99 (record VARCHAR, loss VARCHAR) ### Question: Loss of finley (8-7) had what record? ### Answer: SELECT record FROM table_name_99 WHERE loss = "finley (8-7)"
Opponent of @ blue jays, and a Date of october 6 had what score?
CREATE TABLE table_name_19 (score VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT score FROM table_name_19 WHERE opponent = "@ blue jays" AND date = "october 6"
### Context: CREATE TABLE table_name_19 (score VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: Opponent of @ blue jays, and a Date of october 6 had what score? ### Answer: SELECT score FROM table_name_19 WHERE opponent = "@ blue jays" AND date = "october 6"
What is the score for game 5?
CREATE TABLE table_name_82 (score VARCHAR, game VARCHAR)
SELECT score FROM table_name_82 WHERE game = 5
### Context: CREATE TABLE table_name_82 (score VARCHAR, game VARCHAR) ### Question: What is the score for game 5? ### Answer: SELECT score FROM table_name_82 WHERE game = 5
What is the score that has a game greater than 3, with buffalo sabres as the opponent?
CREATE TABLE table_name_77 (score VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_77 WHERE game > 3 AND opponent = "buffalo sabres"
### Context: CREATE TABLE table_name_77 (score VARCHAR, game VARCHAR, opponent VARCHAR) ### Question: What is the score that has a game greater than 3, with buffalo sabres as the opponent? ### Answer: SELECT score FROM table_name_77 WHERE game > 3 AND opponent = "buffalo sabres"
What score has may 9 as the date?
CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_26 WHERE date = "may 9"
### Context: CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR) ### Question: What score has may 9 as the date? ### Answer: SELECT score FROM table_name_26 WHERE date = "may 9"
What was the score on October 16, 1983?
CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_37 WHERE date = "october 16, 1983"
### Context: CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR) ### Question: What was the score on October 16, 1983? ### Answer: SELECT score FROM table_name_37 WHERE date = "october 16, 1983"
What was the score when she was a runner-up?
CREATE TABLE table_name_38 (score VARCHAR, outcome VARCHAR)
SELECT score FROM table_name_38 WHERE outcome = "runner-up"
### Context: CREATE TABLE table_name_38 (score VARCHAR, outcome VARCHAR) ### Question: What was the score when she was a runner-up? ### Answer: SELECT score FROM table_name_38 WHERE outcome = "runner-up"
What tournament was being played on August 11, 1984?
CREATE TABLE table_name_86 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_86 WHERE date = "august 11, 1984"
### Context: CREATE TABLE table_name_86 (tournament VARCHAR, date VARCHAR) ### Question: What tournament was being played on August 11, 1984? ### Answer: SELECT tournament FROM table_name_86 WHERE date = "august 11, 1984"
What was the Venue on June 8, 2005?
CREATE TABLE table_name_9 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_9 WHERE date = "june 8, 2005"
### Context: CREATE TABLE table_name_9 (venue VARCHAR, date VARCHAR) ### Question: What was the Venue on June 8, 2005? ### Answer: SELECT venue FROM table_name_9 WHERE date = "june 8, 2005"
On what Date was the Venue Los Angeles?
CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_90 WHERE venue = "los angeles"
### Context: CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR) ### Question: On what Date was the Venue Los Angeles? ### Answer: SELECT date FROM table_name_90 WHERE venue = "los angeles"
What was the Score on September 29, 2003?
CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_64 WHERE date = "september 29, 2003"
### Context: CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR) ### Question: What was the Score on September 29, 2003? ### Answer: SELECT score FROM table_name_64 WHERE date = "september 29, 2003"
On what Date was the Venue in Carson?
CREATE TABLE table_name_10 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_10 WHERE venue = "carson"
### Context: CREATE TABLE table_name_10 (date VARCHAR, venue VARCHAR) ### Question: On what Date was the Venue in Carson? ### Answer: SELECT date FROM table_name_10 WHERE venue = "carson"
What was the competition on October 21, 2003?
CREATE TABLE table_name_83 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_83 WHERE date = "october 21, 2003"
### Context: CREATE TABLE table_name_83 (competition VARCHAR, date VARCHAR) ### Question: What was the competition on October 21, 2003? ### Answer: SELECT competition FROM table_name_83 WHERE date = "october 21, 2003"
What was the Competition on September 29, 2003?
CREATE TABLE table_name_15 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_15 WHERE date = "september 29, 2003"
### Context: CREATE TABLE table_name_15 (competition VARCHAR, date VARCHAR) ### Question: What was the Competition on September 29, 2003? ### Answer: SELECT competition FROM table_name_15 WHERE date = "september 29, 2003"
What country has chunkath, mohan verghese as the name?
CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR)
SELECT country FROM table_name_88 WHERE name = "chunkath, mohan verghese"
### Context: CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR) ### Question: What country has chunkath, mohan verghese as the name? ### Answer: SELECT country FROM table_name_88 WHERE name = "chunkath, mohan verghese"
What position has a spread greater than -319, and United States as the country, a win loss of 11-13, and gabriel, marty as the name?
CREATE TABLE table_name_96 (position VARCHAR, name VARCHAR, win_loss VARCHAR, spread VARCHAR, country VARCHAR)
SELECT position FROM table_name_96 WHERE spread > -319 AND country = "united states" AND win_loss = "11-13" AND name = "gabriel, marty"
### Context: CREATE TABLE table_name_96 (position VARCHAR, name VARCHAR, win_loss VARCHAR, spread VARCHAR, country VARCHAR) ### Question: What position has a spread greater than -319, and United States as the country, a win loss of 11-13, and gabriel, marty as the name? ### Answer: SELECT position FROM table_name_96 WHERE spread > -319 AND country = "united states" AND win_loss = "11-13" AND name = "gabriel, marty"
What name has a spread of 69?
CREATE TABLE table_name_96 (name VARCHAR, spread VARCHAR)
SELECT name FROM table_name_96 WHERE spread = 69
### Context: CREATE TABLE table_name_96 (name VARCHAR, spread VARCHAR) ### Question: What name has a spread of 69? ### Answer: SELECT name FROM table_name_96 WHERE spread = 69
Which Performer 2 has an Episode of 5?
CREATE TABLE table_name_26 (performer_2 VARCHAR, episode VARCHAR)
SELECT performer_2 FROM table_name_26 WHERE episode = 5
### Context: CREATE TABLE table_name_26 (performer_2 VARCHAR, episode VARCHAR) ### Question: Which Performer 2 has an Episode of 5? ### Answer: SELECT performer_2 FROM table_name_26 WHERE episode = 5
What weight has one rupee as the denomination?
CREATE TABLE table_name_88 (weight VARCHAR, denomination VARCHAR)
SELECT weight FROM table_name_88 WHERE denomination = "one rupee"
### Context: CREATE TABLE table_name_88 (weight VARCHAR, denomination VARCHAR) ### Question: What weight has one rupee as the denomination? ### Answer: SELECT weight FROM table_name_88 WHERE denomination = "one rupee"
What is the size that has nickel as the metal, and one rupee as the denomination?
CREATE TABLE table_name_46 (size VARCHAR, metal VARCHAR, denomination VARCHAR)
SELECT size FROM table_name_46 WHERE metal = "nickel" AND denomination = "one rupee"
### Context: CREATE TABLE table_name_46 (size VARCHAR, metal VARCHAR, denomination VARCHAR) ### Question: What is the size that has nickel as the metal, and one rupee as the denomination? ### Answer: SELECT size FROM table_name_46 WHERE metal = "nickel" AND denomination = "one rupee"
What metal has one rupee as the denomination?
CREATE TABLE table_name_83 (metal VARCHAR, denomination VARCHAR)
SELECT metal FROM table_name_83 WHERE denomination = "one rupee"
### Context: CREATE TABLE table_name_83 (metal VARCHAR, denomination VARCHAR) ### Question: What metal has one rupee as the denomination? ### Answer: SELECT metal FROM table_name_83 WHERE denomination = "one rupee"
What shape has nickel as the metal, and one rupee as the denomination?
CREATE TABLE table_name_78 (shape VARCHAR, metal VARCHAR, denomination VARCHAR)
SELECT shape FROM table_name_78 WHERE metal = "nickel" AND denomination = "one rupee"
### Context: CREATE TABLE table_name_78 (shape VARCHAR, metal VARCHAR, denomination VARCHAR) ### Question: What shape has nickel as the metal, and one rupee as the denomination? ### Answer: SELECT shape FROM table_name_78 WHERE metal = "nickel" AND denomination = "one rupee"
Which 2007 has a 2010 of A, and a 2006 of lq?
CREATE TABLE table_name_18 (Id VARCHAR)
SELECT 2007 FROM table_name_18 WHERE 2010 = "a" AND 2006 = "lq"
### Context: CREATE TABLE table_name_18 (Id VARCHAR) ### Question: Which 2007 has a 2010 of A, and a 2006 of lq? ### Answer: SELECT 2007 FROM table_name_18 WHERE 2010 = "a" AND 2006 = "lq"
Which 2012 has a 2007 of 1r?
CREATE TABLE table_name_51 (Id VARCHAR)
SELECT 2012 FROM table_name_51 WHERE 2007 = "1r"
### Context: CREATE TABLE table_name_51 (Id VARCHAR) ### Question: Which 2012 has a 2007 of 1r? ### Answer: SELECT 2012 FROM table_name_51 WHERE 2007 = "1r"
Which 2002 has a 2013 of 2–4?
CREATE TABLE table_name_37 (Id VARCHAR)
SELECT 2002 FROM table_name_37 WHERE 2013 = "2–4"
### Context: CREATE TABLE table_name_37 (Id VARCHAR) ### Question: Which 2002 has a 2013 of 2–4? ### Answer: SELECT 2002 FROM table_name_37 WHERE 2013 = "2–4"
Which 2013 has a 2010 of 1r?
CREATE TABLE table_name_98 (Id VARCHAR)
SELECT 2013 FROM table_name_98 WHERE 2010 = "1r"
### Context: CREATE TABLE table_name_98 (Id VARCHAR) ### Question: Which 2013 has a 2010 of 1r? ### Answer: SELECT 2013 FROM table_name_98 WHERE 2010 = "1r"
Which 2005 has a Tournament of grand slam tournaments?
CREATE TABLE table_name_52 (tournament VARCHAR)
SELECT 2005 FROM table_name_52 WHERE tournament = "grand slam tournaments"
### Context: CREATE TABLE table_name_52 (tournament VARCHAR) ### Question: Which 2005 has a Tournament of grand slam tournaments? ### Answer: SELECT 2005 FROM table_name_52 WHERE tournament = "grand slam tournaments"
Which 2007 has a 2008 of 1r, and a Tournament of wimbledon?
CREATE TABLE table_name_53 (tournament VARCHAR)
SELECT 2007 FROM table_name_53 WHERE 2008 = "1r" AND tournament = "wimbledon"
### Context: CREATE TABLE table_name_53 (tournament VARCHAR) ### Question: Which 2007 has a 2008 of 1r, and a Tournament of wimbledon? ### Answer: SELECT 2007 FROM table_name_53 WHERE 2008 = "1r" AND tournament = "wimbledon"
Which Date has a Home of minnesota?
CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_25 WHERE home = "minnesota"
### Context: CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR) ### Question: Which Date has a Home of minnesota? ### Answer: SELECT date FROM table_name_25 WHERE home = "minnesota"
Which Visitor has a Decision of myre, and a Record of 44–7–15?
CREATE TABLE table_name_32 (visitor VARCHAR, decision VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_32 WHERE decision = "myre" AND record = "44–7–15"
### Context: CREATE TABLE table_name_32 (visitor VARCHAR, decision VARCHAR, record VARCHAR) ### Question: Which Visitor has a Decision of myre, and a Record of 44–7–15? ### Answer: SELECT visitor FROM table_name_32 WHERE decision = "myre" AND record = "44–7–15"
What Championship had a Winning score of 6 & 5?
CREATE TABLE table_name_31 (championship VARCHAR, winning_score VARCHAR)
SELECT championship FROM table_name_31 WHERE winning_score = "6 & 5"
### Context: CREATE TABLE table_name_31 (championship VARCHAR, winning_score VARCHAR) ### Question: What Championship had a Winning score of 6 & 5? ### Answer: SELECT championship FROM table_name_31 WHERE winning_score = "6 & 5"
What was the Winning Score when Betsy Rawls was the Runner(s)-up?
CREATE TABLE table_name_96 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_96 WHERE runner_s__up = "betsy rawls"
### Context: CREATE TABLE table_name_96 (winning_score VARCHAR, runner_s__up VARCHAR) ### Question: What was the Winning Score when Betsy Rawls was the Runner(s)-up? ### Answer: SELECT winning_score FROM table_name_96 WHERE runner_s__up = "betsy rawls"
In 1946, what is the Runner(s)-up of the Women's Western Open Championship?
CREATE TABLE table_name_60 (runner_s__up VARCHAR, championship VARCHAR, year VARCHAR)
SELECT runner_s__up FROM table_name_60 WHERE championship = "women's western open" AND year = 1946
### Context: CREATE TABLE table_name_60 (runner_s__up VARCHAR, championship VARCHAR, year VARCHAR) ### Question: In 1946, what is the Runner(s)-up of the Women's Western Open Championship? ### Answer: SELECT runner_s__up FROM table_name_60 WHERE championship = "women's western open" AND year = 1946
What is the Margin in 1953 when Patty Berg was Runner(s)-up?
CREATE TABLE table_name_29 (margin VARCHAR, runner_s__up VARCHAR, year VARCHAR)
SELECT margin FROM table_name_29 WHERE runner_s__up = "patty berg" AND year = 1953
### Context: CREATE TABLE table_name_29 (margin VARCHAR, runner_s__up VARCHAR, year VARCHAR) ### Question: What is the Margin in 1953 when Patty Berg was Runner(s)-up? ### Answer: SELECT margin FROM table_name_29 WHERE runner_s__up = "patty berg" AND year = 1953
What is the name of the primary with a DCSF number larger than 2337 and an Ofsted number smaller than 135339?
CREATE TABLE table_name_74 (name VARCHAR, ofsted_number VARCHAR, type VARCHAR, dcsf_number VARCHAR)
SELECT name FROM table_name_74 WHERE type = "primary" AND dcsf_number > 2337 AND ofsted_number < 135339
### Context: CREATE TABLE table_name_74 (name VARCHAR, ofsted_number VARCHAR, type VARCHAR, dcsf_number VARCHAR) ### Question: What is the name of the primary with a DCSF number larger than 2337 and an Ofsted number smaller than 135339? ### Answer: SELECT name FROM table_name_74 WHERE type = "primary" AND dcsf_number > 2337 AND ofsted_number < 135339
What name that has a DCSF number bigger than 2448 and an Ofsted number of 131319?
CREATE TABLE table_name_95 (name VARCHAR, dcsf_number VARCHAR, ofsted_number VARCHAR)
SELECT name FROM table_name_95 WHERE dcsf_number > 2448 AND ofsted_number = 131319
### Context: CREATE TABLE table_name_95 (name VARCHAR, dcsf_number VARCHAR, ofsted_number VARCHAR) ### Question: What name that has a DCSF number bigger than 2448 and an Ofsted number of 131319? ### Answer: SELECT name FROM table_name_95 WHERE dcsf_number > 2448 AND ofsted_number = 131319
What faith has a DCSF number bigger than 2448 in Holtsmere End?
CREATE TABLE table_name_44 (faith VARCHAR, dcsf_number VARCHAR, name VARCHAR)
SELECT faith FROM table_name_44 WHERE dcsf_number > 2448 AND name = "holtsmere end"
### Context: CREATE TABLE table_name_44 (faith VARCHAR, dcsf_number VARCHAR, name VARCHAR) ### Question: What faith has a DCSF number bigger than 2448 in Holtsmere End? ### Answer: SELECT faith FROM table_name_44 WHERE dcsf_number > 2448 AND name = "holtsmere end"
What's the lowest DCSF number in Aycliffe Drive but an Ofsted number smaller than 117335?
CREATE TABLE table_name_77 (dcsf_number INTEGER, name VARCHAR, ofsted_number VARCHAR)
SELECT MIN(dcsf_number) FROM table_name_77 WHERE name = "aycliffe drive" AND ofsted_number < 117335
### Context: CREATE TABLE table_name_77 (dcsf_number INTEGER, name VARCHAR, ofsted_number VARCHAR) ### Question: What's the lowest DCSF number in Aycliffe Drive but an Ofsted number smaller than 117335? ### Answer: SELECT MIN(dcsf_number) FROM table_name_77 WHERE name = "aycliffe drive" AND ofsted_number < 117335
what city is the toamasina airport in?
CREATE TABLE table_name_42 (city VARCHAR, airport VARCHAR)
SELECT city FROM table_name_42 WHERE airport = "toamasina airport"
### Context: CREATE TABLE table_name_42 (city VARCHAR, airport VARCHAR) ### Question: what city is the toamasina airport in? ### Answer: SELECT city FROM table_name_42 WHERE airport = "toamasina airport"
What country has the city, Sydney?
CREATE TABLE table_name_99 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_99 WHERE city = "sydney"
### Context: CREATE TABLE table_name_99 (country VARCHAR, city VARCHAR) ### Question: What country has the city, Sydney? ### Answer: SELECT country FROM table_name_99 WHERE city = "sydney"
What city is in the country of Mayotte?
CREATE TABLE table_name_63 (city VARCHAR, country VARCHAR)
SELECT city FROM table_name_63 WHERE country = "mayotte"
### Context: CREATE TABLE table_name_63 (city VARCHAR, country VARCHAR) ### Question: What city is in the country of Mayotte? ### Answer: SELECT city FROM table_name_63 WHERE country = "mayotte"
What is the IATA for the chennai international airport?
CREATE TABLE table_name_96 (iata VARCHAR, airport VARCHAR)
SELECT iata FROM table_name_96 WHERE airport = "chennai international airport"
### Context: CREATE TABLE table_name_96 (iata VARCHAR, airport VARCHAR) ### Question: What is the IATA for the chennai international airport? ### Answer: SELECT iata FROM table_name_96 WHERE airport = "chennai international airport"
What is the airport name that has nos listed as the IATA?
CREATE TABLE table_name_78 (airport VARCHAR, iata VARCHAR)
SELECT airport FROM table_name_78 WHERE iata = "nos"
### Context: CREATE TABLE table_name_78 (airport VARCHAR, iata VARCHAR) ### Question: What is the airport name that has nos listed as the IATA? ### Answer: SELECT airport FROM table_name_78 WHERE iata = "nos"
What is the part number of athlon x2 4850e?
CREATE TABLE table_name_89 (part_number_s_ VARCHAR, model_number VARCHAR)
SELECT part_number_s_ FROM table_name_89 WHERE model_number = "athlon x2 4850e"
### Context: CREATE TABLE table_name_89 (part_number_s_ VARCHAR, model_number VARCHAR) ### Question: What is the part number of athlon x2 4850e? ### Answer: SELECT part_number_s_ FROM table_name_89 WHERE model_number = "athlon x2 4850e"
What's the frequency of the device that has a Multi 1 of 7.5×?
CREATE TABLE table_name_28 (frequency VARCHAR, multi_1 VARCHAR)
SELECT frequency FROM table_name_28 WHERE multi_1 = "7.5×"
### Context: CREATE TABLE table_name_28 (frequency VARCHAR, multi_1 VARCHAR) ### Question: What's the frequency of the device that has a Multi 1 of 7.5×? ### Answer: SELECT frequency FROM table_name_28 WHERE multi_1 = "7.5×"
What's amount of L2 Cache on a device that has a Frequency of 1500mhz?
CREATE TABLE table_name_78 (l2_cache VARCHAR, frequency VARCHAR)
SELECT l2_cache FROM table_name_78 WHERE frequency = "1500mhz"
### Context: CREATE TABLE table_name_78 (l2_cache VARCHAR, frequency VARCHAR) ### Question: What's amount of L2 Cache on a device that has a Frequency of 1500mhz? ### Answer: SELECT l2_cache FROM table_name_78 WHERE frequency = "1500mhz"
When is the release date for a chip that has a Frequency of 2300mhz?
CREATE TABLE table_name_88 (release_date VARCHAR, frequency VARCHAR)
SELECT release_date FROM table_name_88 WHERE frequency = "2300mhz"
### Context: CREATE TABLE table_name_88 (release_date VARCHAR, frequency VARCHAR) ### Question: When is the release date for a chip that has a Frequency of 2300mhz? ### Answer: SELECT release_date FROM table_name_88 WHERE frequency = "2300mhz"
When was the release date for technology that has a Multi 1 of 10.5×?
CREATE TABLE table_name_72 (release_date VARCHAR, multi_1 VARCHAR)
SELECT release_date FROM table_name_72 WHERE multi_1 = "10.5×"
### Context: CREATE TABLE table_name_72 (release_date VARCHAR, multi_1 VARCHAR) ### Question: When was the release date for technology that has a Multi 1 of 10.5×? ### Answer: SELECT release_date FROM table_name_72 WHERE multi_1 = "10.5×"
What's the stepping amount for adh4450iaa5do?
CREATE TABLE table_name_61 (stepping VARCHAR, part_number_s_ VARCHAR)
SELECT stepping FROM table_name_61 WHERE part_number_s_ = "adh4450iaa5do"
### Context: CREATE TABLE table_name_61 (stepping VARCHAR, part_number_s_ VARCHAR) ### Question: What's the stepping amount for adh4450iaa5do? ### Answer: SELECT stepping FROM table_name_61 WHERE part_number_s_ = "adh4450iaa5do"
Which Wins is the highest one that has a Year larger than 1996, and a Championship Finish of 1st, and Points smaller than 168?
CREATE TABLE table_name_40 (wins INTEGER, points VARCHAR, year VARCHAR, championship_finish VARCHAR)
SELECT MAX(wins) FROM table_name_40 WHERE year > 1996 AND championship_finish = "1st" AND points < 168
### Context: CREATE TABLE table_name_40 (wins INTEGER, points VARCHAR, year VARCHAR, championship_finish VARCHAR) ### Question: Which Wins is the highest one that has a Year larger than 1996, and a Championship Finish of 1st, and Points smaller than 168? ### Answer: SELECT MAX(wins) FROM table_name_40 WHERE year > 1996 AND championship_finish = "1st" AND points < 168
Which Year is the highest that has a Team of walker racing, and Wins larger than 1?
CREATE TABLE table_name_58 (year INTEGER, team VARCHAR, wins VARCHAR)
SELECT MAX(year) FROM table_name_58 WHERE team = "walker racing" AND wins > 1
### Context: CREATE TABLE table_name_58 (year INTEGER, team VARCHAR, wins VARCHAR) ### Question: Which Year is the highest that has a Team of walker racing, and Wins larger than 1? ### Answer: SELECT MAX(year) FROM table_name_58 WHERE team = "walker racing" AND wins > 1
Which Points have a Year larger than 1998, and Wins of 1?
CREATE TABLE table_name_79 (points INTEGER, year VARCHAR, wins VARCHAR)
SELECT AVG(points) FROM table_name_79 WHERE year > 1998 AND wins = 1
### Context: CREATE TABLE table_name_79 (points INTEGER, year VARCHAR, wins VARCHAR) ### Question: Which Points have a Year larger than 1998, and Wins of 1? ### Answer: SELECT AVG(points) FROM table_name_79 WHERE year > 1998 AND wins = 1
What is the lowest bronze number when silver shows 2, and the total is 8?
CREATE TABLE table_name_35 (bronze INTEGER, silver VARCHAR, total VARCHAR)
SELECT MIN(bronze) FROM table_name_35 WHERE silver = 2 AND total = 8
### Context: CREATE TABLE table_name_35 (bronze INTEGER, silver VARCHAR, total VARCHAR) ### Question: What is the lowest bronze number when silver shows 2, and the total is 8? ### Answer: SELECT MIN(bronze) FROM table_name_35 WHERE silver = 2 AND total = 8
What is the silver number when gold is more than 4, and the total is less than 24?
CREATE TABLE table_name_54 (silver INTEGER, gold VARCHAR, total VARCHAR)
SELECT AVG(silver) FROM table_name_54 WHERE gold > 4 AND total < 24
### Context: CREATE TABLE table_name_54 (silver INTEGER, gold VARCHAR, total VARCHAR) ### Question: What is the silver number when gold is more than 4, and the total is less than 24? ### Answer: SELECT AVG(silver) FROM table_name_54 WHERE gold > 4 AND total < 24
What is the gold number when the total is 8 and bronze is more than 4?
CREATE TABLE table_name_19 (gold INTEGER, total VARCHAR, bronze VARCHAR)
SELECT AVG(gold) FROM table_name_19 WHERE total = 8 AND bronze > 4
### Context: CREATE TABLE table_name_19 (gold INTEGER, total VARCHAR, bronze VARCHAR) ### Question: What is the gold number when the total is 8 and bronze is more than 4? ### Answer: SELECT AVG(gold) FROM table_name_19 WHERE total = 8 AND bronze > 4
What is the sum of Total for 0 gold and less than 2, silver with a rank of 6?
CREATE TABLE table_name_11 (total INTEGER, rank VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT SUM(total) FROM table_name_11 WHERE gold = 0 AND silver < 2 AND rank = "6"
### Context: CREATE TABLE table_name_11 (total INTEGER, rank VARCHAR, gold VARCHAR, silver VARCHAR) ### Question: What is the sum of Total for 0 gold and less than 2, silver with a rank of 6? ### Answer: SELECT SUM(total) FROM table_name_11 WHERE gold = 0 AND silver < 2 AND rank = "6"
What is the average Gold when silver is more than 2, and bronze is more than 1
CREATE TABLE table_name_59 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
SELECT AVG(gold) FROM table_name_59 WHERE silver > 2 AND bronze > 1
### Context: CREATE TABLE table_name_59 (gold INTEGER, silver VARCHAR, bronze VARCHAR) ### Question: What is the average Gold when silver is more than 2, and bronze is more than 1 ### Answer: SELECT AVG(gold) FROM table_name_59 WHERE silver > 2 AND bronze > 1
What is the average Bronze when silver is more than 2, and rank is 2, and gold more than 2
CREATE TABLE table_name_62 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT AVG(bronze) FROM table_name_62 WHERE silver > "2" AND rank = "2" AND gold > 2
### Context: CREATE TABLE table_name_62 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR) ### Question: What is the average Bronze when silver is more than 2, and rank is 2, and gold more than 2 ### Answer: SELECT AVG(bronze) FROM table_name_62 WHERE silver > "2" AND rank = "2" AND gold > 2
What city in Svalbard has a longitude of 15°39′e?
CREATE TABLE table_name_77 (city VARCHAR, state VARCHAR, longitude VARCHAR)
SELECT city FROM table_name_77 WHERE state = "svalbard" AND longitude = "15°39′e"
### Context: CREATE TABLE table_name_77 (city VARCHAR, state VARCHAR, longitude VARCHAR) ### Question: What city in Svalbard has a longitude of 15°39′e? ### Answer: SELECT city FROM table_name_77 WHERE state = "svalbard" AND longitude = "15°39′e"
If the latitude is 77°28′n, what is the longitude?
CREATE TABLE table_name_27 (longitude VARCHAR, latitude VARCHAR)
SELECT longitude FROM table_name_27 WHERE latitude = "77°28′n"
### Context: CREATE TABLE table_name_27 (longitude VARCHAR, latitude VARCHAR) ### Question: If the latitude is 77°28′n, what is the longitude? ### Answer: SELECT longitude FROM table_name_27 WHERE latitude = "77°28′n"
If the latitude is 76°25′n, what is the longitude?
CREATE TABLE table_name_52 (longitude VARCHAR, latitude VARCHAR)
SELECT longitude FROM table_name_52 WHERE latitude = "76°25′n"
### Context: CREATE TABLE table_name_52 (longitude VARCHAR, latitude VARCHAR) ### Question: If the latitude is 76°25′n, what is the longitude? ### Answer: SELECT longitude FROM table_name_52 WHERE latitude = "76°25′n"
If the latitude is 71°18′n, what is the longitude?
CREATE TABLE table_name_98 (longitude VARCHAR, latitude VARCHAR)
SELECT longitude FROM table_name_98 WHERE latitude = "71°18′n"
### Context: CREATE TABLE table_name_98 (longitude VARCHAR, latitude VARCHAR) ### Question: If the latitude is 71°18′n, what is the longitude? ### Answer: SELECT longitude FROM table_name_98 WHERE latitude = "71°18′n"
Who is the partner facing the opponents florian Mayer & alexander waske in the final?
CREATE TABLE table_name_95 (partner VARCHAR, opponents_in_the_final VARCHAR)
SELECT partner FROM table_name_95 WHERE opponents_in_the_final = "florian mayer & alexander waske"
### Context: CREATE TABLE table_name_95 (partner VARCHAR, opponents_in_the_final VARCHAR) ### Question: Who is the partner facing the opponents florian Mayer & alexander waske in the final? ### Answer: SELECT partner FROM table_name_95 WHERE opponents_in_the_final = "florian mayer & alexander waske"
Which tournament has a hard surface and final opponents rohan bopanna & mustafa ghouse?
CREATE TABLE table_name_19 (tournament VARCHAR, surface VARCHAR, opponents_in_the_final VARCHAR)
SELECT tournament FROM table_name_19 WHERE surface = "hard" AND opponents_in_the_final = "rohan bopanna & mustafa ghouse"
### Context: CREATE TABLE table_name_19 (tournament VARCHAR, surface VARCHAR, opponents_in_the_final VARCHAR) ### Question: Which tournament has a hard surface and final opponents rohan bopanna & mustafa ghouse? ### Answer: SELECT tournament FROM table_name_19 WHERE surface = "hard" AND opponents_in_the_final = "rohan bopanna & mustafa ghouse"
On which date did the tournament final with the clay surface take place?
CREATE TABLE table_name_94 (date VARCHAR, surface VARCHAR)
SELECT date FROM table_name_94 WHERE surface = "clay"
### Context: CREATE TABLE table_name_94 (date VARCHAR, surface VARCHAR) ### Question: On which date did the tournament final with the clay surface take place? ### Answer: SELECT date FROM table_name_94 WHERE surface = "clay"
Which tournament features the partner julian knowle?
CREATE TABLE table_name_93 (tournament VARCHAR, partner VARCHAR)
SELECT tournament FROM table_name_93 WHERE partner = "julian knowle"
### Context: CREATE TABLE table_name_93 (tournament VARCHAR, partner VARCHAR) ### Question: Which tournament features the partner julian knowle? ### Answer: SELECT tournament FROM table_name_93 WHERE partner = "julian knowle"
On which date is the tournament final with the opponents michael berrer & kenneth carlsen?
CREATE TABLE table_name_98 (date VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_98 WHERE opponents_in_the_final = "michael berrer & kenneth carlsen"
### Context: CREATE TABLE table_name_98 (date VARCHAR, opponents_in_the_final VARCHAR) ### Question: On which date is the tournament final with the opponents michael berrer & kenneth carlsen? ### Answer: SELECT date FROM table_name_98 WHERE opponents_in_the_final = "michael berrer & kenneth carlsen"
What was the score after february 4 in the game 61?
CREATE TABLE table_name_30 (score VARCHAR, february VARCHAR, game VARCHAR)
SELECT score FROM table_name_30 WHERE february > 4 AND game = 61
### Context: CREATE TABLE table_name_30 (score VARCHAR, february VARCHAR, game VARCHAR) ### Question: What was the score after february 4 in the game 61? ### Answer: SELECT score FROM table_name_30 WHERE february > 4 AND game = 61
What is Arkansas State's total pick number with an overal lower than 242?
CREATE TABLE table_name_96 (pick__number VARCHAR, college VARCHAR, overall VARCHAR)
SELECT COUNT(pick__number) FROM table_name_96 WHERE college = "arkansas state" AND overall < 242
### Context: CREATE TABLE table_name_96 (pick__number VARCHAR, college VARCHAR, overall VARCHAR) ### Question: What is Arkansas State's total pick number with an overal lower than 242? ### Answer: SELECT COUNT(pick__number) FROM table_name_96 WHERE college = "arkansas state" AND overall < 242
Who is from the College of Cincinnati?
CREATE TABLE table_name_38 (name VARCHAR, college VARCHAR)
SELECT name FROM table_name_38 WHERE college = "cincinnati"
### Context: CREATE TABLE table_name_38 (name VARCHAR, college VARCHAR) ### Question: Who is from the College of Cincinnati? ### Answer: SELECT name FROM table_name_38 WHERE college = "cincinnati"
What is the overall number for a kicker with a pick of less than 6?
CREATE TABLE table_name_84 (overall VARCHAR, position VARCHAR, pick__number VARCHAR)
SELECT COUNT(overall) FROM table_name_84 WHERE position = "kicker" AND pick__number < 6
### Context: CREATE TABLE table_name_84 (overall VARCHAR, position VARCHAR, pick__number VARCHAR) ### Question: What is the overall number for a kicker with a pick of less than 6? ### Answer: SELECT COUNT(overall) FROM table_name_84 WHERE position = "kicker" AND pick__number < 6
Which college has a defensive end with a round less than 6?
CREATE TABLE table_name_84 (college VARCHAR, round VARCHAR, position VARCHAR)
SELECT college FROM table_name_84 WHERE round > 6 AND position = "defensive end"
### Context: CREATE TABLE table_name_84 (college VARCHAR, round VARCHAR, position VARCHAR) ### Question: Which college has a defensive end with a round less than 6? ### Answer: SELECT college FROM table_name_84 WHERE round > 6 AND position = "defensive end"
What record has a score of 111-96?
CREATE TABLE table_name_56 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_56 WHERE score = "111-96"
### Context: CREATE TABLE table_name_56 (record VARCHAR, score VARCHAR) ### Question: What record has a score of 111-96? ### Answer: SELECT record FROM table_name_56 WHERE score = "111-96"
What is the score for a game after 34 with a record of 31-11?
CREATE TABLE table_name_53 (score VARCHAR, game VARCHAR, record VARCHAR)
SELECT score FROM table_name_53 WHERE game > 34 AND record = "31-11"
### Context: CREATE TABLE table_name_53 (score VARCHAR, game VARCHAR, record VARCHAR) ### Question: What is the score for a game after 34 with a record of 31-11? ### Answer: SELECT score FROM table_name_53 WHERE game > 34 AND record = "31-11"
What was the date with a resulted score of 130-100?
CREATE TABLE table_name_16 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_16 WHERE score = "130-100"
### Context: CREATE TABLE table_name_16 (date VARCHAR, score VARCHAR) ### Question: What was the date with a resulted score of 130-100? ### Answer: SELECT date FROM table_name_16 WHERE score = "130-100"
Which Water has a Metal of contracting?
CREATE TABLE table_name_72 (water VARCHAR, metal VARCHAR)
SELECT water FROM table_name_72 WHERE metal = "contracting"
### Context: CREATE TABLE table_name_72 (water VARCHAR, metal VARCHAR) ### Question: Which Water has a Metal of contracting? ### Answer: SELECT water FROM table_name_72 WHERE metal = "contracting"
Which Metal has an Element of heavenly stems?
CREATE TABLE table_name_84 (metal VARCHAR, element VARCHAR)
SELECT metal FROM table_name_84 WHERE element = "heavenly stems"
### Context: CREATE TABLE table_name_84 (metal VARCHAR, element VARCHAR) ### Question: Which Metal has an Element of heavenly stems? ### Answer: SELECT metal FROM table_name_84 WHERE element = "heavenly stems"
Which water has green wood?
CREATE TABLE table_name_50 (water VARCHAR, wood VARCHAR)
SELECT water FROM table_name_50 WHERE wood = "green"
### Context: CREATE TABLE table_name_50 (water VARCHAR, wood VARCHAR) ### Question: Which water has green wood? ### Answer: SELECT water FROM table_name_50 WHERE wood = "green"