question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the method when the time was 5:00, and the round higher than 4?
CREATE TABLE table_name_86 (method VARCHAR, time VARCHAR, round VARCHAR)
SELECT method FROM table_name_86 WHERE time = "5:00" AND round > 4
### Context: CREATE TABLE table_name_86 (method VARCHAR, time VARCHAR, round VARCHAR) ### Question: What is the method when the time was 5:00, and the round higher than 4? ### Answer: SELECT method FROM table_name_86 WHERE time = "5:00" AND round > 4
When the others had a value of 7%, what was the Polling organisation/client?
CREATE TABLE table_name_5 (polling_organisation_client VARCHAR, others VARCHAR)
SELECT polling_organisation_client FROM table_name_5 WHERE others = "7%"
### Context: CREATE TABLE table_name_5 (polling_organisation_client VARCHAR, others VARCHAR) ### Question: When the others had a value of 7%, what was the Polling organisation/client? ### Answer: SELECT polling_organisation_client FROM table_name_5 WHERE others = "7%"
What player plays the position of small forward?
CREATE TABLE table_name_26 (player VARCHAR, position VARCHAR)
SELECT player FROM table_name_26 WHERE position = "small forward"
### Context: CREATE TABLE table_name_26 (player VARCHAR, position VARCHAR) ### Question: What player plays the position of small forward? ### Answer: SELECT player FROM table_name_26 WHERE position = "small forward"
What is the latitude of the 0 diameter?
CREATE TABLE table_name_18 (latitude VARCHAR, diameter__km_ VARCHAR)
SELECT latitude FROM table_name_18 WHERE diameter__km_ = 0
### Context: CREATE TABLE table_name_18 (latitude VARCHAR, diameter__km_ VARCHAR) ### Question: What is the latitude of the 0 diameter? ### Answer: SELECT latitude FROM table_name_18 WHERE diameter__km_ = 0
What is the longitude of Angerona Tholus?
CREATE TABLE table_name_35 (longitude VARCHAR, name VARCHAR)
SELECT longitude FROM table_name_35 WHERE name = "angerona tholus"
### Context: CREATE TABLE table_name_35 (longitude VARCHAR, name VARCHAR) ### Question: What is the longitude of Angerona Tholus? ### Answer: SELECT longitude FROM table_name_35 WHERE name = "angerona tholus"
What is the smallest diameter for Eirene Tholus?
CREATE TABLE table_name_97 (diameter__km_ INTEGER, name VARCHAR)
SELECT MIN(diameter__km_) FROM table_name_97 WHERE name = "eirene tholus"
### Context: CREATE TABLE table_name_97 (diameter__km_ INTEGER, name VARCHAR) ### Question: What is the smallest diameter for Eirene Tholus? ### Answer: SELECT MIN(diameter__km_) FROM table_name_97 WHERE name = "eirene tholus"
What was the game on April 25?
CREATE TABLE table_name_88 (game INTEGER, date VARCHAR)
SELECT MIN(game) FROM table_name_88 WHERE date = "april 25"
### Context: CREATE TABLE table_name_88 (game INTEGER, date VARCHAR) ### Question: What was the game on April 25? ### Answer: SELECT MIN(game) FROM table_name_88 WHERE date = "april 25"
what is the sum of the wkts when the ovrs were bigger than 2 and econ was bigger than 7.84?
CREATE TABLE table_name_46 (wkts INTEGER, ovrs VARCHAR, econ VARCHAR)
SELECT SUM(wkts) FROM table_name_46 WHERE ovrs > 2 AND econ > 7.84
### Context: CREATE TABLE table_name_46 (wkts INTEGER, ovrs VARCHAR, econ VARCHAR) ### Question: what is the sum of the wkts when the ovrs were bigger than 2 and econ was bigger than 7.84? ### Answer: SELECT SUM(wkts) FROM table_name_46 WHERE ovrs > 2 AND econ > 7.84
What is the sum of the runs when the wkts were bigger than 0 and ovrs were smaller than 2?
CREATE TABLE table_name_65 (runs INTEGER, ovrs VARCHAR, wkts VARCHAR)
SELECT SUM(runs) FROM table_name_65 WHERE ovrs < 2 AND wkts > 0
### Context: CREATE TABLE table_name_65 (runs INTEGER, ovrs VARCHAR, wkts VARCHAR) ### Question: What is the sum of the runs when the wkts were bigger than 0 and ovrs were smaller than 2? ### Answer: SELECT SUM(runs) FROM table_name_65 WHERE ovrs < 2 AND wkts > 0
What is the highest wkts for james hopes who had less than 26 runs and more than 2 ovrs?
CREATE TABLE table_name_21 (wkts INTEGER, ovrs VARCHAR, runs VARCHAR, player VARCHAR)
SELECT MAX(wkts) FROM table_name_21 WHERE runs < 26 AND player = "james hopes" AND ovrs > 2
### Context: CREATE TABLE table_name_21 (wkts INTEGER, ovrs VARCHAR, runs VARCHAR, player VARCHAR) ### Question: What is the highest wkts for james hopes who had less than 26 runs and more than 2 ovrs? ### Answer: SELECT MAX(wkts) FROM table_name_21 WHERE runs < 26 AND player = "james hopes" AND ovrs > 2
What is the average sales in billions of the company headquartered in France with more than 2,539.1 billion in assets?
CREATE TABLE table_name_65 (sales__billion_ INTEGER, headquarters VARCHAR, assets__billion_$_ VARCHAR)
SELECT AVG(sales__billion_) AS $_ FROM table_name_65 WHERE headquarters = "france" AND assets__billion_$_ > 2 OFFSET 539.1
### Context: CREATE TABLE table_name_65 (sales__billion_ INTEGER, headquarters VARCHAR, assets__billion_$_ VARCHAR) ### Question: What is the average sales in billions of the company headquartered in France with more than 2,539.1 billion in assets? ### Answer: SELECT AVG(sales__billion_) AS $_ FROM table_name_65 WHERE headquarters = "france" AND assets__billion_$_ > 2 OFFSET 539.1
What is the average sales in billions of walmart, which has more than 15.7 billion in profits?
CREATE TABLE table_name_5 (sales__billion_ INTEGER, company VARCHAR, profits__billion_$_ VARCHAR)
SELECT AVG(sales__billion_) AS $_ FROM table_name_5 WHERE company = "walmart" AND profits__billion_$_ > 15.7
### Context: CREATE TABLE table_name_5 (sales__billion_ INTEGER, company VARCHAR, profits__billion_$_ VARCHAR) ### Question: What is the average sales in billions of walmart, which has more than 15.7 billion in profits? ### Answer: SELECT AVG(sales__billion_) AS $_ FROM table_name_5 WHERE company = "walmart" AND profits__billion_$_ > 15.7
What is the rider when the grid is 21?
CREATE TABLE table_name_35 (rider VARCHAR, grid VARCHAR)
SELECT rider FROM table_name_35 WHERE grid = 21
### Context: CREATE TABLE table_name_35 (rider VARCHAR, grid VARCHAR) ### Question: What is the rider when the grid is 21? ### Answer: SELECT rider FROM table_name_35 WHERE grid = 21
What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4?
CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, rider VARCHAR)
SELECT AVG(laps) FROM table_name_71 WHERE manufacturer = "yamaha" AND rider = "garry mccoy" AND grid < 4
### Context: CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, rider VARCHAR) ### Question: What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4? ### Answer: SELECT AVG(laps) FROM table_name_71 WHERE manufacturer = "yamaha" AND rider = "garry mccoy" AND grid < 4
What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha
CREATE TABLE table_name_10 (laps INTEGER, rider VARCHAR, grid VARCHAR)
SELECT MIN(laps) FROM table_name_10 WHERE rider = "andrew pitt" AND grid < 18
### Context: CREATE TABLE table_name_10 (laps INTEGER, rider VARCHAR, grid VARCHAR) ### Question: What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha ### Answer: SELECT MIN(laps) FROM table_name_10 WHERE rider = "andrew pitt" AND grid < 18
What is the lowest laps that has a manufacturer of yamaha, and a time/retired of +1:08.312, and a grid less than 20?
CREATE TABLE table_name_4 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
SELECT MIN(laps) FROM table_name_4 WHERE manufacturer = "yamaha" AND time_retired = "+1:08.312" AND grid < 20
### Context: CREATE TABLE table_name_4 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR) ### Question: What is the lowest laps that has a manufacturer of yamaha, and a time/retired of +1:08.312, and a grid less than 20? ### Answer: SELECT MIN(laps) FROM table_name_4 WHERE manufacturer = "yamaha" AND time_retired = "+1:08.312" AND grid < 20
What event had a tko (punches) method and jason macdonald as the opponent?
CREATE TABLE table_name_74 (event VARCHAR, method VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_74 WHERE method = "tko (punches)" AND opponent = "jason macdonald"
### Context: CREATE TABLE table_name_74 (event VARCHAR, method VARCHAR, opponent VARCHAR) ### Question: What event had a tko (punches) method and jason macdonald as the opponent? ### Answer: SELECT event FROM table_name_74 WHERE method = "tko (punches)" AND opponent = "jason macdonald"
What is the opponent after round number 1 with a method of decision (unanimous)?
CREATE TABLE table_name_30 (opponent VARCHAR, round VARCHAR, method VARCHAR)
SELECT opponent FROM table_name_30 WHERE round > 1 AND method = "decision (unanimous)"
### Context: CREATE TABLE table_name_30 (opponent VARCHAR, round VARCHAR, method VARCHAR) ### Question: What is the opponent after round number 1 with a method of decision (unanimous)? ### Answer: SELECT opponent FROM table_name_30 WHERE round > 1 AND method = "decision (unanimous)"
Who is the partnering that had the opponents of Marcelo Melo André Sá?
CREATE TABLE table_name_29 (partnering VARCHAR, opponents_in_final VARCHAR)
SELECT partnering FROM table_name_29 WHERE opponents_in_final = "marcelo melo andré sá"
### Context: CREATE TABLE table_name_29 (partnering VARCHAR, opponents_in_final VARCHAR) ### Question: Who is the partnering that had the opponents of Marcelo Melo André Sá? ### Answer: SELECT partnering FROM table_name_29 WHERE opponents_in_final = "marcelo melo andré sá"
What was the score on February 14, 1999?
CREATE TABLE table_name_32 (score_in_final VARCHAR, date VARCHAR)
SELECT score_in_final FROM table_name_32 WHERE date = "february 14, 1999"
### Context: CREATE TABLE table_name_32 (score_in_final VARCHAR, date VARCHAR) ### Question: What was the score on February 14, 1999? ### Answer: SELECT score_in_final FROM table_name_32 WHERE date = "february 14, 1999"
What date was the score 6–7(9), 6–2, (10–7)?
CREATE TABLE table_name_29 (date VARCHAR, score_in_final VARCHAR)
SELECT date FROM table_name_29 WHERE score_in_final = "6–7(9), 6–2, (10–7)"
### Context: CREATE TABLE table_name_29 (date VARCHAR, score_in_final VARCHAR) ### Question: What date was the score 6–7(9), 6–2, (10–7)? ### Answer: SELECT date FROM table_name_29 WHERE score_in_final = "6–7(9), 6–2, (10–7)"
What is the lowest value for Sydney, when WEEKLY RANK is less than 8, and when Brisbane is greater than 252,000?
CREATE TABLE table_name_16 (sydney INTEGER, weekly_rank VARCHAR, brisbane VARCHAR)
SELECT MIN(sydney) FROM table_name_16 WHERE weekly_rank < 8 AND brisbane > 252 OFFSET 000
### Context: CREATE TABLE table_name_16 (sydney INTEGER, weekly_rank VARCHAR, brisbane VARCHAR) ### Question: What is the lowest value for Sydney, when WEEKLY RANK is less than 8, and when Brisbane is greater than 252,000? ### Answer: SELECT MIN(sydney) FROM table_name_16 WHERE weekly_rank < 8 AND brisbane > 252 OFFSET 000
What is the sum of the values for Melbourne, when Episode Number Production Number is 19 2-06, and when Sydney is less than 389,000?
CREATE TABLE table_name_93 (melbourne INTEGER, episode_number_production_number VARCHAR, sydney VARCHAR)
SELECT SUM(melbourne) FROM table_name_93 WHERE episode_number_production_number = "19 2-06" AND sydney < 389 OFFSET 000
### Context: CREATE TABLE table_name_93 (melbourne INTEGER, episode_number_production_number VARCHAR, sydney VARCHAR) ### Question: What is the sum of the values for Melbourne, when Episode Number Production Number is 19 2-06, and when Sydney is less than 389,000? ### Answer: SELECT SUM(melbourne) FROM table_name_93 WHERE episode_number_production_number = "19 2-06" AND sydney < 389 OFFSET 000
How many rounds had a time of 5:00 at UFC 155?
CREATE TABLE table_name_25 (round VARCHAR, time VARCHAR, event VARCHAR)
SELECT COUNT(round) FROM table_name_25 WHERE time = "5:00" AND event = "ufc 155"
### Context: CREATE TABLE table_name_25 (round VARCHAR, time VARCHAR, event VARCHAR) ### Question: How many rounds had a time of 5:00 at UFC 155? ### Answer: SELECT COUNT(round) FROM table_name_25 WHERE time = "5:00" AND event = "ufc 155"
Which event had a time of 2:34?
CREATE TABLE table_name_86 (event VARCHAR, time VARCHAR)
SELECT event FROM table_name_86 WHERE time = "2:34"
### Context: CREATE TABLE table_name_86 (event VARCHAR, time VARCHAR) ### Question: Which event had a time of 2:34? ### Answer: SELECT event FROM table_name_86 WHERE time = "2:34"
Who was the opponent in the bout that led to a win in a time of 1:21?
CREATE TABLE table_name_47 (opponent VARCHAR, res VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_47 WHERE res = "win" AND time = "1:21"
### Context: CREATE TABLE table_name_47 (opponent VARCHAR, res VARCHAR, time VARCHAR) ### Question: Who was the opponent in the bout that led to a win in a time of 1:21? ### Answer: SELECT opponent FROM table_name_47 WHERE res = "win" AND time = "1:21"
What is the method of resolution for the fight against akihiro gono?
CREATE TABLE table_name_31 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_31 WHERE opponent = "akihiro gono"
### Context: CREATE TABLE table_name_31 (method VARCHAR, opponent VARCHAR) ### Question: What is the method of resolution for the fight against akihiro gono? ### Answer: SELECT method FROM table_name_31 WHERE opponent = "akihiro gono"
What is the average number of rounds that Lance Gibson fought when his record was 1-1?
CREATE TABLE table_name_52 (round INTEGER, record VARCHAR)
SELECT AVG(round) FROM table_name_52 WHERE record = "1-1"
### Context: CREATE TABLE table_name_52 (round INTEGER, record VARCHAR) ### Question: What is the average number of rounds that Lance Gibson fought when his record was 1-1? ### Answer: SELECT AVG(round) FROM table_name_52 WHERE record = "1-1"
What is the Country of the Player with a Score of 69-71-66=206?
CREATE TABLE table_name_99 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_99 WHERE score = 69 - 71 - 66 = 206
### Context: CREATE TABLE table_name_99 (country VARCHAR, score VARCHAR) ### Question: What is the Country of the Player with a Score of 69-71-66=206? ### Answer: SELECT country FROM table_name_99 WHERE score = 69 - 71 - 66 = 206
What is the Place of the Player from Scotland?
CREATE TABLE table_name_36 (place VARCHAR, country VARCHAR)
SELECT place FROM table_name_36 WHERE country = "scotland"
### Context: CREATE TABLE table_name_36 (place VARCHAR, country VARCHAR) ### Question: What is the Place of the Player from Scotland? ### Answer: SELECT place FROM table_name_36 WHERE country = "scotland"
What is Steve Lowery's Place?
CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_78 WHERE player = "steve lowery"
### Context: CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR) ### Question: What is Steve Lowery's Place? ### Answer: SELECT place FROM table_name_78 WHERE player = "steve lowery"
What was 1961's qual?
CREATE TABLE table_name_98 (qual VARCHAR, year VARCHAR)
SELECT qual FROM table_name_98 WHERE year = "1961"
### Context: CREATE TABLE table_name_98 (qual VARCHAR, year VARCHAR) ### Question: What was 1961's qual? ### Answer: SELECT qual FROM table_name_98 WHERE year = "1961"
What was 13's finish?
CREATE TABLE table_name_10 (finish VARCHAR, start VARCHAR)
SELECT finish FROM table_name_10 WHERE start = "13"
### Context: CREATE TABLE table_name_10 (finish VARCHAR, start VARCHAR) ### Question: What was 13's finish? ### Answer: SELECT finish FROM table_name_10 WHERE start = "13"
How many laps were in 1969?
CREATE TABLE table_name_95 (laps VARCHAR, year VARCHAR)
SELECT laps FROM table_name_95 WHERE year = "1969"
### Context: CREATE TABLE table_name_95 (laps VARCHAR, year VARCHAR) ### Question: How many laps were in 1969? ### Answer: SELECT laps FROM table_name_95 WHERE year = "1969"
Which Rank has a Qual of 145.144?
CREATE TABLE table_name_68 (rank VARCHAR, qual VARCHAR)
SELECT rank FROM table_name_68 WHERE qual = "145.144"
### Context: CREATE TABLE table_name_68 (rank VARCHAR, qual VARCHAR) ### Question: Which Rank has a Qual of 145.144? ### Answer: SELECT rank FROM table_name_68 WHERE qual = "145.144"
What is the sources for Bandung?
CREATE TABLE table_name_37 (sources_of_pop___area VARCHAR, city VARCHAR)
SELECT sources_of_pop___area FROM table_name_37 WHERE city = "bandung"
### Context: CREATE TABLE table_name_37 (sources_of_pop___area VARCHAR, city VARCHAR) ### Question: What is the sources for Bandung? ### Answer: SELECT sources_of_pop___area FROM table_name_37 WHERE city = "bandung"
What race happened at Iowa Speedway?
CREATE TABLE table_name_91 (race VARCHAR, track VARCHAR)
SELECT race FROM table_name_91 WHERE track = "iowa speedway"
### Context: CREATE TABLE table_name_91 (race VARCHAR, track VARCHAR) ### Question: What race happened at Iowa Speedway? ### Answer: SELECT race FROM table_name_91 WHERE track = "iowa speedway"
Who won the Food World 250?
CREATE TABLE table_name_14 (winner VARCHAR, race VARCHAR)
SELECT winner FROM table_name_14 WHERE race = "food world 250"
### Context: CREATE TABLE table_name_14 (winner VARCHAR, race VARCHAR) ### Question: Who won the Food World 250? ### Answer: SELECT winner FROM table_name_14 WHERE race = "food world 250"
What race happened at pocono on 08-02-2008?
CREATE TABLE table_name_24 (race VARCHAR, track VARCHAR, date VARCHAR)
SELECT race FROM table_name_24 WHERE track = "pocono" AND date = "08-02-2008"
### Context: CREATE TABLE table_name_24 (race VARCHAR, track VARCHAR, date VARCHAR) ### Question: What race happened at pocono on 08-02-2008? ### Answer: SELECT race FROM table_name_24 WHERE track = "pocono" AND date = "08-02-2008"
What race happened on 04-25-2008?
CREATE TABLE table_name_1 (race VARCHAR, date VARCHAR)
SELECT race FROM table_name_1 WHERE date = "04-25-2008"
### Context: CREATE TABLE table_name_1 (race VARCHAR, date VARCHAR) ### Question: What race happened on 04-25-2008? ### Answer: SELECT race FROM table_name_1 WHERE date = "04-25-2008"
Where was the race on 09-13-2008?
CREATE TABLE table_name_34 (track VARCHAR, date VARCHAR)
SELECT track FROM table_name_34 WHERE date = "09-13-2008"
### Context: CREATE TABLE table_name_34 (track VARCHAR, date VARCHAR) ### Question: Where was the race on 09-13-2008? ### Answer: SELECT track FROM table_name_34 WHERE date = "09-13-2008"
Which game number was played after March 11 and ended with a record of 26-30-10?
CREATE TABLE table_name_17 (game INTEGER, record VARCHAR, march VARCHAR)
SELECT MIN(game) FROM table_name_17 WHERE record = "26-30-10" AND march > 11
### Context: CREATE TABLE table_name_17 (game INTEGER, record VARCHAR, march VARCHAR) ### Question: Which game number was played after March 11 and ended with a record of 26-30-10? ### Answer: SELECT MIN(game) FROM table_name_17 WHERE record = "26-30-10" AND march > 11
How many games total were played against @ Boston Bruins this season?
CREATE TABLE table_name_77 (game INTEGER, opponent VARCHAR)
SELECT SUM(game) FROM table_name_77 WHERE opponent = "@ boston bruins"
### Context: CREATE TABLE table_name_77 (game INTEGER, opponent VARCHAR) ### Question: How many games total were played against @ Boston Bruins this season? ### Answer: SELECT SUM(game) FROM table_name_77 WHERE opponent = "@ boston bruins"
When was the earliest game date in March where the match ended with a record of 25-29-10?
CREATE TABLE table_name_32 (march INTEGER, record VARCHAR)
SELECT MIN(march) FROM table_name_32 WHERE record = "25-29-10"
### Context: CREATE TABLE table_name_32 (march INTEGER, record VARCHAR) ### Question: When was the earliest game date in March where the match ended with a record of 25-29-10? ### Answer: SELECT MIN(march) FROM table_name_32 WHERE record = "25-29-10"
How many points when John Vopni won a season before 1977?
CREATE TABLE table_name_58 (points VARCHAR, season VARCHAR, winner VARCHAR)
SELECT points FROM table_name_58 WHERE season < 1977 AND winner = "john vopni"
### Context: CREATE TABLE table_name_58 (points VARCHAR, season VARCHAR, winner VARCHAR) ### Question: How many points when John Vopni won a season before 1977? ### Answer: SELECT points FROM table_name_58 WHERE season < 1977 AND winner = "john vopni"
How many points when Bill Benson was the winner?
CREATE TABLE table_name_95 (points VARCHAR, winner VARCHAR)
SELECT points FROM table_name_95 WHERE winner = "bill benson"
### Context: CREATE TABLE table_name_95 (points VARCHAR, winner VARCHAR) ### Question: How many points when Bill Benson was the winner? ### Answer: SELECT points FROM table_name_95 WHERE winner = "bill benson"
Which team did Tyson Chandler (7) have high rebounds for?
CREATE TABLE table_name_10 (team VARCHAR, high_rebounds VARCHAR)
SELECT team FROM table_name_10 WHERE high_rebounds = "tyson chandler (7)"
### Context: CREATE TABLE table_name_10 (team VARCHAR, high_rebounds VARCHAR) ### Question: Which team did Tyson Chandler (7) have high rebounds for? ### Answer: SELECT team FROM table_name_10 WHERE high_rebounds = "tyson chandler (7)"
How many high assists were on November 27?
CREATE TABLE table_name_10 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_name_10 WHERE date = "november 27"
### Context: CREATE TABLE table_name_10 (high_assists VARCHAR, date VARCHAR) ### Question: How many high assists were on November 27? ### Answer: SELECT high_assists FROM table_name_10 WHERE date = "november 27"
What was the winning score in 1980?
CREATE TABLE table_name_51 (winning_score VARCHAR, year VARCHAR)
SELECT winning_score FROM table_name_51 WHERE year = 1980
### Context: CREATE TABLE table_name_51 (winning_score VARCHAR, year VARCHAR) ### Question: What was the winning score in 1980? ### Answer: SELECT winning_score FROM table_name_51 WHERE year = 1980
What was the winning score in 1985 for Championship of u.s. women's open?
CREATE TABLE table_name_8 (winning_score VARCHAR, year VARCHAR, championship VARCHAR)
SELECT winning_score FROM table_name_8 WHERE year < 1985 AND championship = "u.s. women's open"
### Context: CREATE TABLE table_name_8 (winning_score VARCHAR, year VARCHAR, championship VARCHAR) ### Question: What was the winning score in 1985 for Championship of u.s. women's open? ### Answer: SELECT winning_score FROM table_name_8 WHERE year < 1985 AND championship = "u.s. women's open"
When was the runner-up Jane Geddes?
CREATE TABLE table_name_35 (year VARCHAR, runner_up VARCHAR)
SELECT year FROM table_name_35 WHERE runner_up = "jane geddes"
### Context: CREATE TABLE table_name_35 (year VARCHAR, runner_up VARCHAR) ### Question: When was the runner-up Jane Geddes? ### Answer: SELECT year FROM table_name_35 WHERE runner_up = "jane geddes"
Which championship after 1985 had a winning score of –8 (68-72-69-71=280)?
CREATE TABLE table_name_17 (championship VARCHAR, year VARCHAR, winning_score VARCHAR)
SELECT championship FROM table_name_17 WHERE year > 1985 AND winning_score = –8(68 - 72 - 69 - 71 = 280)
### Context: CREATE TABLE table_name_17 (championship VARCHAR, year VARCHAR, winning_score VARCHAR) ### Question: Which championship after 1985 had a winning score of –8 (68-72-69-71=280)? ### Answer: SELECT championship FROM table_name_17 WHERE year > 1985 AND winning_score = –8(68 - 72 - 69 - 71 = 280)
What was the method of resolution for the fight against jake brown?
CREATE TABLE table_name_77 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_77 WHERE opponent = "jake brown"
### Context: CREATE TABLE table_name_77 (method VARCHAR, opponent VARCHAR) ### Question: What was the method of resolution for the fight against jake brown? ### Answer: SELECT method FROM table_name_77 WHERE opponent = "jake brown"
On what team did John Bowe round winner at Winton Motor Raceway belong to?
CREATE TABLE table_name_44 (team VARCHAR, round_winner VARCHAR, circuit VARCHAR)
SELECT team FROM table_name_44 WHERE round_winner = "john bowe" AND circuit = "winton motor raceway"
### Context: CREATE TABLE table_name_44 (team VARCHAR, round_winner VARCHAR, circuit VARCHAR) ### Question: On what team did John Bowe round winner at Winton Motor Raceway belong to? ### Answer: SELECT team FROM table_name_44 WHERE round_winner = "john bowe" AND circuit = "winton motor raceway"
What was the team features at Oran Park Raceway?
CREATE TABLE table_name_41 (team VARCHAR, circuit VARCHAR)
SELECT team FROM table_name_41 WHERE circuit = "oran park raceway"
### Context: CREATE TABLE table_name_41 (team VARCHAR, circuit VARCHAR) ### Question: What was the team features at Oran Park Raceway? ### Answer: SELECT team FROM table_name_41 WHERE circuit = "oran park raceway"
Where is the Eastern Creek Raceway located?
CREATE TABLE table_name_19 (location___state VARCHAR, circuit VARCHAR)
SELECT location___state FROM table_name_19 WHERE circuit = "eastern creek raceway"
### Context: CREATE TABLE table_name_19 (location___state VARCHAR, circuit VARCHAR) ### Question: Where is the Eastern Creek Raceway located? ### Answer: SELECT location___state FROM table_name_19 WHERE circuit = "eastern creek raceway"
Which state was Dai from?
CREATE TABLE table_name_9 (state VARCHAR, name VARCHAR)
SELECT state FROM table_name_9 WHERE name = "dai"
### Context: CREATE TABLE table_name_9 (state VARCHAR, name VARCHAR) ### Question: Which state was Dai from? ### Answer: SELECT state FROM table_name_9 WHERE name = "dai"
What was Mu's title?
CREATE TABLE table_name_6 (title VARCHAR, name VARCHAR)
SELECT title FROM table_name_6 WHERE name = "mu"
### Context: CREATE TABLE table_name_6 (title VARCHAR, name VARCHAR) ### Question: What was Mu's title? ### Answer: SELECT title FROM table_name_6 WHERE name = "mu"
what is the highest attendance for week 3?
CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR)
SELECT MAX(attendance) FROM table_name_34 WHERE week = 3
### Context: CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR) ### Question: what is the highest attendance for week 3? ### Answer: SELECT MAX(attendance) FROM table_name_34 WHERE week = 3
what is the result for the week higher than 7 on november 4, 1979?
CREATE TABLE table_name_16 (result VARCHAR, week VARCHAR, date VARCHAR)
SELECT result FROM table_name_16 WHERE week > 7 AND date = "november 4, 1979"
### Context: CREATE TABLE table_name_16 (result VARCHAR, week VARCHAR, date VARCHAR) ### Question: what is the result for the week higher than 7 on november 4, 1979? ### Answer: SELECT result FROM table_name_16 WHERE week > 7 AND date = "november 4, 1979"
what is the lowest week when the date is september 16, 1979 and the attendance less than 54,212?
CREATE TABLE table_name_2 (week INTEGER, date VARCHAR, attendance VARCHAR)
SELECT MIN(week) FROM table_name_2 WHERE date = "september 16, 1979" AND attendance < 54 OFFSET 212
### Context: CREATE TABLE table_name_2 (week INTEGER, date VARCHAR, attendance VARCHAR) ### Question: what is the lowest week when the date is september 16, 1979 and the attendance less than 54,212? ### Answer: SELECT MIN(week) FROM table_name_2 WHERE date = "september 16, 1979" AND attendance < 54 OFFSET 212
Which competition has stuart potts as the man of the match?
CREATE TABLE table_name_98 (competition VARCHAR, man_of_the_match VARCHAR)
SELECT competition FROM table_name_98 WHERE man_of_the_match = "stuart potts"
### Context: CREATE TABLE table_name_98 (competition VARCHAR, man_of_the_match VARCHAR) ### Question: Which competition has stuart potts as the man of the match? ### Answer: SELECT competition FROM table_name_98 WHERE man_of_the_match = "stuart potts"
Which venue had a lost 5-4 result?
CREATE TABLE table_name_15 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_15 WHERE result = "lost 5-4"
### Context: CREATE TABLE table_name_15 (venue VARCHAR, result VARCHAR) ### Question: Which venue had a lost 5-4 result? ### Answer: SELECT venue FROM table_name_15 WHERE result = "lost 5-4"
What is the venue of the match with the wightlink raiders as the opponent?
CREATE TABLE table_name_9 (venue VARCHAR, opponent VARCHAR)
SELECT venue FROM table_name_9 WHERE opponent = "wightlink raiders"
### Context: CREATE TABLE table_name_9 (venue VARCHAR, opponent VARCHAR) ### Question: What is the venue of the match with the wightlink raiders as the opponent? ### Answer: SELECT venue FROM table_name_9 WHERE opponent = "wightlink raiders"
What is the result of the league/cup competition with the swindon wildcats as the opponent and neil liddiard as the man of the match?
CREATE TABLE table_name_45 (result VARCHAR, man_of_the_match VARCHAR, competition VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_45 WHERE competition = "league/cup" AND opponent = "swindon wildcats" AND man_of_the_match = "neil liddiard"
### Context: CREATE TABLE table_name_45 (result VARCHAR, man_of_the_match VARCHAR, competition VARCHAR, opponent VARCHAR) ### Question: What is the result of the league/cup competition with the swindon wildcats as the opponent and neil liddiard as the man of the match? ### Answer: SELECT result FROM table_name_45 WHERE competition = "league/cup" AND opponent = "swindon wildcats" AND man_of_the_match = "neil liddiard"
What is the attendance of the match on the 2nd with the slough jets as the opponent?
CREATE TABLE table_name_35 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_35 WHERE opponent = "slough jets" AND date = "2nd"
### Context: CREATE TABLE table_name_35 (attendance VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: What is the attendance of the match on the 2nd with the slough jets as the opponent? ### Answer: SELECT attendance FROM table_name_35 WHERE opponent = "slough jets" AND date = "2nd"
What was the score when the total was 75–53?
CREATE TABLE table_name_89 (score VARCHAR, total VARCHAR)
SELECT score FROM table_name_89 WHERE total = "75–53"
### Context: CREATE TABLE table_name_89 (score VARCHAR, total VARCHAR) ### Question: What was the score when the total was 75–53? ### Answer: SELECT score FROM table_name_89 WHERE total = "75–53"
What was the total when the set 3 was 25–14?
CREATE TABLE table_name_80 (total VARCHAR, set_3 VARCHAR)
SELECT total FROM table_name_80 WHERE set_3 = "25–14"
### Context: CREATE TABLE table_name_80 (total VARCHAR, set_3 VARCHAR) ### Question: What was the total when the set 3 was 25–14? ### Answer: SELECT total FROM table_name_80 WHERE set_3 = "25–14"
What date was the set 1 25–23, and a Set 3 of 25–14?
CREATE TABLE table_name_12 (date VARCHAR, set_1 VARCHAR, set_3 VARCHAR)
SELECT date FROM table_name_12 WHERE set_1 = "25–23" AND set_3 = "25–14"
### Context: CREATE TABLE table_name_12 (date VARCHAR, set_1 VARCHAR, set_3 VARCHAR) ### Question: What date was the set 1 25–23, and a Set 3 of 25–14? ### Answer: SELECT date FROM table_name_12 WHERE set_1 = "25–23" AND set_3 = "25–14"
What date was the Set 3 of 12–25?
CREATE TABLE table_name_79 (date VARCHAR, set_3 VARCHAR)
SELECT date FROM table_name_79 WHERE set_3 = "12–25"
### Context: CREATE TABLE table_name_79 (date VARCHAR, set_3 VARCHAR) ### Question: What date was the Set 3 of 12–25? ### Answer: SELECT date FROM table_name_79 WHERE set_3 = "12–25"
What is the Set 3 when the total was 53–75?
CREATE TABLE table_name_26 (set_3 VARCHAR, total VARCHAR)
SELECT set_3 FROM table_name_26 WHERE total = "53–75"
### Context: CREATE TABLE table_name_26 (set_3 VARCHAR, total VARCHAR) ### Question: What is the Set 3 when the total was 53–75? ### Answer: SELECT set_3 FROM table_name_26 WHERE total = "53–75"
What is the average win with a top 5 greater than 2 and a top 10 less than 5?
CREATE TABLE table_name_99 (wins INTEGER, top_5 VARCHAR, top_10 VARCHAR)
SELECT AVG(wins) FROM table_name_99 WHERE top_5 > 2 AND top_10 < 5
### Context: CREATE TABLE table_name_99 (wins INTEGER, top_5 VARCHAR, top_10 VARCHAR) ### Question: What is the average win with a top 5 greater than 2 and a top 10 less than 5? ### Answer: SELECT AVG(wins) FROM table_name_99 WHERE top_5 > 2 AND top_10 < 5
How many poles have 4 Starts of 4 and position of 46th?
CREATE TABLE table_name_20 (poles VARCHAR, starts VARCHAR, position VARCHAR)
SELECT COUNT(poles) FROM table_name_20 WHERE starts = 4 AND position = "46th"
### Context: CREATE TABLE table_name_20 (poles VARCHAR, starts VARCHAR, position VARCHAR) ### Question: How many poles have 4 Starts of 4 and position of 46th? ### Answer: SELECT COUNT(poles) FROM table_name_20 WHERE starts = 4 AND position = "46th"
Sum of m. night shyamalan ranks?
CREATE TABLE table_name_41 (rank INTEGER, director_s_ VARCHAR)
SELECT SUM(rank) FROM table_name_41 WHERE director_s_ = "m. night shyamalan"
### Context: CREATE TABLE table_name_41 (rank INTEGER, director_s_ VARCHAR) ### Question: Sum of m. night shyamalan ranks? ### Answer: SELECT SUM(rank) FROM table_name_41 WHERE director_s_ = "m. night shyamalan"
Director for Star Wars Episode II: attack of the clones?
CREATE TABLE table_name_92 (director_s_ VARCHAR, title VARCHAR)
SELECT director_s_ FROM table_name_92 WHERE title = "star wars episode ii: attack of the clones"
### Context: CREATE TABLE table_name_92 (director_s_ VARCHAR, title VARCHAR) ### Question: Director for Star Wars Episode II: attack of the clones? ### Answer: SELECT director_s_ FROM table_name_92 WHERE title = "star wars episode ii: attack of the clones"
What was the tie no when Oxford city was the away team?
CREATE TABLE table_name_39 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_39 WHERE away_team = "oxford city"
### Context: CREATE TABLE table_name_39 (tie_no VARCHAR, away_team VARCHAR) ### Question: What was the tie no when Oxford city was the away team? ### Answer: SELECT tie_no FROM table_name_39 WHERE away_team = "oxford city"
What was the tie no when Wrexham was the away team?
CREATE TABLE table_name_97 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_97 WHERE away_team = "wrexham"
### Context: CREATE TABLE table_name_97 (tie_no VARCHAR, away_team VARCHAR) ### Question: What was the tie no when Wrexham was the away team? ### Answer: SELECT tie_no FROM table_name_97 WHERE away_team = "wrexham"
What was the score when Spennymoor United as the away team?
CREATE TABLE table_name_67 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_67 WHERE away_team = "spennymoor united"
### Context: CREATE TABLE table_name_67 (score VARCHAR, away_team VARCHAR) ### Question: What was the score when Spennymoor United as the away team? ### Answer: SELECT score FROM table_name_67 WHERE away_team = "spennymoor united"
What date was Grimsby Town the away team?
CREATE TABLE table_name_34 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_34 WHERE away_team = "grimsby town"
### Context: CREATE TABLE table_name_34 (date VARCHAR, away_team VARCHAR) ### Question: What date was Grimsby Town the away team? ### Answer: SELECT date FROM table_name_34 WHERE away_team = "grimsby town"
Who was eliminated on Banana Night?
CREATE TABLE table_name_33 (name VARCHAR, eliminated VARCHAR)
SELECT name FROM table_name_33 WHERE eliminated = "banana night"
### Context: CREATE TABLE table_name_33 (name VARCHAR, eliminated VARCHAR) ### Question: Who was eliminated on Banana Night? ### Answer: SELECT name FROM table_name_33 WHERE eliminated = "banana night"
Who was the special guest when the category was vocal groups and the name was Romantic?
CREATE TABLE table_name_28 (special_guest VARCHAR, category VARCHAR, name VARCHAR)
SELECT special_guest FROM table_name_28 WHERE category = "vocal groups" AND name = "romantic"
### Context: CREATE TABLE table_name_28 (special_guest VARCHAR, category VARCHAR, name VARCHAR) ### Question: Who was the special guest when the category was vocal groups and the name was Romantic? ### Answer: SELECT special_guest FROM table_name_28 WHERE category = "vocal groups" AND name = "romantic"
On what date was elimination on final night?
CREATE TABLE table_name_43 (date VARCHAR, eliminated VARCHAR)
SELECT date FROM table_name_43 WHERE eliminated = "final night"
### Context: CREATE TABLE table_name_43 (date VARCHAR, eliminated VARCHAR) ### Question: On what date was elimination on final night? ### Answer: SELECT date FROM table_name_43 WHERE eliminated = "final night"
What is the total number of games for the opponent in Washington?
CREATE TABLE table_name_89 (game VARCHAR, opponent VARCHAR)
SELECT COUNT(game) FROM table_name_89 WHERE opponent = "washington"
### Context: CREATE TABLE table_name_89 (game VARCHAR, opponent VARCHAR) ### Question: What is the total number of games for the opponent in Washington? ### Answer: SELECT COUNT(game) FROM table_name_89 WHERE opponent = "washington"
How many stories have a height less than 138 meters with a completion date in 1971?
CREATE TABLE table_name_53 (stories VARCHAR, height__m_ VARCHAR, year_of_completion VARCHAR)
SELECT stories FROM table_name_53 WHERE height__m_ < 138 AND year_of_completion = 1971
### Context: CREATE TABLE table_name_53 (stories VARCHAR, height__m_ VARCHAR, year_of_completion VARCHAR) ### Question: How many stories have a height less than 138 meters with a completion date in 1971? ### Answer: SELECT stories FROM table_name_53 WHERE height__m_ < 138 AND year_of_completion = 1971
What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters?
CREATE TABLE table_name_38 (stories INTEGER, height__m_ VARCHAR, location VARCHAR, year_of_completion VARCHAR)
SELECT MAX(stories) FROM table_name_38 WHERE location = "recife" AND year_of_completion > 2007 AND height__m_ < 135
### Context: CREATE TABLE table_name_38 (stories INTEGER, height__m_ VARCHAR, location VARCHAR, year_of_completion VARCHAR) ### Question: What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters? ### Answer: SELECT MAX(stories) FROM table_name_38 WHERE location = "recife" AND year_of_completion > 2007 AND height__m_ < 135
Which Sanskrit has an English of mindfulness of breathing?
CREATE TABLE table_name_26 (sanskrit VARCHAR, english VARCHAR)
SELECT sanskrit FROM table_name_26 WHERE english = "mindfulness of breathing"
### Context: CREATE TABLE table_name_26 (sanskrit VARCHAR, english VARCHAR) ### Question: Which Sanskrit has an English of mindfulness of breathing? ### Answer: SELECT sanskrit FROM table_name_26 WHERE english = "mindfulness of breathing"
Which Sanskrit has a Chinese of —, and an English of cultivation of settling?
CREATE TABLE table_name_74 (sanskrit VARCHAR, chinese VARCHAR, english VARCHAR)
SELECT sanskrit FROM table_name_74 WHERE chinese = "—" AND english = "cultivation of settling"
### Context: CREATE TABLE table_name_74 (sanskrit VARCHAR, chinese VARCHAR, english VARCHAR) ### Question: Which Sanskrit has a Chinese of —, and an English of cultivation of settling? ### Answer: SELECT sanskrit FROM table_name_74 WHERE chinese = "—" AND english = "cultivation of settling"
Which Pali has an English of mindfulness of breathing?
CREATE TABLE table_name_54 (pali VARCHAR, english VARCHAR)
SELECT pali FROM table_name_54 WHERE english = "mindfulness of breathing"
### Context: CREATE TABLE table_name_54 (pali VARCHAR, english VARCHAR) ### Question: Which Pali has an English of mindfulness of breathing? ### Answer: SELECT pali FROM table_name_54 WHERE english = "mindfulness of breathing"
Which Pali has an English of meditative concentration?
CREATE TABLE table_name_74 (pali VARCHAR, english VARCHAR)
SELECT pali FROM table_name_74 WHERE english = "meditative concentration"
### Context: CREATE TABLE table_name_74 (pali VARCHAR, english VARCHAR) ### Question: Which Pali has an English of meditative concentration? ### Answer: SELECT pali FROM table_name_74 WHERE english = "meditative concentration"
Which Chinese has a Pali of atappa?
CREATE TABLE table_name_59 (chinese VARCHAR, pali VARCHAR)
SELECT chinese FROM table_name_59 WHERE pali = "atappa"
### Context: CREATE TABLE table_name_59 (chinese VARCHAR, pali VARCHAR) ### Question: Which Chinese has a Pali of atappa? ### Answer: SELECT chinese FROM table_name_59 WHERE pali = "atappa"
Which English has a Sanskrit of samādhi?
CREATE TABLE table_name_42 (english VARCHAR, sanskrit VARCHAR)
SELECT english FROM table_name_42 WHERE sanskrit = "samādhi"
### Context: CREATE TABLE table_name_42 (english VARCHAR, sanskrit VARCHAR) ### Question: Which English has a Sanskrit of samādhi? ### Answer: SELECT english FROM table_name_42 WHERE sanskrit = "samādhi"
Who is the player in guard position from Stephen F. Austin in a round less than 8?
CREATE TABLE table_name_60 (player VARCHAR, school_club_team VARCHAR, round VARCHAR, position VARCHAR)
SELECT player FROM table_name_60 WHERE round < 8 AND position = "guard" AND school_club_team = "stephen f. austin"
### Context: CREATE TABLE table_name_60 (player VARCHAR, school_club_team VARCHAR, round VARCHAR, position VARCHAR) ### Question: Who is the player in guard position from Stephen F. Austin in a round less than 8? ### Answer: SELECT player FROM table_name_60 WHERE round < 8 AND position = "guard" AND school_club_team = "stephen f. austin"
Which position has a pick less than 41 from Ohio State?
CREATE TABLE table_name_31 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_31 WHERE pick < 41 AND school_club_team = "ohio state"
### Context: CREATE TABLE table_name_31 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR) ### Question: Which position has a pick less than 41 from Ohio State? ### Answer: SELECT position FROM table_name_31 WHERE pick < 41 AND school_club_team = "ohio state"
What shows for 2006 when 2002 is Grand Slam Tournaments?
CREATE TABLE table_name_52 (Id VARCHAR)
SELECT 2006 FROM table_name_52 WHERE 2002 = "grand slam tournaments"
### Context: CREATE TABLE table_name_52 (Id VARCHAR) ### Question: What shows for 2006 when 2002 is Grand Slam Tournaments? ### Answer: SELECT 2006 FROM table_name_52 WHERE 2002 = "grand slam tournaments"
What shows for 2002 when 2006 is Grand Slam Tournaments?
CREATE TABLE table_name_65 (Id VARCHAR)
SELECT 2002 FROM table_name_65 WHERE 2006 = "grand slam tournaments"
### Context: CREATE TABLE table_name_65 (Id VARCHAR) ### Question: What shows for 2002 when 2006 is Grand Slam Tournaments? ### Answer: SELECT 2002 FROM table_name_65 WHERE 2006 = "grand slam tournaments"
What shows for 2005 when 2002 shows 0–1?
CREATE TABLE table_name_16 (Id VARCHAR)
SELECT 2005 FROM table_name_16 WHERE 2002 = "0–1"
### Context: CREATE TABLE table_name_16 (Id VARCHAR) ### Question: What shows for 2005 when 2002 shows 0–1? ### Answer: SELECT 2005 FROM table_name_16 WHERE 2002 = "0–1"
What shows for 2006 when 2002 is 0–1?
CREATE TABLE table_name_96 (Id VARCHAR)
SELECT 2006 FROM table_name_96 WHERE 2002 = "0–1"
### Context: CREATE TABLE table_name_96 (Id VARCHAR) ### Question: What shows for 2006 when 2002 is 0–1? ### Answer: SELECT 2006 FROM table_name_96 WHERE 2002 = "0–1"
What shows for 2002 when the 2004 is A, and the 2005 is 1r?
CREATE TABLE table_name_40 (Id VARCHAR)
SELECT 2002 FROM table_name_40 WHERE 2004 = "a" AND 2005 = "1r"
### Context: CREATE TABLE table_name_40 (Id VARCHAR) ### Question: What shows for 2002 when the 2004 is A, and the 2005 is 1r? ### Answer: SELECT 2002 FROM table_name_40 WHERE 2004 = "a" AND 2005 = "1r"
What shows for 2004 when 2005 is A, 2006 is A, tournament is US Open?
CREATE TABLE table_name_60 (tournament VARCHAR)
SELECT 2004 FROM table_name_60 WHERE 2005 = "a" AND 2006 = "a" AND tournament = "us open"
### Context: CREATE TABLE table_name_60 (tournament VARCHAR) ### Question: What shows for 2004 when 2005 is A, 2006 is A, tournament is US Open? ### Answer: SELECT 2004 FROM table_name_60 WHERE 2005 = "a" AND 2006 = "a" AND tournament = "us open"
Who was the opponent on December 2, 1962?
CREATE TABLE table_name_8 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_8 WHERE date = "december 2, 1962"
### Context: CREATE TABLE table_name_8 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on December 2, 1962? ### Answer: SELECT opponent FROM table_name_8 WHERE date = "december 2, 1962"