question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the class for the position of lg?
CREATE TABLE table_name_4 (class VARCHAR, position VARCHAR)
SELECT class FROM table_name_4 WHERE position = "lg"
### Context: CREATE TABLE table_name_4 (class VARCHAR, position VARCHAR) ### Question: What is the class for the position of lg? ### Answer: SELECT class FROM table_name_4 WHERE position = "lg"
What is the highest weight for the Farnley Stakes race?
CREATE TABLE table_name_67 (weight__kg_ INTEGER, race VARCHAR)
SELECT MAX(weight__kg_) FROM table_name_67 WHERE race = "farnley stakes"
### Context: CREATE TABLE table_name_67 (weight__kg_ INTEGER, race VARCHAR) ### Question: What is the highest weight for the Farnley Stakes race? ### Answer: SELECT MAX(weight__kg_) FROM table_name_67 WHERE race = "farnley stakes"
What time is associated with the event that happened in Tokyo, Japan, ending in a draw, with 3 rounds?
CREATE TABLE table_name_44 (time VARCHAR, res VARCHAR, location VARCHAR, round VARCHAR)
SELECT time FROM table_name_44 WHERE location = "tokyo, japan" AND round = 3 AND res = "draw"
### Context: CREATE TABLE table_name_44 (time VARCHAR, res VARCHAR, location VARCHAR, round VARCHAR) ### Question: What time is associated with the event that happened in Tokyo, Japan, ending in a draw, with 3 rounds? ### Answer: SELECT time FROM table_name_44 WHERE location = "tokyo, japan" AND round = 3 AND res = "draw"
Which 2012 has a 2007 of 0 / 4?
CREATE TABLE table_name_8 (Id VARCHAR)
SELECT 2012 FROM table_name_8 WHERE 2007 = "0 / 4"
### Context: CREATE TABLE table_name_8 (Id VARCHAR) ### Question: Which 2012 has a 2007 of 0 / 4? ### Answer: SELECT 2012 FROM table_name_8 WHERE 2007 = "0 / 4"
Which 2011 has a Career Win-Loss of 7–10?
CREATE TABLE table_name_65 (career_win_loss VARCHAR)
SELECT 2011 FROM table_name_65 WHERE career_win_loss = "7–10"
### Context: CREATE TABLE table_name_65 (career_win_loss VARCHAR) ### Question: Which 2011 has a Career Win-Loss of 7–10? ### Answer: SELECT 2011 FROM table_name_65 WHERE career_win_loss = "7–10"
Which 1998 has a 2002 of 2–4?
CREATE TABLE table_name_65 (Id VARCHAR)
SELECT 1998 FROM table_name_65 WHERE 2002 = "2–4"
### Context: CREATE TABLE table_name_65 (Id VARCHAR) ### Question: Which 1998 has a 2002 of 2–4? ### Answer: SELECT 1998 FROM table_name_65 WHERE 2002 = "2–4"
Which 2002 has a 2008 of 3–3?
CREATE TABLE table_name_79 (Id VARCHAR)
SELECT 2002 FROM table_name_79 WHERE 2008 = "3–3"
### Context: CREATE TABLE table_name_79 (Id VARCHAR) ### Question: Which 2002 has a 2008 of 3–3? ### Answer: SELECT 2002 FROM table_name_79 WHERE 2008 = "3–3"
Which 2003 has a 2012 of 1r, and a 2008 of 1r?
CREATE TABLE table_name_42 (Id VARCHAR)
SELECT 2003 FROM table_name_42 WHERE 2012 = "1r" AND 2008 = "1r"
### Context: CREATE TABLE table_name_42 (Id VARCHAR) ### Question: Which 2003 has a 2012 of 1r, and a 2008 of 1r? ### Answer: SELECT 2003 FROM table_name_42 WHERE 2012 = "1r" AND 2008 = "1r"
What club is robert gallery a part of
CREATE TABLE table_name_51 (nfl_club VARCHAR, player VARCHAR)
SELECT nfl_club FROM table_name_51 WHERE player = "robert gallery"
### Context: CREATE TABLE table_name_51 (nfl_club VARCHAR, player VARCHAR) ### Question: What club is robert gallery a part of ### Answer: SELECT nfl_club FROM table_name_51 WHERE player = "robert gallery"
How many attendance numbers had more than 15 games, and sellouts of more than 8 in the 2011-12 season?
CREATE TABLE table_name_34 (attendance VARCHAR, season VARCHAR, games VARCHAR, sellouts VARCHAR)
SELECT COUNT(attendance) FROM table_name_34 WHERE games > 15 AND sellouts > 8 AND season = "2011-12"
### Context: CREATE TABLE table_name_34 (attendance VARCHAR, season VARCHAR, games VARCHAR, sellouts VARCHAR) ### Question: How many attendance numbers had more than 15 games, and sellouts of more than 8 in the 2011-12 season? ### Answer: SELECT COUNT(attendance) FROM table_name_34 WHERE games > 15 AND sellouts > 8 AND season = "2011-12"
What's the mean attendance number when the record is 12-4 and the average is less than 10,027?
CREATE TABLE table_name_24 (attendance INTEGER, record VARCHAR, average VARCHAR)
SELECT AVG(attendance) FROM table_name_24 WHERE record = "12-4" AND average < 10 OFFSET 027
### Context: CREATE TABLE table_name_24 (attendance INTEGER, record VARCHAR, average VARCHAR) ### Question: What's the mean attendance number when the record is 12-4 and the average is less than 10,027? ### Answer: SELECT AVG(attendance) FROM table_name_24 WHERE record = "12-4" AND average < 10 OFFSET 027
What is the full amount of averages when the sellouts are less than 14, the season is 2011-12, and attendance is less than 162,474?
CREATE TABLE table_name_73 (average VARCHAR, attendance VARCHAR, sellouts VARCHAR, season VARCHAR)
SELECT COUNT(average) FROM table_name_73 WHERE sellouts < 14 AND season = "2011-12" AND attendance < 162 OFFSET 474
### Context: CREATE TABLE table_name_73 (average VARCHAR, attendance VARCHAR, sellouts VARCHAR, season VARCHAR) ### Question: What is the full amount of averages when the sellouts are less than 14, the season is 2011-12, and attendance is less than 162,474? ### Answer: SELECT COUNT(average) FROM table_name_73 WHERE sellouts < 14 AND season = "2011-12" AND attendance < 162 OFFSET 474
What medal was awarded in the men's freestyle 52 kg?
CREATE TABLE table_name_69 (medal VARCHAR, event VARCHAR)
SELECT medal FROM table_name_69 WHERE event = "men's freestyle 52 kg"
### Context: CREATE TABLE table_name_69 (medal VARCHAR, event VARCHAR) ### Question: What medal was awarded in the men's freestyle 52 kg? ### Answer: SELECT medal FROM table_name_69 WHERE event = "men's freestyle 52 kg"
Events smaller than 1 had what highest cuts made?
CREATE TABLE table_name_65 (cuts_made INTEGER, events INTEGER)
SELECT MAX(cuts_made) FROM table_name_65 WHERE events < 1
### Context: CREATE TABLE table_name_65 (cuts_made INTEGER, events INTEGER) ### Question: Events smaller than 1 had what highest cuts made? ### Answer: SELECT MAX(cuts_made) FROM table_name_65 WHERE events < 1
What position was played with a Difference of - 5, and a Played larger than 14?
CREATE TABLE table_name_48 (position INTEGER, difference VARCHAR, played VARCHAR)
SELECT AVG(position) FROM table_name_48 WHERE difference = "- 5" AND played > 14
### Context: CREATE TABLE table_name_48 (position INTEGER, difference VARCHAR, played VARCHAR) ### Question: What position was played with a Difference of - 5, and a Played larger than 14? ### Answer: SELECT AVG(position) FROM table_name_48 WHERE difference = "- 5" AND played > 14
How many games lost associated with under 14 played?
CREATE TABLE table_name_66 (lost VARCHAR, played INTEGER)
SELECT COUNT(lost) FROM table_name_66 WHERE played < 14
### Context: CREATE TABLE table_name_66 (lost VARCHAR, played INTEGER) ### Question: How many games lost associated with under 14 played? ### Answer: SELECT COUNT(lost) FROM table_name_66 WHERE played < 14
How many games against for team guarani with under 3 draws?
CREATE TABLE table_name_84 (against INTEGER, team VARCHAR, drawn VARCHAR)
SELECT SUM(against) FROM table_name_84 WHERE team = "guarani" AND drawn < 3
### Context: CREATE TABLE table_name_84 (against INTEGER, team VARCHAR, drawn VARCHAR) ### Question: How many games against for team guarani with under 3 draws? ### Answer: SELECT SUM(against) FROM table_name_84 WHERE team = "guarani" AND drawn < 3
What Congress had less than 23 cosponsors and had June 30, 2005 as the date of introduction of the bill?
CREATE TABLE table_name_92 (congress VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR)
SELECT congress FROM table_name_92 WHERE _number_of_cosponsors < 23 AND date_introduced = "june 30, 2005"
### Context: CREATE TABLE table_name_92 (congress VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR) ### Question: What Congress had less than 23 cosponsors and had June 30, 2005 as the date of introduction of the bill? ### Answer: SELECT congress FROM table_name_92 WHERE _number_of_cosponsors < 23 AND date_introduced = "june 30, 2005"
Who sponsored the bill introduced on June 9, 2011?
CREATE TABLE table_name_77 (sponsor_s_ VARCHAR, date_introduced VARCHAR)
SELECT sponsor_s_ FROM table_name_77 WHERE date_introduced = "june 9, 2011"
### Context: CREATE TABLE table_name_77 (sponsor_s_ VARCHAR, date_introduced VARCHAR) ### Question: Who sponsored the bill introduced on June 9, 2011? ### Answer: SELECT sponsor_s_ FROM table_name_77 WHERE date_introduced = "june 9, 2011"
Who sponsored the bill that was introduced on June 2, 2009?
CREATE TABLE table_name_55 (sponsor_s_ VARCHAR, date_introduced VARCHAR)
SELECT sponsor_s_ FROM table_name_55 WHERE date_introduced = "june 2, 2009"
### Context: CREATE TABLE table_name_55 (sponsor_s_ VARCHAR, date_introduced VARCHAR) ### Question: Who sponsored the bill that was introduced on June 2, 2009? ### Answer: SELECT sponsor_s_ FROM table_name_55 WHERE date_introduced = "june 2, 2009"
What is the Outcome of the Melbourne Tournament?
CREATE TABLE table_name_48 (outcome VARCHAR, tournament VARCHAR)
SELECT outcome FROM table_name_48 WHERE tournament = "melbourne"
### Context: CREATE TABLE table_name_48 (outcome VARCHAR, tournament VARCHAR) ### Question: What is the Outcome of the Melbourne Tournament? ### Answer: SELECT outcome FROM table_name_48 WHERE tournament = "melbourne"
In what Tournament was Janet Young a Partner?
CREATE TABLE table_name_18 (tournament VARCHAR, partner VARCHAR)
SELECT tournament FROM table_name_18 WHERE partner = "janet young"
### Context: CREATE TABLE table_name_18 (tournament VARCHAR, partner VARCHAR) ### Question: In what Tournament was Janet Young a Partner? ### Answer: SELECT tournament FROM table_name_18 WHERE partner = "janet young"
What was the Outcome of the match with a Score of w/o?
CREATE TABLE table_name_57 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_57 WHERE score = "w/o"
### Context: CREATE TABLE table_name_57 (outcome VARCHAR, score VARCHAR) ### Question: What was the Outcome of the match with a Score of w/o? ### Answer: SELECT outcome FROM table_name_57 WHERE score = "w/o"
Which school or club team has a pick of 139?
CREATE TABLE table_name_60 (school_club_team VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_60 WHERE pick = 139
### Context: CREATE TABLE table_name_60 (school_club_team VARCHAR, pick VARCHAR) ### Question: Which school or club team has a pick of 139? ### Answer: SELECT school_club_team FROM table_name_60 WHERE pick = 139
What is the pick number for the player playing tackle position, and a round less than 15?
CREATE TABLE table_name_97 (pick INTEGER, position VARCHAR, round VARCHAR)
SELECT SUM(pick) FROM table_name_97 WHERE position = "tackle" AND round < 15
### Context: CREATE TABLE table_name_97 (pick INTEGER, position VARCHAR, round VARCHAR) ### Question: What is the pick number for the player playing tackle position, and a round less than 15? ### Answer: SELECT SUM(pick) FROM table_name_97 WHERE position = "tackle" AND round < 15
Which school of club team has a pick of 46?
CREATE TABLE table_name_83 (school_club_team VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_83 WHERE pick = 46
### Context: CREATE TABLE table_name_83 (school_club_team VARCHAR, pick VARCHAR) ### Question: Which school of club team has a pick of 46? ### Answer: SELECT school_club_team FROM table_name_83 WHERE pick = 46
Who got 59.486 for Qual 2?
CREATE TABLE table_name_15 (name VARCHAR, qual_2 VARCHAR)
SELECT name FROM table_name_15 WHERE qual_2 = "59.486"
### Context: CREATE TABLE table_name_15 (name VARCHAR, qual_2 VARCHAR) ### Question: Who got 59.486 for Qual 2? ### Answer: SELECT name FROM table_name_15 WHERE qual_2 = "59.486"
Who got 59.578 for Qual 1?
CREATE TABLE table_name_79 (name VARCHAR, qual_1 VARCHAR)
SELECT name FROM table_name_79 WHERE qual_1 = "59.578"
### Context: CREATE TABLE table_name_79 (name VARCHAR, qual_1 VARCHAR) ### Question: Who got 59.578 for Qual 1? ### Answer: SELECT name FROM table_name_79 WHERE qual_1 = "59.578"
What team was Andrew Ranger in?
CREATE TABLE table_name_78 (team VARCHAR, name VARCHAR)
SELECT team FROM table_name_78 WHERE name = "andrew ranger"
### Context: CREATE TABLE table_name_78 (team VARCHAR, name VARCHAR) ### Question: What team was Andrew Ranger in? ### Answer: SELECT team FROM table_name_78 WHERE name = "andrew ranger"
What team has 59.372 for qual 1?
CREATE TABLE table_name_37 (team VARCHAR, qual_1 VARCHAR)
SELECT team FROM table_name_37 WHERE qual_1 = "59.372"
### Context: CREATE TABLE table_name_37 (team VARCHAR, qual_1 VARCHAR) ### Question: What team has 59.372 for qual 1? ### Answer: SELECT team FROM table_name_37 WHERE qual_1 = "59.372"
What did Alex Tagliani get for Qual 1?
CREATE TABLE table_name_93 (qual_1 VARCHAR, name VARCHAR)
SELECT qual_1 FROM table_name_93 WHERE name = "alex tagliani"
### Context: CREATE TABLE table_name_93 (qual_1 VARCHAR, name VARCHAR) ### Question: What did Alex Tagliani get for Qual 1? ### Answer: SELECT qual_1 FROM table_name_93 WHERE name = "alex tagliani"
What was the result of the game on November 7, 1999?
CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_9 WHERE date = "november 7, 1999"
### Context: CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR) ### Question: What was the result of the game on November 7, 1999? ### Answer: SELECT result FROM table_name_9 WHERE date = "november 7, 1999"
When was the game before week 15 with the result of bye?
CREATE TABLE table_name_26 (date VARCHAR, week VARCHAR, result VARCHAR)
SELECT date FROM table_name_26 WHERE week < 15 AND result = "bye"
### Context: CREATE TABLE table_name_26 (date VARCHAR, week VARCHAR, result VARCHAR) ### Question: When was the game before week 15 with the result of bye? ### Answer: SELECT date FROM table_name_26 WHERE week < 15 AND result = "bye"
Who is the writer of Wallace & Gromit: A Close Shave, a short film from before 2008?
CREATE TABLE table_name_15 (writer VARCHAR, title VARCHAR, year VARCHAR, notes VARCHAR)
SELECT writer FROM table_name_15 WHERE year < 2008 AND notes = "short film" AND title = "wallace & gromit: a close shave"
### Context: CREATE TABLE table_name_15 (writer VARCHAR, title VARCHAR, year VARCHAR, notes VARCHAR) ### Question: Who is the writer of Wallace & Gromit: A Close Shave, a short film from before 2008? ### Answer: SELECT writer FROM table_name_15 WHERE year < 2008 AND notes = "short film" AND title = "wallace & gromit: a close shave"
What notes did the creature comforts film have?
CREATE TABLE table_name_31 (notes VARCHAR, title VARCHAR)
SELECT notes FROM table_name_31 WHERE title = "creature comforts"
### Context: CREATE TABLE table_name_31 (notes VARCHAR, title VARCHAR) ### Question: What notes did the creature comforts film have? ### Answer: SELECT notes FROM table_name_31 WHERE title = "creature comforts"
Who is the director of Wallace & Gromit: The Curse of the Were-Rabbit?
CREATE TABLE table_name_99 (director VARCHAR, title VARCHAR)
SELECT director FROM table_name_99 WHERE title = "wallace & gromit: the curse of the were-rabbit"
### Context: CREATE TABLE table_name_99 (director VARCHAR, title VARCHAR) ### Question: Who is the director of Wallace & Gromit: The Curse of the Were-Rabbit? ### Answer: SELECT director FROM table_name_99 WHERE title = "wallace & gromit: the curse of the were-rabbit"
What is the earliest year of Wallace & Gromit: The Curse of the Were-Rabbit?
CREATE TABLE table_name_13 (year INTEGER, title VARCHAR)
SELECT MIN(year) FROM table_name_13 WHERE title = "wallace & gromit: the curse of the were-rabbit"
### Context: CREATE TABLE table_name_13 (year INTEGER, title VARCHAR) ### Question: What is the earliest year of Wallace & Gromit: The Curse of the Were-Rabbit? ### Answer: SELECT MIN(year) FROM table_name_13 WHERE title = "wallace & gromit: the curse of the were-rabbit"
what was the length of the game on may 19
CREATE TABLE table_name_10 (length VARCHAR, date VARCHAR)
SELECT length FROM table_name_10 WHERE date = "may 19"
### Context: CREATE TABLE table_name_10 (length VARCHAR, date VARCHAR) ### Question: what was the length of the game on may 19 ### Answer: SELECT length FROM table_name_10 WHERE date = "may 19"
March of 26 has what lowest game?
CREATE TABLE table_name_24 (game INTEGER, march VARCHAR)
SELECT MIN(game) FROM table_name_24 WHERE march = 26
### Context: CREATE TABLE table_name_24 (game INTEGER, march VARCHAR) ### Question: March of 26 has what lowest game? ### Answer: SELECT MIN(game) FROM table_name_24 WHERE march = 26
March of 29 involves what highest scoring game?
CREATE TABLE table_name_40 (game INTEGER, march VARCHAR)
SELECT MAX(game) FROM table_name_40 WHERE march = 29
### Context: CREATE TABLE table_name_40 (game INTEGER, march VARCHAR) ### Question: March of 29 involves what highest scoring game? ### Answer: SELECT MAX(game) FROM table_name_40 WHERE march = 29
Game larger than 76, and a March larger than 26 involves what score?
CREATE TABLE table_name_60 (score VARCHAR, game VARCHAR, march VARCHAR)
SELECT score FROM table_name_60 WHERE game > 76 AND march > 26
### Context: CREATE TABLE table_name_60 (score VARCHAR, game VARCHAR, march VARCHAR) ### Question: Game larger than 76, and a March larger than 26 involves what score? ### Answer: SELECT score FROM table_name_60 WHERE game > 76 AND march > 26
What was the time when the laps were smaller than 66 and the grid was 15?
CREATE TABLE table_name_62 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_62 WHERE laps < 66 AND grid = 15
### Context: CREATE TABLE table_name_62 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: What was the time when the laps were smaller than 66 and the grid was 15? ### Answer: SELECT time_retired FROM table_name_62 WHERE laps < 66 AND grid = 15
What was the grid for anthony davidson when the laps were less than 8?
CREATE TABLE table_name_86 (grid VARCHAR, driver VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_86 WHERE driver = "anthony davidson" AND laps < 8
### Context: CREATE TABLE table_name_86 (grid VARCHAR, driver VARCHAR, laps VARCHAR) ### Question: What was the grid for anthony davidson when the laps were less than 8? ### Answer: SELECT COUNT(grid) FROM table_name_86 WHERE driver = "anthony davidson" AND laps < 8
What team did carlos cardus drive for in 1983 when he got less than 21 points?
CREATE TABLE table_name_69 (team VARCHAR, points VARCHAR, year VARCHAR)
SELECT team FROM table_name_69 WHERE points < 21 AND year = 1983
### Context: CREATE TABLE table_name_69 (team VARCHAR, points VARCHAR, year VARCHAR) ### Question: What team did carlos cardus drive for in 1983 when he got less than 21 points? ### Answer: SELECT team FROM table_name_69 WHERE points < 21 AND year = 1983
What is the sum of the points when Carlos drove for repsol honda in 8th place?
CREATE TABLE table_name_93 (points INTEGER, team VARCHAR, rank VARCHAR)
SELECT SUM(points) FROM table_name_93 WHERE team = "repsol honda" AND rank = "8th"
### Context: CREATE TABLE table_name_93 (points INTEGER, team VARCHAR, rank VARCHAR) ### Question: What is the sum of the points when Carlos drove for repsol honda in 8th place? ### Answer: SELECT SUM(points) FROM table_name_93 WHERE team = "repsol honda" AND rank = "8th"
What is the average points won when Carlos had 0 wins?
CREATE TABLE table_name_5 (points INTEGER, wins INTEGER)
SELECT AVG(points) FROM table_name_5 WHERE wins < 0
### Context: CREATE TABLE table_name_5 (points INTEGER, wins INTEGER) ### Question: What is the average points won when Carlos had 0 wins? ### Answer: SELECT AVG(points) FROM table_name_5 WHERE wins < 0
What is the highest year that Carlos drove for repsol honda and had less than 4 wins and less than 162 points?
CREATE TABLE table_name_56 (year INTEGER, points VARCHAR, team VARCHAR, wins VARCHAR)
SELECT MAX(year) FROM table_name_56 WHERE team = "repsol honda" AND wins < 4 AND points < 162
### Context: CREATE TABLE table_name_56 (year INTEGER, points VARCHAR, team VARCHAR, wins VARCHAR) ### Question: What is the highest year that Carlos drove for repsol honda and had less than 4 wins and less than 162 points? ### Answer: SELECT MAX(year) FROM table_name_56 WHERE team = "repsol honda" AND wins < 4 AND points < 162
What is the total number of goals from 24 tries and 96 or greater points?
CREATE TABLE table_name_46 (goals INTEGER, tries VARCHAR, points VARCHAR)
SELECT SUM(goals) FROM table_name_46 WHERE tries = 24 AND points > 96
### Context: CREATE TABLE table_name_46 (goals INTEGER, tries VARCHAR, points VARCHAR) ### Question: What is the total number of goals from 24 tries and 96 or greater points? ### Answer: SELECT SUM(goals) FROM table_name_46 WHERE tries = 24 AND points > 96
What year has tries less than 24 and 0 points?
CREATE TABLE table_name_38 (year VARCHAR, tries VARCHAR, points VARCHAR)
SELECT year FROM table_name_38 WHERE tries < 24 AND points = 0
### Context: CREATE TABLE table_name_38 (year VARCHAR, tries VARCHAR, points VARCHAR) ### Question: What year has tries less than 24 and 0 points? ### Answer: SELECT year FROM table_name_38 WHERE tries < 24 AND points = 0
What Game has a Location of Philadelphia Spectrum and an Opponent of New York Knicks?
CREATE TABLE table_name_91 (game VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT game FROM table_name_91 WHERE location = "philadelphia spectrum" AND opponent = "new york knicks"
### Context: CREATE TABLE table_name_91 (game VARCHAR, location VARCHAR, opponent VARCHAR) ### Question: What Game has a Location of Philadelphia Spectrum and an Opponent of New York Knicks? ### Answer: SELECT game FROM table_name_91 WHERE location = "philadelphia spectrum" AND opponent = "new york knicks"
What Game has a Location of Philadelphia Spectrum and a Date of April 1?
CREATE TABLE table_name_80 (game VARCHAR, location VARCHAR, date VARCHAR)
SELECT game FROM table_name_80 WHERE location = "philadelphia spectrum" AND date = "april 1"
### Context: CREATE TABLE table_name_80 (game VARCHAR, location VARCHAR, date VARCHAR) ### Question: What Game has a Location of Philadelphia Spectrum and a Date of April 1? ### Answer: SELECT game FROM table_name_80 WHERE location = "philadelphia spectrum" AND date = "april 1"
What is the segment for Netflix episode S08E04?
CREATE TABLE table_name_94 (segment_a VARCHAR, netflix VARCHAR)
SELECT segment_a FROM table_name_94 WHERE netflix = "s08e04"
### Context: CREATE TABLE table_name_94 (segment_a VARCHAR, netflix VARCHAR) ### Question: What is the segment for Netflix episode S08E04? ### Answer: SELECT segment_a FROM table_name_94 WHERE netflix = "s08e04"
What is the Netflix episode for series episode 15-01?
CREATE TABLE table_name_64 (netflix VARCHAR, series_ep VARCHAR)
SELECT netflix FROM table_name_64 WHERE series_ep = "15-01"
### Context: CREATE TABLE table_name_64 (netflix VARCHAR, series_ep VARCHAR) ### Question: What is the Netflix episode for series episode 15-01? ### Answer: SELECT netflix FROM table_name_64 WHERE series_ep = "15-01"
What is the segment A for the episode with Children's Ride-on Cars for segment D?
CREATE TABLE table_name_10 (segment_a VARCHAR, segment_d VARCHAR)
SELECT segment_a FROM table_name_10 WHERE segment_d = "children's ride-on cars"
### Context: CREATE TABLE table_name_10 (segment_a VARCHAR, segment_d VARCHAR) ### Question: What is the segment A for the episode with Children's Ride-on Cars for segment D? ### Answer: SELECT segment_a FROM table_name_10 WHERE segment_d = "children's ride-on cars"
What is the earliest year with fewer than 5 wins and 89 points?
CREATE TABLE table_name_12 (year INTEGER, wins VARCHAR, points VARCHAR)
SELECT MIN(year) FROM table_name_12 WHERE wins < 5 AND points = 89
### Context: CREATE TABLE table_name_12 (year INTEGER, wins VARCHAR, points VARCHAR) ### Question: What is the earliest year with fewer than 5 wins and 89 points? ### Answer: SELECT MIN(year) FROM table_name_12 WHERE wins < 5 AND points = 89
When is the most recent year with more than 27 points and more than 5 wins?
CREATE TABLE table_name_69 (year INTEGER, points VARCHAR, wins VARCHAR)
SELECT MAX(year) FROM table_name_69 WHERE points > 27 AND wins > 5
### Context: CREATE TABLE table_name_69 (year INTEGER, points VARCHAR, wins VARCHAR) ### Question: When is the most recent year with more than 27 points and more than 5 wins? ### Answer: SELECT MAX(year) FROM table_name_69 WHERE points > 27 AND wins > 5
What are the sum of points in 1989 with 0 wins?
CREATE TABLE table_name_85 (points INTEGER, wins VARCHAR, year VARCHAR)
SELECT SUM(points) FROM table_name_85 WHERE wins = 0 AND year = 1989
### Context: CREATE TABLE table_name_85 (points INTEGER, wins VARCHAR, year VARCHAR) ### Question: What are the sum of points in 1989 with 0 wins? ### Answer: SELECT SUM(points) FROM table_name_85 WHERE wins = 0 AND year = 1989
Which class has fewer than 89 points and the Honda team later than 1987?
CREATE TABLE table_name_48 (class VARCHAR, year VARCHAR, points VARCHAR, team VARCHAR)
SELECT class FROM table_name_48 WHERE points < 89 AND team = "honda" AND year > 1987
### Context: CREATE TABLE table_name_48 (class VARCHAR, year VARCHAR, points VARCHAR, team VARCHAR) ### Question: Which class has fewer than 89 points and the Honda team later than 1987? ### Answer: SELECT class FROM table_name_48 WHERE points < 89 AND team = "honda" AND year > 1987
How many points are there later than 1992?
CREATE TABLE table_name_12 (points VARCHAR, year INTEGER)
SELECT COUNT(points) FROM table_name_12 WHERE year > 1992
### Context: CREATE TABLE table_name_12 (points VARCHAR, year INTEGER) ### Question: How many points are there later than 1992? ### Answer: SELECT COUNT(points) FROM table_name_12 WHERE year > 1992
Where was the event on June 10?
CREATE TABLE table_name_12 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_12 WHERE date = "june 10"
### Context: CREATE TABLE table_name_12 (location VARCHAR, date VARCHAR) ### Question: Where was the event on June 10? ### Answer: SELECT location FROM table_name_12 WHERE date = "june 10"
What event was in New Orleans, Louisiana, USA?
CREATE TABLE table_name_55 (event VARCHAR, location VARCHAR)
SELECT event FROM table_name_55 WHERE location = "new orleans, louisiana, usa"
### Context: CREATE TABLE table_name_55 (event VARCHAR, location VARCHAR) ### Question: What event was in New Orleans, Louisiana, USA? ### Answer: SELECT event FROM table_name_55 WHERE location = "new orleans, louisiana, usa"
On September 10 during Strikeforce: Heavyweight Grand Prix Semifinals, what was the PPV buyrate?
CREATE TABLE table_name_77 (ppv_buyrate VARCHAR, date VARCHAR, event VARCHAR)
SELECT ppv_buyrate FROM table_name_77 WHERE date = "september 10" AND event = "strikeforce: heavyweight grand prix semifinals"
### Context: CREATE TABLE table_name_77 (ppv_buyrate VARCHAR, date VARCHAR, event VARCHAR) ### Question: On September 10 during Strikeforce: Heavyweight Grand Prix Semifinals, what was the PPV buyrate? ### Answer: SELECT ppv_buyrate FROM table_name_77 WHERE date = "september 10" AND event = "strikeforce: heavyweight grand prix semifinals"
How many points are there on november 7?
CREATE TABLE table_name_94 (points INTEGER, november VARCHAR)
SELECT MAX(points) FROM table_name_94 WHERE november = 7
### Context: CREATE TABLE table_name_94 (points INTEGER, november VARCHAR) ### Question: How many points are there on november 7? ### Answer: SELECT MAX(points) FROM table_name_94 WHERE november = 7
What was the score in the game where the Blazers were the home team?
CREATE TABLE table_name_95 (score VARCHAR, home VARCHAR)
SELECT score FROM table_name_95 WHERE home = "blazers"
### Context: CREATE TABLE table_name_95 (score VARCHAR, home VARCHAR) ### Question: What was the score in the game where the Blazers were the home team? ### Answer: SELECT score FROM table_name_95 WHERE home = "blazers"
How many people attended the game that had the Clippers as visiting team?
CREATE TABLE table_name_47 (attendance VARCHAR, visitor VARCHAR)
SELECT attendance FROM table_name_47 WHERE visitor = "clippers"
### Context: CREATE TABLE table_name_47 (attendance VARCHAR, visitor VARCHAR) ### Question: How many people attended the game that had the Clippers as visiting team? ### Answer: SELECT attendance FROM table_name_47 WHERE visitor = "clippers"
Which team has a car # before 99, a Toyota, and is driven by Mike Skinner?
CREATE TABLE table_name_1 (team VARCHAR, driver VARCHAR, car__number VARCHAR, make VARCHAR)
SELECT team FROM table_name_1 WHERE car__number < 99 AND make = "toyota" AND driver = "mike skinner"
### Context: CREATE TABLE table_name_1 (team VARCHAR, driver VARCHAR, car__number VARCHAR, make VARCHAR) ### Question: Which team has a car # before 99, a Toyota, and is driven by Mike Skinner? ### Answer: SELECT team FROM table_name_1 WHERE car__number < 99 AND make = "toyota" AND driver = "mike skinner"
What is the lowest position for driver Kyle Busch?
CREATE TABLE table_name_94 (pos INTEGER, driver VARCHAR)
SELECT MIN(pos) FROM table_name_94 WHERE driver = "kyle busch"
### Context: CREATE TABLE table_name_94 (pos INTEGER, driver VARCHAR) ### Question: What is the lowest position for driver Kyle Busch? ### Answer: SELECT MIN(pos) FROM table_name_94 WHERE driver = "kyle busch"
Who is the team of the Chevrolet, and has a position less than 7, for car # 88?
CREATE TABLE table_name_90 (team VARCHAR, car__number VARCHAR, make VARCHAR, pos VARCHAR)
SELECT team FROM table_name_90 WHERE make = "chevrolet" AND pos < 7 AND car__number = 88
### Context: CREATE TABLE table_name_90 (team VARCHAR, car__number VARCHAR, make VARCHAR, pos VARCHAR) ### Question: Who is the team of the Chevrolet, and has a position less than 7, for car # 88? ### Answer: SELECT team FROM table_name_90 WHERE make = "chevrolet" AND pos < 7 AND car__number = 88
Which Film has a Result of nominated, and a Year of 2001?
CREATE TABLE table_name_67 (film VARCHAR, result VARCHAR, year VARCHAR)
SELECT film FROM table_name_67 WHERE result = "nominated" AND year = 2001
### Context: CREATE TABLE table_name_67 (film VARCHAR, result VARCHAR, year VARCHAR) ### Question: Which Film has a Result of nominated, and a Year of 2001? ### Answer: SELECT film FROM table_name_67 WHERE result = "nominated" AND year = 2001
Which Award has a Group of cΓ©sar awards, and a Result of nominated, and a Year larger than 2001, and a Film of 8 women (8 femmes)?
CREATE TABLE table_name_39 (award VARCHAR, film VARCHAR, year VARCHAR, group VARCHAR, result VARCHAR)
SELECT award FROM table_name_39 WHERE group = "cΓ©sar awards" AND result = "nominated" AND year > 2001 AND film = "8 women (8 femmes)"
### Context: CREATE TABLE table_name_39 (award VARCHAR, film VARCHAR, year VARCHAR, group VARCHAR, result VARCHAR) ### Question: Which Award has a Group of cΓ©sar awards, and a Result of nominated, and a Year larger than 2001, and a Film of 8 women (8 femmes)? ### Answer: SELECT award FROM table_name_39 WHERE group = "cΓ©sar awards" AND result = "nominated" AND year > 2001 AND film = "8 women (8 femmes)"
Which Year has a Group of cΓ©sar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)?
CREATE TABLE table_name_41 (year INTEGER, film VARCHAR, award VARCHAR, group VARCHAR, result VARCHAR)
SELECT AVG(year) FROM table_name_41 WHERE group = "cΓ©sar awards" AND result = "nominated" AND award = "best actress" AND film = "8 women (8 femmes)"
### Context: CREATE TABLE table_name_41 (year INTEGER, film VARCHAR, award VARCHAR, group VARCHAR, result VARCHAR) ### Question: Which Year has a Group of cΓ©sar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)? ### Answer: SELECT AVG(year) FROM table_name_41 WHERE group = "cΓ©sar awards" AND result = "nominated" AND award = "best actress" AND film = "8 women (8 femmes)"
Which Award has a Result of nominated, and a Year of 2003?
CREATE TABLE table_name_85 (award VARCHAR, result VARCHAR, year VARCHAR)
SELECT award FROM table_name_85 WHERE result = "nominated" AND year = 2003
### Context: CREATE TABLE table_name_85 (award VARCHAR, result VARCHAR, year VARCHAR) ### Question: Which Award has a Result of nominated, and a Year of 2003? ### Answer: SELECT award FROM table_name_85 WHERE result = "nominated" AND year = 2003
Which Result has a Year larger than 2003, and an Award of best supporting actress?
CREATE TABLE table_name_32 (result VARCHAR, year VARCHAR, award VARCHAR)
SELECT result FROM table_name_32 WHERE year > 2003 AND award = "best supporting actress"
### Context: CREATE TABLE table_name_32 (result VARCHAR, year VARCHAR, award VARCHAR) ### Question: Which Result has a Year larger than 2003, and an Award of best supporting actress? ### Answer: SELECT result FROM table_name_32 WHERE year > 2003 AND award = "best supporting actress"
Name the total number of valid poll with seats more than 4 and candidates more than 9
CREATE TABLE table_name_67 (valid_poll VARCHAR, seats VARCHAR, candidates VARCHAR)
SELECT COUNT(valid_poll) FROM table_name_67 WHERE seats > 4 AND candidates > 9
### Context: CREATE TABLE table_name_67 (valid_poll VARCHAR, seats VARCHAR, candidates VARCHAR) ### Question: Name the total number of valid poll with seats more than 4 and candidates more than 9 ### Answer: SELECT COUNT(valid_poll) FROM table_name_67 WHERE seats > 4 AND candidates > 9
Name the least valid poll for munster
CREATE TABLE table_name_50 (valid_poll INTEGER, constituency VARCHAR)
SELECT MIN(valid_poll) FROM table_name_50 WHERE constituency = "munster"
### Context: CREATE TABLE table_name_50 (valid_poll INTEGER, constituency VARCHAR) ### Question: Name the least valid poll for munster ### Answer: SELECT MIN(valid_poll) FROM table_name_50 WHERE constituency = "munster"
Name the average valid poll for seats less than 3
CREATE TABLE table_name_45 (valid_poll INTEGER, seats INTEGER)
SELECT AVG(valid_poll) FROM table_name_45 WHERE seats < 3
### Context: CREATE TABLE table_name_45 (valid_poll INTEGER, seats INTEGER) ### Question: Name the average valid poll for seats less than 3 ### Answer: SELECT AVG(valid_poll) FROM table_name_45 WHERE seats < 3
Which Label has a Region of canada?
CREATE TABLE table_name_12 (label VARCHAR, region VARCHAR)
SELECT label FROM table_name_12 WHERE region = "canada"
### Context: CREATE TABLE table_name_12 (label VARCHAR, region VARCHAR) ### Question: Which Label has a Region of canada? ### Answer: SELECT label FROM table_name_12 WHERE region = "canada"
Which Date has a Catalog of 887 195-2, and a Format of cd maxi?
CREATE TABLE table_name_63 (date VARCHAR, catalog VARCHAR, format VARCHAR)
SELECT date FROM table_name_63 WHERE catalog = "887 195-2" AND format = "cd maxi"
### Context: CREATE TABLE table_name_63 (date VARCHAR, catalog VARCHAR, format VARCHAR) ### Question: Which Date has a Catalog of 887 195-2, and a Format of cd maxi? ### Answer: SELECT date FROM table_name_63 WHERE catalog = "887 195-2" AND format = "cd maxi"
Which Date has a Region of france?
CREATE TABLE table_name_90 (date VARCHAR, region VARCHAR)
SELECT date FROM table_name_90 WHERE region = "france"
### Context: CREATE TABLE table_name_90 (date VARCHAR, region VARCHAR) ### Question: Which Date has a Region of france? ### Answer: SELECT date FROM table_name_90 WHERE region = "france"
Which Time has an Opponent of shamil abdurahimov?
CREATE TABLE table_name_39 (time VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_39 WHERE opponent = "shamil abdurahimov"
### Context: CREATE TABLE table_name_39 (time VARCHAR, opponent VARCHAR) ### Question: Which Time has an Opponent of shamil abdurahimov? ### Answer: SELECT time FROM table_name_39 WHERE opponent = "shamil abdurahimov"
Which Record has an Event of cage rage 23?
CREATE TABLE table_name_35 (record VARCHAR, event VARCHAR)
SELECT record FROM table_name_35 WHERE event = "cage rage 23"
### Context: CREATE TABLE table_name_35 (record VARCHAR, event VARCHAR) ### Question: Which Record has an Event of cage rage 23? ### Answer: SELECT record FROM table_name_35 WHERE event = "cage rage 23"
What was the average date with a record of 30-31-9 in a game over 70?
CREATE TABLE table_name_29 (date INTEGER, record VARCHAR, game VARCHAR)
SELECT AVG(date) FROM table_name_29 WHERE record = "30-31-9" AND game > 70
### Context: CREATE TABLE table_name_29 (date INTEGER, record VARCHAR, game VARCHAR) ### Question: What was the average date with a record of 30-31-9 in a game over 70? ### Answer: SELECT AVG(date) FROM table_name_29 WHERE record = "30-31-9" AND game > 70
What is the latest date at Los Angeles with a game less than 62?
CREATE TABLE table_name_88 (date INTEGER, location_attendance VARCHAR, game VARCHAR)
SELECT MAX(date) FROM table_name_88 WHERE location_attendance = "los angeles" AND game < 62
### Context: CREATE TABLE table_name_88 (date INTEGER, location_attendance VARCHAR, game VARCHAR) ### Question: What is the latest date at Los Angeles with a game less than 62? ### Answer: SELECT MAX(date) FROM table_name_88 WHERE location_attendance = "los angeles" AND game < 62
What is the latest date for a game over 69 with a St. Louis Blues opponent?
CREATE TABLE table_name_49 (date INTEGER, game VARCHAR, opponent VARCHAR)
SELECT MAX(date) FROM table_name_49 WHERE game > 69 AND opponent = "st. louis blues"
### Context: CREATE TABLE table_name_49 (date INTEGER, game VARCHAR, opponent VARCHAR) ### Question: What is the latest date for a game over 69 with a St. Louis Blues opponent? ### Answer: SELECT MAX(date) FROM table_name_49 WHERE game > 69 AND opponent = "st. louis blues"
What is the highest game with Oakland Seals opponent and a record of 27-30-6 on a date more than 7?
CREATE TABLE table_name_26 (game INTEGER, date VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT MAX(game) FROM table_name_26 WHERE opponent = "oakland seals" AND record = "27-30-6" AND date > 7
### Context: CREATE TABLE table_name_26 (game INTEGER, date VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: What is the highest game with Oakland Seals opponent and a record of 27-30-6 on a date more than 7? ### Answer: SELECT MAX(game) FROM table_name_26 WHERE opponent = "oakland seals" AND record = "27-30-6" AND date > 7
What is the total attendance for the date of october 5?
CREATE TABLE table_name_3 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_3 WHERE date = "october 5"
### Context: CREATE TABLE table_name_3 (attendance INTEGER, date VARCHAR) ### Question: What is the total attendance for the date of october 5? ### Answer: SELECT SUM(attendance) FROM table_name_3 WHERE date = "october 5"
What record has September 21 as the date?
CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_59 WHERE date = "september 21"
### Context: CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR) ### Question: What record has September 21 as the date? ### Answer: SELECT record FROM table_name_59 WHERE date = "september 21"
What was the score of the match on December 19, 2009?
CREATE TABLE table_name_63 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_63 WHERE date = "december 19, 2009"
### Context: CREATE TABLE table_name_63 (score VARCHAR, date VARCHAR) ### Question: What was the score of the match on December 19, 2009? ### Answer: SELECT score FROM table_name_63 WHERE date = "december 19, 2009"
What's the highest game against the New York Rangers with more than 55 points?
CREATE TABLE table_name_16 (game INTEGER, opponent VARCHAR, points VARCHAR)
SELECT MAX(game) FROM table_name_16 WHERE opponent = "new york rangers" AND points > 55
### Context: CREATE TABLE table_name_16 (game INTEGER, opponent VARCHAR, points VARCHAR) ### Question: What's the highest game against the New York Rangers with more than 55 points? ### Answer: SELECT MAX(game) FROM table_name_16 WHERE opponent = "new york rangers" AND points > 55
What's the record for a game past 44 against the Dallas Stars with more than 54 points?
CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR, points VARCHAR, game VARCHAR)
SELECT record FROM table_name_25 WHERE points > 54 AND game > 44 AND opponent = "dallas stars"
### Context: CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR, points VARCHAR, game VARCHAR) ### Question: What's the record for a game past 44 against the Dallas Stars with more than 54 points? ### Answer: SELECT record FROM table_name_25 WHERE points > 54 AND game > 44 AND opponent = "dallas stars"
What is the latest Fiscal Year with Revenues of $4.3 billion, and more than 85,335 employees?
CREATE TABLE table_name_95 (fiscal_year INTEGER, revenues VARCHAR, employees VARCHAR)
SELECT MAX(fiscal_year) FROM table_name_95 WHERE revenues = "$4.3 billion" AND employees > 85 OFFSET 335
### Context: CREATE TABLE table_name_95 (fiscal_year INTEGER, revenues VARCHAR, employees VARCHAR) ### Question: What is the latest Fiscal Year with Revenues of $4.3 billion, and more than 85,335 employees? ### Answer: SELECT MAX(fiscal_year) FROM table_name_95 WHERE revenues = "$4.3 billion" AND employees > 85 OFFSET 335
What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees?
CREATE TABLE table_name_55 (fiscal_year INTEGER, headquarters VARCHAR, employees VARCHAR)
SELECT AVG(fiscal_year) FROM table_name_55 WHERE headquarters = "noida" AND employees < 85 OFFSET 335
### Context: CREATE TABLE table_name_55 (fiscal_year INTEGER, headquarters VARCHAR, employees VARCHAR) ### Question: What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees? ### Answer: SELECT AVG(fiscal_year) FROM table_name_55 WHERE headquarters = "noida" AND employees < 85 OFFSET 335
What are the Points after 1991?
CREATE TABLE table_name_49 (points VARCHAR, year INTEGER)
SELECT COUNT(points) FROM table_name_49 WHERE year > 1991
### Context: CREATE TABLE table_name_49 (points VARCHAR, year INTEGER) ### Question: What are the Points after 1991? ### Answer: SELECT COUNT(points) FROM table_name_49 WHERE year > 1991
What Class has 36 Points?
CREATE TABLE table_name_68 (class VARCHAR, points VARCHAR)
SELECT class FROM table_name_68 WHERE points = 36
### Context: CREATE TABLE table_name_68 (class VARCHAR, points VARCHAR) ### Question: What Class has 36 Points? ### Answer: SELECT class FROM table_name_68 WHERE points = 36
What is the Class after 1986?
CREATE TABLE table_name_13 (class VARCHAR, year INTEGER)
SELECT class FROM table_name_13 WHERE year > 1986
### Context: CREATE TABLE table_name_13 (class VARCHAR, year INTEGER) ### Question: What is the Class after 1986? ### Answer: SELECT class FROM table_name_13 WHERE year > 1986
How many attendances had the Detroit Lions as opponents?
CREATE TABLE table_name_11 (attendance INTEGER, opponent VARCHAR)
SELECT SUM(attendance) FROM table_name_11 WHERE opponent = "detroit lions"
### Context: CREATE TABLE table_name_11 (attendance INTEGER, opponent VARCHAR) ### Question: How many attendances had the Detroit Lions as opponents? ### Answer: SELECT SUM(attendance) FROM table_name_11 WHERE opponent = "detroit lions"
Which nationality's distance was 500m before 2012, when the record was 1:37.071s?
CREATE TABLE table_name_26 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR)
SELECT nationality FROM table_name_26 WHERE distance = "500m" AND year < 2012 AND record = "1:37.071s"
### Context: CREATE TABLE table_name_26 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR) ### Question: Which nationality's distance was 500m before 2012, when the record was 1:37.071s? ### Answer: SELECT nationality FROM table_name_26 WHERE distance = "500m" AND year < 2012 AND record = "1:37.071s"
Which location's year was 2001 when the record was 3:52.983s?
CREATE TABLE table_name_33 (location VARCHAR, year VARCHAR, record VARCHAR)
SELECT location FROM table_name_33 WHERE year = 2001 AND record = "3:52.983s"
### Context: CREATE TABLE table_name_33 (location VARCHAR, year VARCHAR, record VARCHAR) ### Question: Which location's year was 2001 when the record was 3:52.983s? ### Answer: SELECT location FROM table_name_33 WHERE year = 2001 AND record = "3:52.983s"
Which nationality's distance was 200m and had a year more recent than 1994 when the record was 33.778s?
CREATE TABLE table_name_10 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR)
SELECT nationality FROM table_name_10 WHERE distance = "200m" AND year > 1994 AND record = "33.778s"
### Context: CREATE TABLE table_name_10 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR) ### Question: Which nationality's distance was 200m and had a year more recent than 1994 when the record was 33.778s? ### Answer: SELECT nationality FROM table_name_10 WHERE distance = "200m" AND year > 1994 AND record = "33.778s"
How many Total medals for the team with a Rank of 8, 1 Bronze and more than 1 Silver?
CREATE TABLE table_name_71 (total INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT MIN(total) FROM table_name_71 WHERE bronze = 1 AND rank = "8" AND silver > 1
### Context: CREATE TABLE table_name_71 (total INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR) ### Question: How many Total medals for the team with a Rank of 8, 1 Bronze and more than 1 Silver? ### Answer: SELECT MIN(total) FROM table_name_71 WHERE bronze = 1 AND rank = "8" AND silver > 1