question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What code has a C.R of 16.7:1?
CREATE TABLE table_name_97 (code VARCHAR, cr VARCHAR)
SELECT code FROM table_name_97 WHERE cr = "16.7:1"
### Context: CREATE TABLE table_name_97 (code VARCHAR, cr VARCHAR) ### Question: What code has a C.R of 16.7:1? ### Answer: SELECT code FROM table_name_97 WHERE cr = "16.7:1"
What Outcome happened on a Date that was 20 november 2011?
CREATE TABLE table_name_61 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_61 WHERE date = "20 november 2011"
### Context: CREATE TABLE table_name_61 (outcome VARCHAR, date VARCHAR) ### Question: What Outcome happened on a Date that was 20 november 2011? ### Answer: SELECT outcome FROM table_name_61 WHERE date = "20 november 2011"
Which Away team has a Score of 0–3?
CREATE TABLE table_name_4 (away_team VARCHAR, score VARCHAR)
SELECT away_team FROM table_name_4 WHERE score = "0–3"
### Context: CREATE TABLE table_name_4 (away_team VARCHAR, score VARCHAR) ### Question: Which Away team has a Score of 0–3? ### Answer: SELECT away_team FROM table_name_4 WHERE score = "0–3"
Which Attendance has a Tie number of 5?
CREATE TABLE table_name_63 (attendance VARCHAR, tie_no VARCHAR)
SELECT attendance FROM table_name_63 WHERE tie_no = "5"
### Context: CREATE TABLE table_name_63 (attendance VARCHAR, tie_no VARCHAR) ### Question: Which Attendance has a Tie number of 5? ### Answer: SELECT attendance FROM table_name_63 WHERE tie_no = "5"
Which Score has an Attendance of 23 january 1999, and a Tie # of 6?
CREATE TABLE table_name_74 (score VARCHAR, attendance VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_74 WHERE attendance = "23 january 1999" AND tie_no = "6"
### Context: CREATE TABLE table_name_74 (score VARCHAR, attendance VARCHAR, tie_no VARCHAR) ### Question: Which Score has an Attendance of 23 january 1999, and a Tie # of 6? ### Answer: SELECT score FROM table_name_74 WHERE attendance = "23 january 1999" AND tie_no = "6"
Which Tie #has an Attendance of 54,591?
CREATE TABLE table_name_16 (tie_no VARCHAR, attendance VARCHAR)
SELECT tie_no FROM table_name_16 WHERE attendance = "54,591"
### Context: CREATE TABLE table_name_16 (tie_no VARCHAR, attendance VARCHAR) ### Question: Which Tie #has an Attendance of 54,591? ### Answer: SELECT tie_no FROM table_name_16 WHERE attendance = "54,591"
Which Home team has a Score of 1–1, and an Away team of tottenham hotspur?
CREATE TABLE table_name_68 (home_team VARCHAR, score VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_68 WHERE score = "1–1" AND away_team = "tottenham hotspur"
### Context: CREATE TABLE table_name_68 (home_team VARCHAR, score VARCHAR, away_team VARCHAR) ### Question: Which Home team has a Score of 1–1, and an Away team of tottenham hotspur? ### Answer: SELECT home_team FROM table_name_68 WHERE score = "1–1" AND away_team = "tottenham hotspur"
Which Attendance has a Tie # of 15?
CREATE TABLE table_name_25 (attendance VARCHAR, tie_no VARCHAR)
SELECT attendance FROM table_name_25 WHERE tie_no = "15"
### Context: CREATE TABLE table_name_25 (attendance VARCHAR, tie_no VARCHAR) ### Question: Which Attendance has a Tie # of 15? ### Answer: SELECT attendance FROM table_name_25 WHERE tie_no = "15"
In what Year was the Position 11th?
CREATE TABLE table_name_80 (year VARCHAR, position VARCHAR)
SELECT COUNT(year) FROM table_name_80 WHERE position = "11th"
### Context: CREATE TABLE table_name_80 (year VARCHAR, position VARCHAR) ### Question: In what Year was the Position 11th? ### Answer: SELECT COUNT(year) FROM table_name_80 WHERE position = "11th"
What was the name of the Competition in Rome, Italy?
CREATE TABLE table_name_46 (competition VARCHAR, venue VARCHAR)
SELECT competition FROM table_name_46 WHERE venue = "rome, italy"
### Context: CREATE TABLE table_name_46 (competition VARCHAR, venue VARCHAR) ### Question: What was the name of the Competition in Rome, Italy? ### Answer: SELECT competition FROM table_name_46 WHERE venue = "rome, italy"
What Notes after 1983 have a Position of 18th?
CREATE TABLE table_name_64 (notes VARCHAR, year VARCHAR, position VARCHAR)
SELECT notes FROM table_name_64 WHERE year > 1983 AND position = "18th"
### Context: CREATE TABLE table_name_64 (notes VARCHAR, year VARCHAR, position VARCHAR) ### Question: What Notes after 1983 have a Position of 18th? ### Answer: SELECT notes FROM table_name_64 WHERE year > 1983 AND position = "18th"
After 1983, what was the Position in Seoul, South Korea?
CREATE TABLE table_name_92 (position VARCHAR, year VARCHAR, venue VARCHAR)
SELECT position FROM table_name_92 WHERE year > 1983 AND venue = "seoul, south korea"
### Context: CREATE TABLE table_name_92 (position VARCHAR, year VARCHAR, venue VARCHAR) ### Question: After 1983, what was the Position in Seoul, South Korea? ### Answer: SELECT position FROM table_name_92 WHERE year > 1983 AND venue = "seoul, south korea"
How many Gold medals for the country with a Rank of 1 and less than 2 Total medals?
CREATE TABLE table_name_57 (gold VARCHAR, rank VARCHAR, total VARCHAR)
SELECT COUNT(gold) FROM table_name_57 WHERE rank = "1" AND total < 2
### Context: CREATE TABLE table_name_57 (gold VARCHAR, rank VARCHAR, total VARCHAR) ### Question: How many Gold medals for the country with a Rank of 1 and less than 2 Total medals? ### Answer: SELECT COUNT(gold) FROM table_name_57 WHERE rank = "1" AND total < 2
How many Gold medals does the country with 2 Silver and more than 2 Bronze have?
CREATE TABLE table_name_11 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT COUNT(gold) FROM table_name_11 WHERE silver = 2 AND bronze > 2
### Context: CREATE TABLE table_name_11 (gold VARCHAR, silver VARCHAR, bronze VARCHAR) ### Question: How many Gold medals does the country with 2 Silver and more than 2 Bronze have? ### Answer: SELECT COUNT(gold) FROM table_name_11 WHERE silver = 2 AND bronze > 2
What is the Age of dorothy Peel as of 1 February 2014 ?
CREATE TABLE table_name_18 (age_as_of_1_february_2014 VARCHAR, name VARCHAR)
SELECT age_as_of_1_february_2014 FROM table_name_18 WHERE name = "dorothy peel"
### Context: CREATE TABLE table_name_18 (age_as_of_1_february_2014 VARCHAR, name VARCHAR) ### Question: What is the Age of dorothy Peel as of 1 February 2014 ? ### Answer: SELECT age_as_of_1_february_2014 FROM table_name_18 WHERE name = "dorothy peel"
Who is 111years, 358days Age as of 1 February 2014?
CREATE TABLE table_name_86 (name VARCHAR, age_as_of_1_february_2014 VARCHAR)
SELECT name FROM table_name_86 WHERE age_as_of_1_february_2014 = "111years, 358days"
### Context: CREATE TABLE table_name_86 (name VARCHAR, age_as_of_1_february_2014 VARCHAR) ### Question: Who is 111years, 358days Age as of 1 February 2014? ### Answer: SELECT name FROM table_name_86 WHERE age_as_of_1_february_2014 = "111years, 358days"
Which Capacity has a City of london, and a Stadium of queen's club?
CREATE TABLE table_name_85 (capacity INTEGER, city VARCHAR, stadium VARCHAR)
SELECT AVG(capacity) FROM table_name_85 WHERE city = "london" AND stadium = "queen's club"
### Context: CREATE TABLE table_name_85 (capacity INTEGER, city VARCHAR, stadium VARCHAR) ### Question: Which Capacity has a City of london, and a Stadium of queen's club? ### Answer: SELECT AVG(capacity) FROM table_name_85 WHERE city = "london" AND stadium = "queen's club"
Which Rank has a Name of thomas morgenstern, and Points larger than 368.9?
CREATE TABLE table_name_38 (rank INTEGER, name VARCHAR, points VARCHAR)
SELECT AVG(rank) FROM table_name_38 WHERE name = "thomas morgenstern" AND points > 368.9
### Context: CREATE TABLE table_name_38 (rank INTEGER, name VARCHAR, points VARCHAR) ### Question: Which Rank has a Name of thomas morgenstern, and Points larger than 368.9? ### Answer: SELECT AVG(rank) FROM table_name_38 WHERE name = "thomas morgenstern" AND points > 368.9
What is the lowest total for bronzes over 1, golds over 8, and fewer than 10 silvers?
CREATE TABLE table_name_64 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT MIN(total) FROM table_name_64 WHERE bronze > 1 AND gold > 8 AND silver < 10
### Context: CREATE TABLE table_name_64 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR) ### Question: What is the lowest total for bronzes over 1, golds over 8, and fewer than 10 silvers? ### Answer: SELECT MIN(total) FROM table_name_64 WHERE bronze > 1 AND gold > 8 AND silver < 10
What is the highest number of silvers for ranks over 7?
CREATE TABLE table_name_88 (silver INTEGER, rank INTEGER)
SELECT MAX(silver) FROM table_name_88 WHERE rank > 7
### Context: CREATE TABLE table_name_88 (silver INTEGER, rank INTEGER) ### Question: What is the highest number of silvers for ranks over 7? ### Answer: SELECT MAX(silver) FROM table_name_88 WHERE rank > 7
Who was the opponent when the record recorded was 64-78?
CREATE TABLE table_name_51 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_51 WHERE record = "64-78"
### Context: CREATE TABLE table_name_51 (opponent VARCHAR, record VARCHAR) ### Question: Who was the opponent when the record recorded was 64-78? ### Answer: SELECT opponent FROM table_name_51 WHERE record = "64-78"
When the record was 67-82, what was the final score recorded?
CREATE TABLE table_name_55 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_55 WHERE record = "67-82"
### Context: CREATE TABLE table_name_55 (score VARCHAR, record VARCHAR) ### Question: When the record was 67-82, what was the final score recorded? ### Answer: SELECT score FROM table_name_55 WHERE record = "67-82"
Who was the opponent for the game played with 54,136 people in attendance?
CREATE TABLE table_name_38 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_38 WHERE attendance = "54,136"
### Context: CREATE TABLE table_name_38 (opponent VARCHAR, attendance VARCHAR) ### Question: Who was the opponent for the game played with 54,136 people in attendance? ### Answer: SELECT opponent FROM table_name_38 WHERE attendance = "54,136"
Which position does bert coan play?
CREATE TABLE table_name_19 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_19 WHERE player = "bert coan"
### Context: CREATE TABLE table_name_19 (position VARCHAR, player VARCHAR) ### Question: Which position does bert coan play? ### Answer: SELECT position FROM table_name_19 WHERE player = "bert coan"
What is round 1's position?
CREATE TABLE table_name_13 (position VARCHAR, round VARCHAR)
SELECT position FROM table_name_13 WHERE round = 1
### Context: CREATE TABLE table_name_13 (position VARCHAR, round VARCHAR) ### Question: What is round 1's position? ### Answer: SELECT position FROM table_name_13 WHERE round = 1
Which Round is the highest one that has a Position of running back?
CREATE TABLE table_name_14 (round INTEGER, position VARCHAR)
SELECT MAX(round) FROM table_name_14 WHERE position = "running back"
### Context: CREATE TABLE table_name_14 (round INTEGER, position VARCHAR) ### Question: Which Round is the highest one that has a Position of running back? ### Answer: SELECT MAX(round) FROM table_name_14 WHERE position = "running back"
Which Position has a Pick smaller than 29, and a School/Club Team of arizona?
CREATE TABLE table_name_85 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_85 WHERE pick < 29 AND school_club_team = "arizona"
### Context: CREATE TABLE table_name_85 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR) ### Question: Which Position has a Pick smaller than 29, and a School/Club Team of arizona? ### Answer: SELECT position FROM table_name_85 WHERE pick < 29 AND school_club_team = "arizona"
Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43?
CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)
SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "alabama" AND pick > 43
### Context: CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, pick VARCHAR) ### Question: Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43? ### Answer: SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "alabama" AND pick > 43
what is the venue of belshina
CREATE TABLE table_name_94 (venue VARCHAR, team VARCHAR)
SELECT venue FROM table_name_94 WHERE team = "belshina"
### Context: CREATE TABLE table_name_94 (venue VARCHAR, team VARCHAR) ### Question: what is the venue of belshina ### Answer: SELECT venue FROM table_name_94 WHERE team = "belshina"
what is the venue of neman
CREATE TABLE table_name_23 (venue VARCHAR, team VARCHAR)
SELECT venue FROM table_name_23 WHERE team = "neman"
### Context: CREATE TABLE table_name_23 (venue VARCHAR, team VARCHAR) ### Question: what is the venue of neman ### Answer: SELECT venue FROM table_name_23 WHERE team = "neman"
what is the venue of neman
CREATE TABLE table_name_47 (venue VARCHAR, team VARCHAR)
SELECT venue FROM table_name_47 WHERE team = "neman"
### Context: CREATE TABLE table_name_47 (venue VARCHAR, team VARCHAR) ### Question: what is the venue of neman ### Answer: SELECT venue FROM table_name_47 WHERE team = "neman"
Name the total number of pick with round less than 6 and overall of 102
CREATE TABLE table_name_46 (pick__number VARCHAR, round VARCHAR, overall VARCHAR)
SELECT COUNT(pick__number) FROM table_name_46 WHERE round < 6 AND overall = 102
### Context: CREATE TABLE table_name_46 (pick__number VARCHAR, round VARCHAR, overall VARCHAR) ### Question: Name the total number of pick with round less than 6 and overall of 102 ### Answer: SELECT COUNT(pick__number) FROM table_name_46 WHERE round < 6 AND overall = 102
Which Outcome has a Score of 4–6 3–6?
CREATE TABLE table_name_30 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_30 WHERE score = "4–6 3–6"
### Context: CREATE TABLE table_name_30 (outcome VARCHAR, score VARCHAR) ### Question: Which Outcome has a Score of 4–6 3–6? ### Answer: SELECT outcome FROM table_name_30 WHERE score = "4–6 3–6"
Which Tournament has a Score of 3–6 6–4 4–6?
CREATE TABLE table_name_43 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_43 WHERE score = "3–6 6–4 4–6"
### Context: CREATE TABLE table_name_43 (tournament VARCHAR, score VARCHAR) ### Question: Which Tournament has a Score of 3–6 6–4 4–6? ### Answer: SELECT tournament FROM table_name_43 WHERE score = "3–6 6–4 4–6"
Which Date has a Score of 6–1 7–6 (8–6)?
CREATE TABLE table_name_11 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_11 WHERE score = "6–1 7–6 (8–6)"
### Context: CREATE TABLE table_name_11 (date VARCHAR, score VARCHAR) ### Question: Which Date has a Score of 6–1 7–6 (8–6)? ### Answer: SELECT date FROM table_name_11 WHERE score = "6–1 7–6 (8–6)"
Which Score has a Date of 26 september 2004?
CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_71 WHERE date = "26 september 2004"
### Context: CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR) ### Question: Which Score has a Date of 26 september 2004? ### Answer: SELECT score FROM table_name_71 WHERE date = "26 september 2004"
Which Outcome has a Score of 3–6 2–6?
CREATE TABLE table_name_90 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_90 WHERE score = "3–6 2–6"
### Context: CREATE TABLE table_name_90 (outcome VARCHAR, score VARCHAR) ### Question: Which Outcome has a Score of 3–6 2–6? ### Answer: SELECT outcome FROM table_name_90 WHERE score = "3–6 2–6"
Which Surface has an Opponent in the final of daniella dominikovic?
CREATE TABLE table_name_5 (surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT surface FROM table_name_5 WHERE opponent_in_the_final = "daniella dominikovic"
### Context: CREATE TABLE table_name_5 (surface VARCHAR, opponent_in_the_final VARCHAR) ### Question: Which Surface has an Opponent in the final of daniella dominikovic? ### Answer: SELECT surface FROM table_name_5 WHERE opponent_in_the_final = "daniella dominikovic"
What is the amount of time (sum) at 40Β° that it takes a 16 lb shell to reach a maximum of no more than 22,000 ft?
CREATE TABLE table_name_80 (time_to_ft__m__at_40 VARCHAR, shell__lb_ VARCHAR, max_height__ft_ VARCHAR)
SELECT COUNT(time_to_ft__m__at_40) AS Β°__seconds_ FROM table_name_80 WHERE shell__lb_ = 16 AND max_height__ft_ < 22 OFFSET 000
### Context: CREATE TABLE table_name_80 (time_to_ft__m__at_40 VARCHAR, shell__lb_ VARCHAR, max_height__ft_ VARCHAR) ### Question: What is the amount of time (sum) at 40Β° that it takes a 16 lb shell to reach a maximum of no more than 22,000 ft? ### Answer: SELECT COUNT(time_to_ft__m__at_40) AS Β°__seconds_ FROM table_name_80 WHERE shell__lb_ = 16 AND max_height__ft_ < 22 OFFSET 000
What is the average maximum height of a shell that travels for more than 16.3 seconds at 55Β° and has a maximum velocity of 2200 ft/s?
CREATE TABLE table_name_19 (max_height__ft_ INTEGER, time_to_ft__m__at_55Β°__seconds_ VARCHAR, m_v_ft_s VARCHAR)
SELECT AVG(max_height__ft_) FROM table_name_19 WHERE time_to_ft__m__at_55Β°__seconds_ > 16.3 AND m_v_ft_s = 2200
### Context: CREATE TABLE table_name_19 (max_height__ft_ INTEGER, time_to_ft__m__at_55Β°__seconds_ VARCHAR, m_v_ft_s VARCHAR) ### Question: What is the average maximum height of a shell that travels for more than 16.3 seconds at 55Β° and has a maximum velocity of 2200 ft/s? ### Answer: SELECT AVG(max_height__ft_) FROM table_name_19 WHERE time_to_ft__m__at_55Β°__seconds_ > 16.3 AND m_v_ft_s = 2200
What is the maximum amount of time a shell travels at 55Β° when it traveled less than 9.6 seconds at 40Β°?
CREATE TABLE table_name_47 (time_to_ft__m__at_55 INTEGER, time_to_ft__m__at_40Β°__seconds_ INTEGER)
SELECT MAX(time_to_ft__m__at_55) AS Β°__seconds_ FROM table_name_47 WHERE time_to_ft__m__at_40Β°__seconds_ < 9.6
### Context: CREATE TABLE table_name_47 (time_to_ft__m__at_55 INTEGER, time_to_ft__m__at_40Β°__seconds_ INTEGER) ### Question: What is the maximum amount of time a shell travels at 55Β° when it traveled less than 9.6 seconds at 40Β°? ### Answer: SELECT MAX(time_to_ft__m__at_55) AS Β°__seconds_ FROM table_name_47 WHERE time_to_ft__m__at_40Β°__seconds_ < 9.6
What is the weight of the shell that reached its maximum height at 40Β° in 12.6 seconds?
CREATE TABLE table_name_6 (shell__lb_ VARCHAR, time_to_ft__m__at_40Β°__seconds_ VARCHAR)
SELECT shell__lb_ FROM table_name_6 WHERE time_to_ft__m__at_40Β°__seconds_ = 12.6
### Context: CREATE TABLE table_name_6 (shell__lb_ VARCHAR, time_to_ft__m__at_40Β°__seconds_ VARCHAR) ### Question: What is the weight of the shell that reached its maximum height at 40Β° in 12.6 seconds? ### Answer: SELECT shell__lb_ FROM table_name_6 WHERE time_to_ft__m__at_40Β°__seconds_ = 12.6
What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25Β° in 10.1 seconds?
CREATE TABLE table_name_24 (max_height__ft_ INTEGER, time_to_ft__m__at_25Β°__seconds_ VARCHAR, shell__lb_ VARCHAR)
SELECT AVG(max_height__ft_) FROM table_name_24 WHERE time_to_ft__m__at_25Β°__seconds_ = "10.1" AND shell__lb_ < 12.5
### Context: CREATE TABLE table_name_24 (max_height__ft_ INTEGER, time_to_ft__m__at_25Β°__seconds_ VARCHAR, shell__lb_ VARCHAR) ### Question: What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25Β° in 10.1 seconds? ### Answer: SELECT AVG(max_height__ft_) FROM table_name_24 WHERE time_to_ft__m__at_25Β°__seconds_ = "10.1" AND shell__lb_ < 12.5
What is the highest attendance for the game that was before week 6 on October 22, 1967?
CREATE TABLE table_name_74 (attendance INTEGER, date VARCHAR, week VARCHAR)
SELECT MAX(attendance) FROM table_name_74 WHERE date = "october 22, 1967" AND week < 6
### Context: CREATE TABLE table_name_74 (attendance INTEGER, date VARCHAR, week VARCHAR) ### Question: What is the highest attendance for the game that was before week 6 on October 22, 1967? ### Answer: SELECT MAX(attendance) FROM table_name_74 WHERE date = "october 22, 1967" AND week < 6
What is the state having a contestant with a talent of classical piano and a hometown from Lancaster, NY?
CREATE TABLE table_name_63 (state VARCHAR, talent VARCHAR, hometown VARCHAR)
SELECT state FROM table_name_63 WHERE talent = "classical piano" AND hometown = "lancaster, ny"
### Context: CREATE TABLE table_name_63 (state VARCHAR, talent VARCHAR, hometown VARCHAR) ### Question: What is the state having a contestant with a talent of classical piano and a hometown from Lancaster, NY? ### Answer: SELECT state FROM table_name_63 WHERE talent = "classical piano" AND hometown = "lancaster, ny"
Whose talent was ballet en pointe?
CREATE TABLE table_name_56 (name VARCHAR, talent VARCHAR)
SELECT name FROM table_name_56 WHERE talent = "ballet en pointe"
### Context: CREATE TABLE table_name_56 (name VARCHAR, talent VARCHAR) ### Question: Whose talent was ballet en pointe? ### Answer: SELECT name FROM table_name_56 WHERE talent = "ballet en pointe"
What is the state represented by the contestant from Mesa, AZ?
CREATE TABLE table_name_43 (state VARCHAR, hometown VARCHAR)
SELECT state FROM table_name_43 WHERE hometown = "mesa, az"
### Context: CREATE TABLE table_name_43 (state VARCHAR, hometown VARCHAR) ### Question: What is the state represented by the contestant from Mesa, AZ? ### Answer: SELECT state FROM table_name_43 WHERE hometown = "mesa, az"
What is the talent of the contestant from Lexington, SC?
CREATE TABLE table_name_82 (talent VARCHAR, hometown VARCHAR)
SELECT talent FROM table_name_82 WHERE hometown = "lexington, sc"
### Context: CREATE TABLE table_name_82 (talent VARCHAR, hometown VARCHAR) ### Question: What is the talent of the contestant from Lexington, SC? ### Answer: SELECT talent FROM table_name_82 WHERE hometown = "lexington, sc"
What is the age of the contestant from Reno, NV?
CREATE TABLE table_name_55 (age_1 VARCHAR, hometown VARCHAR)
SELECT age_1 FROM table_name_55 WHERE hometown = "reno, nv"
### Context: CREATE TABLE table_name_55 (age_1 VARCHAR, hometown VARCHAR) ### Question: What is the age of the contestant from Reno, NV? ### Answer: SELECT age_1 FROM table_name_55 WHERE hometown = "reno, nv"
Which writer wrote episode 18-09 (652)?
CREATE TABLE table_name_29 (writer_s_ VARCHAR, episode VARCHAR)
SELECT writer_s_ FROM table_name_29 WHERE episode = "18-09 (652)"
### Context: CREATE TABLE table_name_29 (writer_s_ VARCHAR, episode VARCHAR) ### Question: Which writer wrote episode 18-09 (652)? ### Answer: SELECT writer_s_ FROM table_name_29 WHERE episode = "18-09 (652)"
What episode was written by jonathan lewis?
CREATE TABLE table_name_97 (episode VARCHAR, writer_s_ VARCHAR)
SELECT episode FROM table_name_97 WHERE writer_s_ = "jonathan lewis"
### Context: CREATE TABLE table_name_97 (episode VARCHAR, writer_s_ VARCHAR) ### Question: What episode was written by jonathan lewis? ### Answer: SELECT episode FROM table_name_97 WHERE writer_s_ = "jonathan lewis"
What position does Maryland have a player for Round 3?
CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR, round VARCHAR)
SELECT position FROM table_name_81 WHERE school_club_team = "maryland" AND round = 3
### Context: CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR, round VARCHAR) ### Question: What position does Maryland have a player for Round 3? ### Answer: SELECT position FROM table_name_81 WHERE school_club_team = "maryland" AND round = 3
How many picks are there for defensive back for rounds larger than 11?
CREATE TABLE table_name_23 (pick VARCHAR, position VARCHAR, round VARCHAR)
SELECT COUNT(pick) FROM table_name_23 WHERE position = "defensive back" AND round > 11
### Context: CREATE TABLE table_name_23 (pick VARCHAR, position VARCHAR, round VARCHAR) ### Question: How many picks are there for defensive back for rounds larger than 11? ### Answer: SELECT COUNT(pick) FROM table_name_23 WHERE position = "defensive back" AND round > 11
What is the highest game that has april 21 as the date?
CREATE TABLE table_name_64 (game INTEGER, date VARCHAR)
SELECT MAX(game) FROM table_name_64 WHERE date = "april 21"
### Context: CREATE TABLE table_name_64 (game INTEGER, date VARCHAR) ### Question: What is the highest game that has april 21 as the date? ### Answer: SELECT MAX(game) FROM table_name_64 WHERE date = "april 21"
What score has a game less than 4, and april 19 as the date?
CREATE TABLE table_name_2 (score VARCHAR, game VARCHAR, date VARCHAR)
SELECT score FROM table_name_2 WHERE game < 4 AND date = "april 19"
### Context: CREATE TABLE table_name_2 (score VARCHAR, game VARCHAR, date VARCHAR) ### Question: What score has a game less than 4, and april 19 as the date? ### Answer: SELECT score FROM table_name_2 WHERE game < 4 AND date = "april 19"
What opponent has a game less than 6, and april 17 as the date?
CREATE TABLE table_name_4 (opponent VARCHAR, game VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_4 WHERE game < 6 AND date = "april 17"
### Context: CREATE TABLE table_name_4 (opponent VARCHAR, game VARCHAR, date VARCHAR) ### Question: What opponent has a game less than 6, and april 17 as the date? ### Answer: SELECT opponent FROM table_name_4 WHERE game < 6 AND date = "april 17"
What is the home team that played Derby County as the away team?
CREATE TABLE table_name_18 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_18 WHERE away_team = "derby county"
### Context: CREATE TABLE table_name_18 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the home team that played Derby County as the away team? ### Answer: SELECT home_team FROM table_name_18 WHERE away_team = "derby county"
Which home team is ranked no. 7 by tie no.?
CREATE TABLE table_name_87 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_87 WHERE tie_no = "7"
### Context: CREATE TABLE table_name_87 (home_team VARCHAR, tie_no VARCHAR) ### Question: Which home team is ranked no. 7 by tie no.? ### Answer: SELECT home_team FROM table_name_87 WHERE tie_no = "7"
What is the score for the game in which Manchester United was the home team?
CREATE TABLE table_name_85 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_85 WHERE home_team = "manchester united"
### Context: CREATE TABLE table_name_85 (score VARCHAR, home_team VARCHAR) ### Question: What is the score for the game in which Manchester United was the home team? ### Answer: SELECT score FROM table_name_85 WHERE home_team = "manchester united"
How many golds does the nation having a rank of 8, fewer than 5 bronzes and more than 1 silver have?
CREATE TABLE table_name_62 (gold VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT COUNT(gold) FROM table_name_62 WHERE bronze < 5 AND silver > 1 AND rank > 8
### Context: CREATE TABLE table_name_62 (gold VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: How many golds does the nation having a rank of 8, fewer than 5 bronzes and more than 1 silver have? ### Answer: SELECT COUNT(gold) FROM table_name_62 WHERE bronze < 5 AND silver > 1 AND rank > 8
What nation was the film from that was in english and had a Literary tradition of canadian literature?
CREATE TABLE table_name_99 (country VARCHAR, language_s_ VARCHAR, literary_tradition VARCHAR)
SELECT country FROM table_name_99 WHERE language_s_ = "english" AND literary_tradition = "canadian literature"
### Context: CREATE TABLE table_name_99 (country VARCHAR, language_s_ VARCHAR, literary_tradition VARCHAR) ### Question: What nation was the film from that was in english and had a Literary tradition of canadian literature? ### Answer: SELECT country FROM table_name_99 WHERE language_s_ = "english" AND literary_tradition = "canadian literature"
What is the literary traidtion for the film in english in 2011?
CREATE TABLE table_name_74 (literary_tradition VARCHAR, language_s_ VARCHAR, year VARCHAR)
SELECT literary_tradition FROM table_name_74 WHERE language_s_ = "english" AND year = 2011
### Context: CREATE TABLE table_name_74 (literary_tradition VARCHAR, language_s_ VARCHAR, year VARCHAR) ### Question: What is the literary traidtion for the film in english in 2011? ### Answer: SELECT literary_tradition FROM table_name_74 WHERE language_s_ = "english" AND year = 2011
What country was the film made in that was made after 2011?
CREATE TABLE table_name_10 (country VARCHAR, year INTEGER)
SELECT country FROM table_name_10 WHERE year > 2011
### Context: CREATE TABLE table_name_10 (country VARCHAR, year INTEGER) ### Question: What country was the film made in that was made after 2011? ### Answer: SELECT country FROM table_name_10 WHERE year > 2011
Which team has 48 rebounds?
CREATE TABLE table_name_62 (team VARCHAR, rebounds VARCHAR)
SELECT team FROM table_name_62 WHERE rebounds = 48
### Context: CREATE TABLE table_name_62 (team VARCHAR, rebounds VARCHAR) ### Question: Which team has 48 rebounds? ### Answer: SELECT team FROM table_name_62 WHERE rebounds = 48
What's the lowest amount of 12 games and less than 48 rebounds?
CREATE TABLE table_name_1 (rank INTEGER, games VARCHAR, rebounds VARCHAR)
SELECT MIN(rank) FROM table_name_1 WHERE games = 12 AND rebounds < 48
### Context: CREATE TABLE table_name_1 (rank INTEGER, games VARCHAR, rebounds VARCHAR) ### Question: What's the lowest amount of 12 games and less than 48 rebounds? ### Answer: SELECT MIN(rank) FROM table_name_1 WHERE games = 12 AND rebounds < 48
How many rebounds does Fedor likholitov have with a rank greater than 8?
CREATE TABLE table_name_21 (rebounds INTEGER, name VARCHAR, rank VARCHAR)
SELECT SUM(rebounds) FROM table_name_21 WHERE name = "fedor likholitov" AND rank > 8
### Context: CREATE TABLE table_name_21 (rebounds INTEGER, name VARCHAR, rank VARCHAR) ### Question: How many rebounds does Fedor likholitov have with a rank greater than 8? ### Answer: SELECT SUM(rebounds) FROM table_name_21 WHERE name = "fedor likholitov" AND rank > 8
Which game has more than 112 rebounds and a rank greater than 3?
CREATE TABLE table_name_76 (games INTEGER, rank VARCHAR, rebounds VARCHAR)
SELECT MAX(games) FROM table_name_76 WHERE rank > 3 AND rebounds = 112
### Context: CREATE TABLE table_name_76 (games INTEGER, rank VARCHAR, rebounds VARCHAR) ### Question: Which game has more than 112 rebounds and a rank greater than 3? ### Answer: SELECT MAX(games) FROM table_name_76 WHERE rank > 3 AND rebounds = 112
What was the score in a place of t5 in the United States?
CREATE TABLE table_name_25 (score VARCHAR, place VARCHAR, nation VARCHAR)
SELECT score FROM table_name_25 WHERE place = "t5" AND nation = "united states"
### Context: CREATE TABLE table_name_25 (score VARCHAR, place VARCHAR, nation VARCHAR) ### Question: What was the score in a place of t5 in the United States? ### Answer: SELECT score FROM table_name_25 WHERE place = "t5" AND nation = "united states"
What was the score for a match where Sophie Gustafson played?
CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_44 WHERE player = "sophie gustafson"
### Context: CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR) ### Question: What was the score for a match where Sophie Gustafson played? ### Answer: SELECT score FROM table_name_44 WHERE player = "sophie gustafson"
with games more than 22 what is the rebound total?
CREATE TABLE table_name_12 (rebounds INTEGER, games INTEGER)
SELECT SUM(rebounds) FROM table_name_12 WHERE games > 22
### Context: CREATE TABLE table_name_12 (rebounds INTEGER, games INTEGER) ### Question: with games more than 22 what is the rebound total? ### Answer: SELECT SUM(rebounds) FROM table_name_12 WHERE games > 22
What is the location of the b.c. open?
CREATE TABLE table_name_81 (location VARCHAR, tournament VARCHAR)
SELECT location FROM table_name_81 WHERE tournament = "b.c. open"
### Context: CREATE TABLE table_name_81 (location VARCHAR, tournament VARCHAR) ### Question: What is the location of the b.c. open? ### Answer: SELECT location FROM table_name_81 WHERE tournament = "b.c. open"
What is the location of the tallahassee open, with a Score of 269 (–19)?
CREATE TABLE table_name_83 (location VARCHAR, score VARCHAR, tournament VARCHAR)
SELECT location FROM table_name_83 WHERE score = "269 (–19)" AND tournament = "tallahassee open"
### Context: CREATE TABLE table_name_83 (location VARCHAR, score VARCHAR, tournament VARCHAR) ### Question: What is the location of the tallahassee open, with a Score of 269 (–19)? ### Answer: SELECT location FROM table_name_83 WHERE score = "269 (–19)" AND tournament = "tallahassee open"
What date did Lanny Wadkins (6) win?
CREATE TABLE table_name_12 (date VARCHAR, winner VARCHAR)
SELECT date FROM table_name_12 WHERE winner = "lanny wadkins (6)"
### Context: CREATE TABLE table_name_12 (date VARCHAR, winner VARCHAR) ### Question: What date did Lanny Wadkins (6) win? ### Answer: SELECT date FROM table_name_12 WHERE winner = "lanny wadkins (6)"
What is the Location for the buick-goodwrench open?
CREATE TABLE table_name_40 (location VARCHAR, tournament VARCHAR)
SELECT location FROM table_name_40 WHERE tournament = "buick-goodwrench open"
### Context: CREATE TABLE table_name_40 (location VARCHAR, tournament VARCHAR) ### Question: What is the Location for the buick-goodwrench open? ### Answer: SELECT location FROM table_name_40 WHERE tournament = "buick-goodwrench open"
What is the Netflix episode that has a series episode of 6-02?
CREATE TABLE table_name_98 (netflix VARCHAR, series_ep VARCHAR)
SELECT netflix FROM table_name_98 WHERE series_ep = "6-02"
### Context: CREATE TABLE table_name_98 (netflix VARCHAR, series_ep VARCHAR) ### Question: What is the Netflix episode that has a series episode of 6-02? ### Answer: SELECT netflix FROM table_name_98 WHERE series_ep = "6-02"
Which segment A item that has a Segment D of wigs?
CREATE TABLE table_name_80 (segment_a VARCHAR, segment_d VARCHAR)
SELECT segment_a FROM table_name_80 WHERE segment_d = "wigs"
### Context: CREATE TABLE table_name_80 (segment_a VARCHAR, segment_d VARCHAR) ### Question: Which segment A item that has a Segment D of wigs? ### Answer: SELECT segment_a FROM table_name_80 WHERE segment_d = "wigs"
Which series episode has a Netflix episode of S03E16?
CREATE TABLE table_name_55 (series_ep VARCHAR, netflix VARCHAR)
SELECT series_ep FROM table_name_55 WHERE netflix = "s03e16"
### Context: CREATE TABLE table_name_55 (series_ep VARCHAR, netflix VARCHAR) ### Question: Which series episode has a Netflix episode of S03E16? ### Answer: SELECT series_ep FROM table_name_55 WHERE netflix = "s03e16"
Which Netflix episode has an overall episode number under 69 and a Segment D of S Trombone?
CREATE TABLE table_name_92 (netflix VARCHAR, episode VARCHAR, segment_d VARCHAR)
SELECT netflix FROM table_name_92 WHERE episode < 69 AND segment_d = "s trombone"
### Context: CREATE TABLE table_name_92 (netflix VARCHAR, episode VARCHAR, segment_d VARCHAR) ### Question: Which Netflix episode has an overall episode number under 69 and a Segment D of S Trombone? ### Answer: SELECT netflix FROM table_name_92 WHERE episode < 69 AND segment_d = "s trombone"
Which Species Specific has a Comparative of no, and an Intra-molecular structure of no, and a Link of sourcecode?
CREATE TABLE table_name_29 (species_specific VARCHAR, link VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR)
SELECT species_specific FROM table_name_29 WHERE comparative = "no" AND intra_molecular_structure = "no" AND link = "sourcecode"
### Context: CREATE TABLE table_name_29 (species_specific VARCHAR, link VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR) ### Question: Which Species Specific has a Comparative of no, and an Intra-molecular structure of no, and a Link of sourcecode? ### Answer: SELECT species_specific FROM table_name_29 WHERE comparative = "no" AND intra_molecular_structure = "no" AND link = "sourcecode"
Which Intra-molecular structure has a Comparative of no, and a Name of mitarget?
CREATE TABLE table_name_76 (intra_molecular_structure VARCHAR, comparative VARCHAR, name VARCHAR)
SELECT intra_molecular_structure FROM table_name_76 WHERE comparative = "no" AND name = "mitarget"
### Context: CREATE TABLE table_name_76 (intra_molecular_structure VARCHAR, comparative VARCHAR, name VARCHAR) ### Question: Which Intra-molecular structure has a Comparative of no, and a Name of mitarget? ### Answer: SELECT intra_molecular_structure FROM table_name_76 WHERE comparative = "no" AND name = "mitarget"
Which Comparative has a Name of pictar?
CREATE TABLE table_name_71 (comparative VARCHAR, name VARCHAR)
SELECT comparative FROM table_name_71 WHERE name = "pictar"
### Context: CREATE TABLE table_name_71 (comparative VARCHAR, name VARCHAR) ### Question: Which Comparative has a Name of pictar? ### Answer: SELECT comparative FROM table_name_71 WHERE name = "pictar"
Which Name has an Intra-molecular structure of no, and a Link of webserver, and a Comparative of no?
CREATE TABLE table_name_63 (name VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR, link VARCHAR)
SELECT name FROM table_name_63 WHERE intra_molecular_structure = "no" AND link = "webserver" AND comparative = "no"
### Context: CREATE TABLE table_name_63 (name VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR, link VARCHAR) ### Question: Which Name has an Intra-molecular structure of no, and a Link of webserver, and a Comparative of no? ### Answer: SELECT name FROM table_name_63 WHERE intra_molecular_structure = "no" AND link = "webserver" AND comparative = "no"
Which Comparative has a Link of sourcecode webserver?
CREATE TABLE table_name_43 (comparative VARCHAR, link VARCHAR)
SELECT comparative FROM table_name_43 WHERE link = "sourcecode webserver"
### Context: CREATE TABLE table_name_43 (comparative VARCHAR, link VARCHAR) ### Question: Which Comparative has a Link of sourcecode webserver? ### Answer: SELECT comparative FROM table_name_43 WHERE link = "sourcecode webserver"
Which Species Specific has a Link of server/sourcecode?
CREATE TABLE table_name_53 (species_specific VARCHAR, link VARCHAR)
SELECT species_specific FROM table_name_53 WHERE link = "server/sourcecode"
### Context: CREATE TABLE table_name_53 (species_specific VARCHAR, link VARCHAR) ### Question: Which Species Specific has a Link of server/sourcecode? ### Answer: SELECT species_specific FROM table_name_53 WHERE link = "server/sourcecode"
What is the 1st leg for Instituto?
CREATE TABLE table_name_45 (home__2nd_leg_ VARCHAR)
SELECT 1 AS st_leg FROM table_name_45 WHERE home__2nd_leg_ = "instituto"
### Context: CREATE TABLE table_name_45 (home__2nd_leg_ VARCHAR) ### Question: What is the 1st leg for Instituto? ### Answer: SELECT 1 AS st_leg FROM table_name_45 WHERE home__2nd_leg_ = "instituto"
What is the home of aggregate's 3-4?
CREATE TABLE table_name_87 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)
SELECT home__2nd_leg_ FROM table_name_87 WHERE aggregate = "3-4"
### Context: CREATE TABLE table_name_87 (home__2nd_leg_ VARCHAR, aggregate VARCHAR) ### Question: What is the home of aggregate's 3-4? ### Answer: SELECT home__2nd_leg_ FROM table_name_87 WHERE aggregate = "3-4"
What round did the fight against Sofia Bagherdai go to?
CREATE TABLE table_name_74 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_74 WHERE opponent = "sofia bagherdai"
### Context: CREATE TABLE table_name_74 (round VARCHAR, opponent VARCHAR) ### Question: What round did the fight against Sofia Bagherdai go to? ### Answer: SELECT round FROM table_name_74 WHERE opponent = "sofia bagherdai"
What was the method of fight completion for the Mars: Attack 1 event?
CREATE TABLE table_name_4 (method VARCHAR, event VARCHAR)
SELECT method FROM table_name_4 WHERE event = "mars: attack 1"
### Context: CREATE TABLE table_name_4 (method VARCHAR, event VARCHAR) ### Question: What was the method of fight completion for the Mars: Attack 1 event? ### Answer: SELECT method FROM table_name_4 WHERE event = "mars: attack 1"
what had a score of 70-71-68-72=281?
CREATE TABLE table_name_88 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_88 WHERE score = 70 - 71 - 68 - 72 = 281
### Context: CREATE TABLE table_name_88 (country VARCHAR, score VARCHAR) ### Question: what had a score of 70-71-68-72=281? ### Answer: SELECT country FROM table_name_88 WHERE score = 70 - 71 - 68 - 72 = 281
what had a score like roberto devicenzo
CREATE TABLE table_name_97 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_97 WHERE player = "roberto devicenzo"
### Context: CREATE TABLE table_name_97 (score VARCHAR, player VARCHAR) ### Question: what had a score like roberto devicenzo ### Answer: SELECT score FROM table_name_97 WHERE player = "roberto devicenzo"
What was the total number who attended during week 11?
CREATE TABLE table_name_98 (attendance VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_98 WHERE week = 11
### Context: CREATE TABLE table_name_98 (attendance VARCHAR, week VARCHAR) ### Question: What was the total number who attended during week 11? ### Answer: SELECT COUNT(attendance) FROM table_name_98 WHERE week = 11
What was the total number of weeks with a result of l 31-21?
CREATE TABLE table_name_33 (week VARCHAR, result VARCHAR)
SELECT COUNT(week) FROM table_name_33 WHERE result = "l 31-21"
### Context: CREATE TABLE table_name_33 (week VARCHAR, result VARCHAR) ### Question: What was the total number of weeks with a result of l 31-21? ### Answer: SELECT COUNT(week) FROM table_name_33 WHERE result = "l 31-21"
Which 2003 has a 2012 of 1–4?
CREATE TABLE table_name_24 (Id VARCHAR)
SELECT 2003 FROM table_name_24 WHERE 2012 = "1–4"
### Context: CREATE TABLE table_name_24 (Id VARCHAR) ### Question: Which 2003 has a 2012 of 1–4? ### Answer: SELECT 2003 FROM table_name_24 WHERE 2012 = "1–4"
Which 2007 has a 2008 of 0 / 4?
CREATE TABLE table_name_90 (Id VARCHAR)
SELECT 2007 FROM table_name_90 WHERE 2008 = "0 / 4"
### Context: CREATE TABLE table_name_90 (Id VARCHAR) ### Question: Which 2007 has a 2008 of 0 / 4? ### Answer: SELECT 2007 FROM table_name_90 WHERE 2008 = "0 / 4"
Which 2007 has a 2003 of 2r, and a 2004 of 1r?
CREATE TABLE table_name_7 (Id VARCHAR)
SELECT 2007 FROM table_name_7 WHERE 2003 = "2r" AND 2004 = "1r"
### Context: CREATE TABLE table_name_7 (Id VARCHAR) ### Question: Which 2007 has a 2003 of 2r, and a 2004 of 1r? ### Answer: SELECT 2007 FROM table_name_7 WHERE 2003 = "2r" AND 2004 = "1r"
Which 2010 has a 2009 of 0 / 4?
CREATE TABLE table_name_86 (Id VARCHAR)
SELECT 2010 FROM table_name_86 WHERE 2009 = "0 / 4"
### Context: CREATE TABLE table_name_86 (Id VARCHAR) ### Question: Which 2010 has a 2009 of 0 / 4? ### Answer: SELECT 2010 FROM table_name_86 WHERE 2009 = "0 / 4"
Which 2011 has a 1999 of A, and a 2004 of 2r, and a Career SR of 0 / 10?
CREATE TABLE table_name_96 (career_sr VARCHAR)
SELECT 2011 FROM table_name_96 WHERE 1999 = "a" AND 2004 = "2r" AND career_sr = "0 / 10"
### Context: CREATE TABLE table_name_96 (career_sr VARCHAR) ### Question: Which 2011 has a 1999 of A, and a 2004 of 2r, and a Career SR of 0 / 10? ### Answer: SELECT 2011 FROM table_name_96 WHERE 1999 = "a" AND 2004 = "2r" AND career_sr = "0 / 10"
Which 2005 has a 1999 of 0–0?
CREATE TABLE table_name_37 (Id VARCHAR)
SELECT 2005 FROM table_name_37 WHERE 1999 = "0–0"
### Context: CREATE TABLE table_name_37 (Id VARCHAR) ### Question: Which 2005 has a 1999 of 0–0? ### Answer: SELECT 2005 FROM table_name_37 WHERE 1999 = "0–0"
what is the date of week 7
CREATE TABLE table_name_92 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_92 WHERE week = 7
### Context: CREATE TABLE table_name_92 (date VARCHAR, week VARCHAR) ### Question: what is the date of week 7 ### Answer: SELECT date FROM table_name_92 WHERE week = 7
Who was the visitor in the game that led to a 39-20-6 record?
CREATE TABLE table_name_96 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_96 WHERE record = "39-20-6"
### Context: CREATE TABLE table_name_96 (visitor VARCHAR, record VARCHAR) ### Question: Who was the visitor in the game that led to a 39-20-6 record? ### Answer: SELECT visitor FROM table_name_96 WHERE record = "39-20-6"