question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the name of the award in a year more than 2005, and the Result of nominated?
CREATE TABLE table_name_17 (award VARCHAR, year VARCHAR, result VARCHAR)
SELECT award FROM table_name_17 WHERE year > 2005 AND result = "nominated"
### Context: CREATE TABLE table_name_17 (award VARCHAR, year VARCHAR, result VARCHAR) ### Question: What is the name of the award in a year more than 2005, and the Result of nominated? ### Answer: SELECT award FROM table_name_17 WHERE year > 2005 AND result = "nominated"
What is the award for the Star Awards earlier than 2005 and the result is won?
CREATE TABLE table_name_31 (award VARCHAR, result VARCHAR, organisation VARCHAR, year VARCHAR)
SELECT award FROM table_name_31 WHERE organisation = "star awards" AND year < 2005 AND result = "won"
### Context: CREATE TABLE table_name_31 (award VARCHAR, result VARCHAR, organisation VARCHAR, year VARCHAR) ### Question: What is the award for the Star Awards earlier than 2005 and the result is won? ### Answer: SELECT award FROM table_name_31 WHERE organisation = "star awards" AND year < 2005 AND result = "won"
What is the organisation in 2011 that was nominated and the award of best info-ed programme host?
CREATE TABLE table_name_8 (organisation VARCHAR, award VARCHAR, year VARCHAR, result VARCHAR)
SELECT organisation FROM table_name_8 WHERE year = 2011 AND result = "nominated" AND award = "best info-ed programme host"
### Context: CREATE TABLE table_name_8 (organisation VARCHAR, award VARCHAR, year VARCHAR, result VARCHAR) ### Question: What is the organisation in 2011 that was nominated and the award of best info-ed programme host? ### Answer: SELECT organisation FROM table_name_8 WHERE year = 2011 AND result = "nominated" AND awar...
What is the name of the Representative Work in a year later than 2005 with a Result of nominated, and an Award of best variety show host?
CREATE TABLE table_name_20 (representative_work VARCHAR, award VARCHAR, year VARCHAR, result VARCHAR)
SELECT representative_work FROM table_name_20 WHERE year > 2005 AND result = "nominated" AND award = "best variety show host"
### Context: CREATE TABLE table_name_20 (representative_work VARCHAR, award VARCHAR, year VARCHAR, result VARCHAR) ### Question: What is the name of the Representative Work in a year later than 2005 with a Result of nominated, and an Award of best variety show host? ### Answer: SELECT representative_work FROM table_nam...
What is the award for 1998 with Representative Work of city beat?
CREATE TABLE table_name_78 (award VARCHAR, year VARCHAR, representative_work VARCHAR)
SELECT award FROM table_name_78 WHERE year = 1998 AND representative_work = "city beat"
### Context: CREATE TABLE table_name_78 (award VARCHAR, year VARCHAR, representative_work VARCHAR) ### Question: What is the award for 1998 with Representative Work of city beat? ### Answer: SELECT award FROM table_name_78 WHERE year = 1998 AND representative_work = "city beat"
Score of 2–1 has what record?
CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_66 WHERE score = "2–1"
### Context: CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR) ### Question: Score of 2–1 has what record? ### Answer: SELECT record FROM table_name_66 WHERE score = "2–1"
Home of kings had what score?
CREATE TABLE table_name_64 (score VARCHAR, home VARCHAR)
SELECT score FROM table_name_64 WHERE home = "kings"
### Context: CREATE TABLE table_name_64 (score VARCHAR, home VARCHAR) ### Question: Home of kings had what score? ### Answer: SELECT score FROM table_name_64 WHERE home = "kings"
Record of 21–29–10 had what total number of points?
CREATE TABLE table_name_2 (points VARCHAR, record VARCHAR)
SELECT COUNT(points) FROM table_name_2 WHERE record = "21–29–10"
### Context: CREATE TABLE table_name_2 (points VARCHAR, record VARCHAR) ### Question: Record of 21–29–10 had what total number of points? ### Answer: SELECT COUNT(points) FROM table_name_2 WHERE record = "21–29–10"
How many wins did the team, which had more than 110 points, have in 1989?
CREATE TABLE table_name_13 (wins INTEGER, year VARCHAR, points VARCHAR)
SELECT SUM(wins) FROM table_name_13 WHERE year = 1989 AND points > 110
### Context: CREATE TABLE table_name_13 (wins INTEGER, year VARCHAR, points VARCHAR) ### Question: How many wins did the team, which had more than 110 points, have in 1989? ### Answer: SELECT SUM(wins) FROM table_name_13 WHERE year = 1989 AND points > 110
What is the highest number of points the team with 0 wins had before 1992?
CREATE TABLE table_name_11 (points INTEGER, wins VARCHAR, year VARCHAR)
SELECT MAX(points) FROM table_name_11 WHERE wins = 0 AND year < 1992
### Context: CREATE TABLE table_name_11 (points INTEGER, wins VARCHAR, year VARCHAR) ### Question: What is the highest number of points the team with 0 wins had before 1992? ### Answer: SELECT MAX(points) FROM table_name_11 WHERE wins = 0 AND year < 1992
In what Round was Pick #12 drafted?
CREATE TABLE table_name_53 (round VARCHAR, pick__number VARCHAR)
SELECT round FROM table_name_53 WHERE pick__number = 12
### Context: CREATE TABLE table_name_53 (round VARCHAR, pick__number VARCHAR) ### Question: In what Round was Pick #12 drafted? ### Answer: SELECT round FROM table_name_53 WHERE pick__number = 12
What Player is a Wide Receiver?
CREATE TABLE table_name_40 (player VARCHAR, position VARCHAR)
SELECT player FROM table_name_40 WHERE position = "wide receiver"
### Context: CREATE TABLE table_name_40 (player VARCHAR, position VARCHAR) ### Question: What Player is a Wide Receiver? ### Answer: SELECT player FROM table_name_40 WHERE position = "wide receiver"
In what Round was a player from College of Connecticut drafted?
CREATE TABLE table_name_1 (round VARCHAR, college VARCHAR)
SELECT round FROM table_name_1 WHERE college = "connecticut"
### Context: CREATE TABLE table_name_1 (round VARCHAR, college VARCHAR) ### Question: In what Round was a player from College of Connecticut drafted? ### Answer: SELECT round FROM table_name_1 WHERE college = "connecticut"
What is the Position of Pick #321?
CREATE TABLE table_name_97 (position VARCHAR, pick__number VARCHAR)
SELECT position FROM table_name_97 WHERE pick__number = 321
### Context: CREATE TABLE table_name_97 (position VARCHAR, pick__number VARCHAR) ### Question: What is the Position of Pick #321? ### Answer: SELECT position FROM table_name_97 WHERE pick__number = 321
What is Mark Cannon's College?
CREATE TABLE table_name_45 (college VARCHAR, player VARCHAR)
SELECT college FROM table_name_45 WHERE player = "mark cannon"
### Context: CREATE TABLE table_name_45 (college VARCHAR, player VARCHAR) ### Question: What is Mark Cannon's College? ### Answer: SELECT college FROM table_name_45 WHERE player = "mark cannon"
What is the length and duration of the race on April 19?
CREATE TABLE table_name_85 (length_duration VARCHAR, date VARCHAR)
SELECT length_duration FROM table_name_85 WHERE date = "april 19"
### Context: CREATE TABLE table_name_85 (length_duration VARCHAR, date VARCHAR) ### Question: What is the length and duration of the race on April 19? ### Answer: SELECT length_duration FROM table_name_85 WHERE date = "april 19"
What was the circuit had a race on September 20.
CREATE TABLE table_name_46 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_name_46 WHERE date = "september 20"
### Context: CREATE TABLE table_name_46 (circuit VARCHAR, date VARCHAR) ### Question: What was the circuit had a race on September 20. ### Answer: SELECT circuit FROM table_name_46 WHERE date = "september 20"
What was the date of the race that lasted 6 hours?
CREATE TABLE table_name_54 (date VARCHAR, length_duration VARCHAR)
SELECT date FROM table_name_54 WHERE length_duration = "6 hours"
### Context: CREATE TABLE table_name_54 (date VARCHAR, length_duration VARCHAR) ### Question: What was the date of the race that lasted 6 hours? ### Answer: SELECT date FROM table_name_54 WHERE length_duration = "6 hours"
What are the classes for the circuit that has the Mazda Raceway Laguna Seca race.
CREATE TABLE table_name_70 (class_es_ VARCHAR, circuit VARCHAR)
SELECT class_es_ FROM table_name_70 WHERE circuit = "mazda raceway laguna seca"
### Context: CREATE TABLE table_name_70 (class_es_ VARCHAR, circuit VARCHAR) ### Question: What are the classes for the circuit that has the Mazda Raceway Laguna Seca race. ### Answer: SELECT class_es_ FROM table_name_70 WHERE circuit = "mazda raceway laguna seca"
Which opponent has points less than 18, and a november greater than 11?
CREATE TABLE table_name_21 (opponent VARCHAR, points VARCHAR, november VARCHAR)
SELECT opponent FROM table_name_21 WHERE points < 18 AND november > 11
### Context: CREATE TABLE table_name_21 (opponent VARCHAR, points VARCHAR, november VARCHAR) ### Question: Which opponent has points less than 18, and a november greater than 11? ### Answer: SELECT opponent FROM table_name_21 WHERE points < 18 AND november > 11
What is the highest November that has a game less than 12, and @ detroit red wings as the opponent?
CREATE TABLE table_name_57 (november INTEGER, game VARCHAR, opponent VARCHAR)
SELECT MAX(november) FROM table_name_57 WHERE game < 12 AND opponent = "@ detroit red wings"
### Context: CREATE TABLE table_name_57 (november INTEGER, game VARCHAR, opponent VARCHAR) ### Question: What is the highest November that has a game less than 12, and @ detroit red wings as the opponent? ### Answer: SELECT MAX(november) FROM table_name_57 WHERE game < 12 AND opponent = "@ detroit red wings"
What record has a november greater than 11, and st. louis blues as the opponent?
CREATE TABLE table_name_62 (record VARCHAR, november VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_62 WHERE november > 11 AND opponent = "st. louis blues"
### Context: CREATE TABLE table_name_62 (record VARCHAR, november VARCHAR, opponent VARCHAR) ### Question: What record has a november greater than 11, and st. louis blues as the opponent? ### Answer: SELECT record FROM table_name_62 WHERE november > 11 AND opponent = "st. louis blues"
What is the score when the record was 5-4-2?
CREATE TABLE table_name_32 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_32 WHERE record = "5-4-2"
### Context: CREATE TABLE table_name_32 (score VARCHAR, record VARCHAR) ### Question: What is the score when the record was 5-4-2? ### Answer: SELECT score FROM table_name_32 WHERE record = "5-4-2"
What is the score for the team with a record of 2-1?
CREATE TABLE table_name_81 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_81 WHERE record = "2-1"
### Context: CREATE TABLE table_name_81 (score VARCHAR, record VARCHAR) ### Question: What is the score for the team with a record of 2-1? ### Answer: SELECT score FROM table_name_81 WHERE record = "2-1"
Which home team has a record of 3-2?
CREATE TABLE table_name_49 (home VARCHAR, record VARCHAR)
SELECT home FROM table_name_49 WHERE record = "3-2"
### Context: CREATE TABLE table_name_49 (home VARCHAR, record VARCHAR) ### Question: Which home team has a record of 3-2? ### Answer: SELECT home FROM table_name_49 WHERE record = "3-2"
What is the average wins in 250cc class for Bultaco with 8 points later than 1966?
CREATE TABLE table_name_84 (wins INTEGER, points VARCHAR, year VARCHAR, class VARCHAR, team VARCHAR)
SELECT AVG(wins) FROM table_name_84 WHERE class = "250cc" AND team = "bultaco" AND year > 1966 AND points = 8
### Context: CREATE TABLE table_name_84 (wins INTEGER, points VARCHAR, year VARCHAR, class VARCHAR, team VARCHAR) ### Question: What is the average wins in 250cc class for Bultaco with 8 points later than 1966? ### Answer: SELECT AVG(wins) FROM table_name_84 WHERE class = "250cc" AND team = "bultaco" AND year > 1966 AN...
Which class corresponds to more than 2 points, wins greater than 0, and a year earlier than 1973?
CREATE TABLE table_name_47 (class VARCHAR, wins VARCHAR, points VARCHAR, year VARCHAR)
SELECT class FROM table_name_47 WHERE points > 2 AND year < 1973 AND wins > 0
### Context: CREATE TABLE table_name_47 (class VARCHAR, wins VARCHAR, points VARCHAR, year VARCHAR) ### Question: Which class corresponds to more than 2 points, wins greater than 0, and a year earlier than 1973? ### Answer: SELECT class FROM table_name_47 WHERE points > 2 AND year < 1973 AND wins > 0
What is the sum of all points in 1975 with 0 wins?
CREATE TABLE table_name_33 (points INTEGER, year VARCHAR, wins VARCHAR)
SELECT SUM(points) FROM table_name_33 WHERE year = 1975 AND wins < 0
### Context: CREATE TABLE table_name_33 (points INTEGER, year VARCHAR, wins VARCHAR) ### Question: What is the sum of all points in 1975 with 0 wins? ### Answer: SELECT SUM(points) FROM table_name_33 WHERE year = 1975 AND wins < 0
Which Country has a Score of 70-68-70-68=276?
CREATE TABLE table_name_43 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_43 WHERE score = 70 - 68 - 70 - 68 = 276
### Context: CREATE TABLE table_name_43 (country VARCHAR, score VARCHAR) ### Question: Which Country has a Score of 70-68-70-68=276? ### Answer: SELECT country FROM table_name_43 WHERE score = 70 - 68 - 70 - 68 = 276
What is the fastest lap in the Le Mans Bugatti circuit?
CREATE TABLE table_name_72 (fastest_lap VARCHAR, circuit VARCHAR)
SELECT fastest_lap FROM table_name_72 WHERE circuit = "le mans bugatti"
### Context: CREATE TABLE table_name_72 (fastest_lap VARCHAR, circuit VARCHAR) ### Question: What is the fastest lap in the Le Mans Bugatti circuit? ### Answer: SELECT fastest_lap FROM table_name_72 WHERE circuit = "le mans bugatti"
What is the fastest lap of the Oschersleben circuit with Audi Sport Team ABT as the winning team?
CREATE TABLE table_name_76 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR)
SELECT fastest_lap FROM table_name_76 WHERE winning_team = "audi sport team abt" AND circuit = "oschersleben"
### Context: CREATE TABLE table_name_76 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR) ### Question: What is the fastest lap of the Oschersleben circuit with Audi Sport Team ABT as the winning team? ### Answer: SELECT fastest_lap FROM table_name_76 WHERE winning_team = "audi sport team abt" AND circuit = ...
Who is the winning driver of the Oschersleben circuit with Timo Scheider as the pole position?
CREATE TABLE table_name_36 (winning_driver VARCHAR, pole_position VARCHAR, circuit VARCHAR)
SELECT winning_driver FROM table_name_36 WHERE pole_position = "timo scheider" AND circuit = "oschersleben"
### Context: CREATE TABLE table_name_36 (winning_driver VARCHAR, pole_position VARCHAR, circuit VARCHAR) ### Question: Who is the winning driver of the Oschersleben circuit with Timo Scheider as the pole position? ### Answer: SELECT winning_driver FROM table_name_36 WHERE pole_position = "timo scheider" AND circuit = "...
What is the winning team of the race on 31 August with Audi as the winning manufacturer and Timo Scheider as the winning driver?
CREATE TABLE table_name_15 (winning_team VARCHAR, date VARCHAR, winning_manufacturer VARCHAR, winning_driver VARCHAR)
SELECT winning_team FROM table_name_15 WHERE winning_manufacturer = "audi" AND winning_driver = "timo scheider" AND date = "31 august"
### Context: CREATE TABLE table_name_15 (winning_team VARCHAR, date VARCHAR, winning_manufacturer VARCHAR, winning_driver VARCHAR) ### Question: What is the winning team of the race on 31 August with Audi as the winning manufacturer and Timo Scheider as the winning driver? ### Answer: SELECT winning_team FROM table_nam...
Who is the winning driver of the race with no race as the winning manufacturer?
CREATE TABLE table_name_66 (winning_driver VARCHAR, winning_manufacturer VARCHAR)
SELECT winning_driver FROM table_name_66 WHERE winning_manufacturer = "no race"
### Context: CREATE TABLE table_name_66 (winning_driver VARCHAR, winning_manufacturer VARCHAR) ### Question: Who is the winning driver of the race with no race as the winning manufacturer? ### Answer: SELECT winning_driver FROM table_name_66 WHERE winning_manufacturer = "no race"
In what Tournament was the Score of 3–6, 6–3, 7–6 in a match played on a hard Surface?
CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_78 WHERE surface = "hard" AND score = "3–6, 6–3, 7–6"
### Context: CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, score VARCHAR) ### Question: In what Tournament was the Score of 3–6, 6–3, 7–6 in a match played on a hard Surface? ### Answer: SELECT tournament FROM table_name_78 WHERE surface = "hard" AND score = "3–6, 6–3, 7–6"
Who was the Partner in a game with the Score of 6–4, 6–2 on a hard surface?
CREATE TABLE table_name_74 (partner VARCHAR, surface VARCHAR, score VARCHAR)
SELECT partner FROM table_name_74 WHERE surface = "hard" AND score = "6–4, 6–2"
### Context: CREATE TABLE table_name_74 (partner VARCHAR, surface VARCHAR, score VARCHAR) ### Question: Who was the Partner in a game with the Score of 6–4, 6–2 on a hard surface? ### Answer: SELECT partner FROM table_name_74 WHERE surface = "hard" AND score = "6–4, 6–2"
On what Date was the Score 6–4, 6–2?
CREATE TABLE table_name_59 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_59 WHERE score = "6–4, 6–2"
### Context: CREATE TABLE table_name_59 (date VARCHAR, score VARCHAR) ### Question: On what Date was the Score 6–4, 6–2? ### Answer: SELECT date FROM table_name_59 WHERE score = "6–4, 6–2"
When was the year that had an average attendance of 5,445?
CREATE TABLE table_name_64 (year VARCHAR, avg_attendance VARCHAR)
SELECT year FROM table_name_64 WHERE avg_attendance = "5,445"
### Context: CREATE TABLE table_name_64 (year VARCHAR, avg_attendance VARCHAR) ### Question: When was the year that had an average attendance of 5,445? ### Answer: SELECT year FROM table_name_64 WHERE avg_attendance = "5,445"
In 2010-11, what was the League name?
CREATE TABLE table_name_18 (league VARCHAR, year VARCHAR)
SELECT league FROM table_name_18 WHERE year = "2010-11"
### Context: CREATE TABLE table_name_18 (league VARCHAR, year VARCHAR) ### Question: In 2010-11, what was the League name? ### Answer: SELECT league FROM table_name_18 WHERE year = "2010-11"
If the Played was played, what is the lost?
CREATE TABLE table_name_66 (lost VARCHAR)
SELECT lost FROM table_name_66 WHERE "played" = "played"
### Context: CREATE TABLE table_name_66 (lost VARCHAR) ### Question: If the Played was played, what is the lost? ### Answer: SELECT lost FROM table_name_66 WHERE "played" = "played"
If the losing bonus was 6, what is the tries for?
CREATE TABLE table_name_76 (tries_for VARCHAR, losing_bonus VARCHAR)
SELECT tries_for FROM table_name_76 WHERE losing_bonus = "6"
### Context: CREATE TABLE table_name_76 (tries_for VARCHAR, losing_bonus VARCHAR) ### Question: If the losing bonus was 6, what is the tries for? ### Answer: SELECT tries_for FROM table_name_76 WHERE losing_bonus = "6"
If points against was 371, what is the drawn?
CREATE TABLE table_name_51 (drawn VARCHAR, points_against VARCHAR)
SELECT drawn FROM table_name_51 WHERE points_against = "371"
### Context: CREATE TABLE table_name_51 (drawn VARCHAR, points_against VARCHAR) ### Question: If points against was 371, what is the drawn? ### Answer: SELECT drawn FROM table_name_51 WHERE points_against = "371"
If played is 22 and the tries against are 43, what are the points?
CREATE TABLE table_name_30 (points_for VARCHAR, played VARCHAR, tries_against VARCHAR)
SELECT points_for FROM table_name_30 WHERE played = "22" AND tries_against = "43"
### Context: CREATE TABLE table_name_30 (points_for VARCHAR, played VARCHAR, tries_against VARCHAR) ### Question: If played is 22 and the tries against are 43, what are the points? ### Answer: SELECT points_for FROM table_name_30 WHERE played = "22" AND tries_against = "43"
What's the losing bonus of Crumlin RFC?
CREATE TABLE table_name_21 (losing_bonus VARCHAR, club VARCHAR)
SELECT losing_bonus FROM table_name_21 WHERE club = "crumlin rfc"
### Context: CREATE TABLE table_name_21 (losing_bonus VARCHAR, club VARCHAR) ### Question: What's the losing bonus of Crumlin RFC? ### Answer: SELECT losing_bonus FROM table_name_21 WHERE club = "crumlin rfc"
What's the Opponent with a Week that's larger than 16?
CREATE TABLE table_name_9 (opponent VARCHAR, week INTEGER)
SELECT opponent FROM table_name_9 WHERE week > 16
### Context: CREATE TABLE table_name_9 (opponent VARCHAR, week INTEGER) ### Question: What's the Opponent with a Week that's larger than 16? ### Answer: SELECT opponent FROM table_name_9 WHERE week > 16
What's the Game SIte with an Opponent of San Diego Chargers?
CREATE TABLE table_name_97 (game_site VARCHAR, opponent VARCHAR)
SELECT game_site FROM table_name_97 WHERE opponent = "san diego chargers"
### Context: CREATE TABLE table_name_97 (game_site VARCHAR, opponent VARCHAR) ### Question: What's the Game SIte with an Opponent of San Diego Chargers? ### Answer: SELECT game_site FROM table_name_97 WHERE opponent = "san diego chargers"
Which Silver is the lowest one that has a Gold larger than 0, and a Rank of total, and a Bronze smaller than 32?
CREATE TABLE table_name_70 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT MIN(silver) FROM table_name_70 WHERE gold > 0 AND rank = "total" AND bronze < 32
### Context: CREATE TABLE table_name_70 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR) ### Question: Which Silver is the lowest one that has a Gold larger than 0, and a Rank of total, and a Bronze smaller than 32? ### Answer: SELECT MIN(silver) FROM table_name_70 WHERE gold > 0 AND rank = "total" AND bron...
Which Bronze is the lowest one that has a Rank of 3, and a Silver smaller than 2?
CREATE TABLE table_name_7 (bronze INTEGER, rank VARCHAR, silver VARCHAR)
SELECT MIN(bronze) FROM table_name_7 WHERE rank = "3" AND silver < 2
### Context: CREATE TABLE table_name_7 (bronze INTEGER, rank VARCHAR, silver VARCHAR) ### Question: Which Bronze is the lowest one that has a Rank of 3, and a Silver smaller than 2? ### Answer: SELECT MIN(bronze) FROM table_name_7 WHERE rank = "3" AND silver < 2
Which Silver has a Nation of china, and a Bronze smaller than 7?
CREATE TABLE table_name_2 (silver INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT SUM(silver) FROM table_name_2 WHERE nation = "china" AND bronze < 7
### Context: CREATE TABLE table_name_2 (silver INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: Which Silver has a Nation of china, and a Bronze smaller than 7? ### Answer: SELECT SUM(silver) FROM table_name_2 WHERE nation = "china" AND bronze < 7
Which Nation has a Gold of 0, and a Bronze smaller than 6, and a Rank of 6?
CREATE TABLE table_name_91 (nation VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_91 WHERE gold = 0 AND bronze < "6" AND rank = "6"
### Context: CREATE TABLE table_name_91 (nation VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR) ### Question: Which Nation has a Gold of 0, and a Bronze smaller than 6, and a Rank of 6? ### Answer: SELECT nation FROM table_name_91 WHERE gold = 0 AND bronze < "6" AND rank = "6"
What score has detroit as the home, and December 9 as the date?
CREATE TABLE table_name_78 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_78 WHERE home = "detroit" AND date = "december 9"
### Context: CREATE TABLE table_name_78 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: What score has detroit as the home, and December 9 as the date? ### Answer: SELECT score FROM table_name_78 WHERE home = "detroit" AND date = "december 9"
What score has mtl. maroons as the visitor?
CREATE TABLE table_name_91 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_91 WHERE visitor = "mtl. maroons"
### Context: CREATE TABLE table_name_91 (score VARCHAR, visitor VARCHAR) ### Question: What score has mtl. maroons as the visitor? ### Answer: SELECT score FROM table_name_91 WHERE visitor = "mtl. maroons"
What record has detroit as the home and mtl. maroons as the visitor?
CREATE TABLE table_name_99 (record VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_99 WHERE home = "detroit" AND visitor = "mtl. maroons"
### Context: CREATE TABLE table_name_99 (record VARCHAR, home VARCHAR, visitor VARCHAR) ### Question: What record has detroit as the home and mtl. maroons as the visitor? ### Answer: SELECT record FROM table_name_99 WHERE home = "detroit" AND visitor = "mtl. maroons"
What visitor has December 14 as the date?
CREATE TABLE table_name_55 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_55 WHERE date = "december 14"
### Context: CREATE TABLE table_name_55 (visitor VARCHAR, date VARCHAR) ### Question: What visitor has December 14 as the date? ### Answer: SELECT visitor FROM table_name_55 WHERE date = "december 14"
What is the highest number of FCWC in the Years of 1958–1965, and an ICFC smaller than 11?
CREATE TABLE table_name_38 (fcwc INTEGER, years VARCHAR, icfc VARCHAR)
SELECT MAX(fcwc) FROM table_name_38 WHERE years = "1958–1965" AND icfc < 11
### Context: CREATE TABLE table_name_38 (fcwc INTEGER, years VARCHAR, icfc VARCHAR) ### Question: What is the highest number of FCWC in the Years of 1958–1965, and an ICFC smaller than 11? ### Answer: SELECT MAX(fcwc) FROM table_name_38 WHERE years = "1958–1965" AND icfc < 11
What is the lowest ranking associated with a total of 23?
CREATE TABLE table_name_51 (ranking INTEGER, total VARCHAR)
SELECT MIN(ranking) FROM table_name_51 WHERE total = 23
### Context: CREATE TABLE table_name_51 (ranking INTEGER, total VARCHAR) ### Question: What is the lowest ranking associated with a total of 23? ### Answer: SELECT MIN(ranking) FROM table_name_51 WHERE total = 23
Which is the Outcome on 13 november 2006?
CREATE TABLE table_name_44 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_44 WHERE date = "13 november 2006"
### Context: CREATE TABLE table_name_44 (outcome VARCHAR, date VARCHAR) ### Question: Which is the Outcome on 13 november 2006? ### Answer: SELECT outcome FROM table_name_44 WHERE date = "13 november 2006"
Which Score has an Opponent of melanie south?
CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_58 WHERE opponent = "melanie south"
### Context: CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR) ### Question: Which Score has an Opponent of melanie south? ### Answer: SELECT score FROM table_name_58 WHERE opponent = "melanie south"
Which Outcome has a Opponent of lindsay lee-waters?
CREATE TABLE table_name_83 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_83 WHERE opponent = "lindsay lee-waters"
### Context: CREATE TABLE table_name_83 (outcome VARCHAR, opponent VARCHAR) ### Question: Which Outcome has a Opponent of lindsay lee-waters? ### Answer: SELECT outcome FROM table_name_83 WHERE opponent = "lindsay lee-waters"
Which Opponent is on 17 november 2002?
CREATE TABLE table_name_64 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_64 WHERE date = "17 november 2002"
### Context: CREATE TABLE table_name_64 (opponent VARCHAR, date VARCHAR) ### Question: Which Opponent is on 17 november 2002? ### Answer: SELECT opponent FROM table_name_64 WHERE date = "17 november 2002"
Which Tournament has an Outcome of winner on 19 october 2008?
CREATE TABLE table_name_25 (tournament VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_25 WHERE outcome = "winner" AND date = "19 october 2008"
### Context: CREATE TABLE table_name_25 (tournament VARCHAR, outcome VARCHAR, date VARCHAR) ### Question: Which Tournament has an Outcome of winner on 19 october 2008? ### Answer: SELECT tournament FROM table_name_25 WHERE outcome = "winner" AND date = "19 october 2008"
When is an Opponent of evie dominikovic?
CREATE TABLE table_name_72 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_72 WHERE opponent = "evie dominikovic"
### Context: CREATE TABLE table_name_72 (date VARCHAR, opponent VARCHAR) ### Question: When is an Opponent of evie dominikovic? ### Answer: SELECT date FROM table_name_72 WHERE opponent = "evie dominikovic"
Who was the opponent at the game attended by 45,000?
CREATE TABLE table_name_73 (opponent_number VARCHAR, attendance VARCHAR)
SELECT opponent_number FROM table_name_73 WHERE attendance = "45,000"
### Context: CREATE TABLE table_name_73 (opponent_number VARCHAR, attendance VARCHAR) ### Question: Who was the opponent at the game attended by 45,000? ### Answer: SELECT opponent_number FROM table_name_73 WHERE attendance = "45,000"
Which Bleeding time has a Condition of factor x deficiency as seen in amyloid purpura?
CREATE TABLE table_name_31 (bleeding_time VARCHAR, condition VARCHAR)
SELECT bleeding_time FROM table_name_31 WHERE condition = "factor x deficiency as seen in amyloid purpura"
### Context: CREATE TABLE table_name_31 (bleeding_time VARCHAR, condition VARCHAR) ### Question: Which Bleeding time has a Condition of factor x deficiency as seen in amyloid purpura? ### Answer: SELECT bleeding_time FROM table_name_31 WHERE condition = "factor x deficiency as seen in amyloid purpura"
Which Platelet count has a Condition of bernard-soulier syndrome?
CREATE TABLE table_name_34 (platelet_count VARCHAR, condition VARCHAR)
SELECT platelet_count FROM table_name_34 WHERE condition = "bernard-soulier syndrome"
### Context: CREATE TABLE table_name_34 (platelet_count VARCHAR, condition VARCHAR) ### Question: Which Platelet count has a Condition of bernard-soulier syndrome? ### Answer: SELECT platelet_count FROM table_name_34 WHERE condition = "bernard-soulier syndrome"
Which Prothrombin time has a Platelet count of unaffected, and a Bleeding time of unaffected, and a Partial thromboplastin time of normal or mildly prolonged?
CREATE TABLE table_name_28 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR)
SELECT prothrombin_time FROM table_name_28 WHERE platelet_count = "unaffected" AND bleeding_time = "unaffected" AND partial_thromboplastin_time = "normal or mildly prolonged"
### Context: CREATE TABLE table_name_28 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR) ### Question: Which Prothrombin time has a Platelet count of unaffected, and a Bleeding time of unaffected, and a Partial thromboplastin time of normal or mildly prolong...
Which Platelet count has a Condition of factor v deficiency?
CREATE TABLE table_name_39 (platelet_count VARCHAR, condition VARCHAR)
SELECT platelet_count FROM table_name_39 WHERE condition = "factor v deficiency"
### Context: CREATE TABLE table_name_39 (platelet_count VARCHAR, condition VARCHAR) ### Question: Which Platelet count has a Condition of factor v deficiency? ### Answer: SELECT platelet_count FROM table_name_39 WHERE condition = "factor v deficiency"
Which Condition has a Bleeding time of unaffected, and a Partial thromboplastin time of prolonged, and a Prothrombin time of unaffected?
CREATE TABLE table_name_53 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)
SELECT condition FROM table_name_53 WHERE bleeding_time = "unaffected" AND partial_thromboplastin_time = "prolonged" AND prothrombin_time = "unaffected"
### Context: CREATE TABLE table_name_53 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR) ### Question: Which Condition has a Bleeding time of unaffected, and a Partial thromboplastin time of prolonged, and a Prothrombin time of unaffected? ### Answer: SELECT cond...
What is hemophilia's bleeding time?
CREATE TABLE table_name_41 (bleeding_time VARCHAR, condition VARCHAR)
SELECT bleeding_time FROM table_name_41 WHERE condition = "hemophilia"
### Context: CREATE TABLE table_name_41 (bleeding_time VARCHAR, condition VARCHAR) ### Question: What is hemophilia's bleeding time? ### Answer: SELECT bleeding_time FROM table_name_41 WHERE condition = "hemophilia"
Which Bronze has a Year smaller than 1994, and a Silver of south korea?
CREATE TABLE table_name_45 (bronze VARCHAR, year VARCHAR, silver VARCHAR)
SELECT bronze FROM table_name_45 WHERE year < 1994 AND silver = "south korea"
### Context: CREATE TABLE table_name_45 (bronze VARCHAR, year VARCHAR, silver VARCHAR) ### Question: Which Bronze has a Year smaller than 1994, and a Silver of south korea? ### Answer: SELECT bronze FROM table_name_45 WHERE year < 1994 AND silver = "south korea"
Which Location has a Silver of japan?
CREATE TABLE table_name_10 (location VARCHAR, silver VARCHAR)
SELECT location FROM table_name_10 WHERE silver = "japan"
### Context: CREATE TABLE table_name_10 (location VARCHAR, silver VARCHAR) ### Question: Which Location has a Silver of japan? ### Answer: SELECT location FROM table_name_10 WHERE silver = "japan"
Which Year is the highest one that has a Bronze of south korea, and a Silver of philippines?
CREATE TABLE table_name_27 (year INTEGER, bronze VARCHAR, silver VARCHAR)
SELECT MAX(year) FROM table_name_27 WHERE bronze = "south korea" AND silver = "philippines"
### Context: CREATE TABLE table_name_27 (year INTEGER, bronze VARCHAR, silver VARCHAR) ### Question: Which Year is the highest one that has a Bronze of south korea, and a Silver of philippines? ### Answer: SELECT MAX(year) FROM table_name_27 WHERE bronze = "south korea" AND silver = "philippines"
How many years has Japan won silver?
CREATE TABLE table_name_4 (year INTEGER, silver VARCHAR)
SELECT SUM(year) FROM table_name_4 WHERE silver = "japan"
### Context: CREATE TABLE table_name_4 (year INTEGER, silver VARCHAR) ### Question: How many years has Japan won silver? ### Answer: SELECT SUM(year) FROM table_name_4 WHERE silver = "japan"
What was the Indians record during the game that had 19,823 fans attending?
CREATE TABLE table_name_75 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_75 WHERE attendance = "19,823"
### Context: CREATE TABLE table_name_75 (record VARCHAR, attendance VARCHAR) ### Question: What was the Indians record during the game that had 19,823 fans attending? ### Answer: SELECT record FROM table_name_75 WHERE attendance = "19,823"
What date did the Indians have a record of 14-28?
CREATE TABLE table_name_89 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_89 WHERE record = "14-28"
### Context: CREATE TABLE table_name_89 (date VARCHAR, record VARCHAR) ### Question: What date did the Indians have a record of 14-28? ### Answer: SELECT date FROM table_name_89 WHERE record = "14-28"
In what Round was George Thomas Picked?
CREATE TABLE table_name_24 (round INTEGER, name VARCHAR)
SELECT AVG(round) FROM table_name_24 WHERE name = "george thomas"
### Context: CREATE TABLE table_name_24 (round INTEGER, name VARCHAR) ### Question: In what Round was George Thomas Picked? ### Answer: SELECT AVG(round) FROM table_name_24 WHERE name = "george thomas"
What was the first Round with a Pick # greater than 1 and 140 Overall?
CREATE TABLE table_name_43 (round INTEGER, pick__number VARCHAR, overall VARCHAR)
SELECT MIN(round) FROM table_name_43 WHERE pick__number > 1 AND overall > 140
### Context: CREATE TABLE table_name_43 (round INTEGER, pick__number VARCHAR, overall VARCHAR) ### Question: What was the first Round with a Pick # greater than 1 and 140 Overall? ### Answer: SELECT MIN(round) FROM table_name_43 WHERE pick__number > 1 AND overall > 140
What is Aundray Bruce's Pick #?
CREATE TABLE table_name_8 (pick__number VARCHAR, name VARCHAR)
SELECT pick__number FROM table_name_8 WHERE name = "aundray bruce"
### Context: CREATE TABLE table_name_8 (pick__number VARCHAR, name VARCHAR) ### Question: What is Aundray Bruce's Pick #? ### Answer: SELECT pick__number FROM table_name_8 WHERE name = "aundray bruce"
In what Round with an Overall greater than 306 was the pick from the College of Virginia Tech?
CREATE TABLE table_name_66 (round VARCHAR, college VARCHAR, overall VARCHAR)
SELECT COUNT(round) FROM table_name_66 WHERE college = "virginia tech" AND overall > 306
### Context: CREATE TABLE table_name_66 (round VARCHAR, college VARCHAR, overall VARCHAR) ### Question: In what Round with an Overall greater than 306 was the pick from the College of Virginia Tech? ### Answer: SELECT COUNT(round) FROM table_name_66 WHERE college = "virginia tech" AND overall > 306
Which highest wins number had Kawasaki as a team, 95 points, and a year prior to 1981?
CREATE TABLE table_name_9 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR)
SELECT MAX(wins) FROM table_name_9 WHERE team = "kawasaki" AND points = 95 AND year < 1981
### Context: CREATE TABLE table_name_9 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR) ### Question: Which highest wins number had Kawasaki as a team, 95 points, and a year prior to 1981? ### Answer: SELECT MAX(wins) FROM table_name_9 WHERE team = "kawasaki" AND points = 95 AND year < 1981
How many points numbers had a class of 250cc, a year prior to 1978, Yamaha as a team, and where wins was more than 0?
CREATE TABLE table_name_19 (points VARCHAR, wins VARCHAR, team VARCHAR, class VARCHAR, year VARCHAR)
SELECT COUNT(points) FROM table_name_19 WHERE class = "250cc" AND year < 1978 AND team = "yamaha" AND wins > 0
### Context: CREATE TABLE table_name_19 (points VARCHAR, wins VARCHAR, team VARCHAR, class VARCHAR, year VARCHAR) ### Question: How many points numbers had a class of 250cc, a year prior to 1978, Yamaha as a team, and where wins was more than 0? ### Answer: SELECT COUNT(points) FROM table_name_19 WHERE class = "250cc" ...
What is the mean year number where there are more than 0 wins, the class is 250cc, and the points are 95?
CREATE TABLE table_name_66 (year INTEGER, points VARCHAR, wins VARCHAR, class VARCHAR)
SELECT AVG(year) FROM table_name_66 WHERE wins > 0 AND class = "250cc" AND points = 95
### Context: CREATE TABLE table_name_66 (year INTEGER, points VARCHAR, wins VARCHAR, class VARCHAR) ### Question: What is the mean year number where there are more than 0 wins, the class is 250cc, and the points are 95? ### Answer: SELECT AVG(year) FROM table_name_66 WHERE wins > 0 AND class = "250cc" AND points = 95
What is the score on december 10?
CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_98 WHERE date = "december 10"
### Context: CREATE TABLE table_name_98 (score VARCHAR, date VARCHAR) ### Question: What is the score on december 10? ### Answer: SELECT score FROM table_name_98 WHERE date = "december 10"
What is the date for the home detroit and visitor was chicago?
CREATE TABLE table_name_82 (date VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_82 WHERE home = "detroit" AND visitor = "chicago"
### Context: CREATE TABLE table_name_82 (date VARCHAR, home VARCHAR, visitor VARCHAR) ### Question: What is the date for the home detroit and visitor was chicago? ### Answer: SELECT date FROM table_name_82 WHERE home = "detroit" AND visitor = "chicago"
Who is the visitor on december 3?
CREATE TABLE table_name_66 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_66 WHERE date = "december 3"
### Context: CREATE TABLE table_name_66 (visitor VARCHAR, date VARCHAR) ### Question: Who is the visitor on december 3? ### Answer: SELECT visitor FROM table_name_66 WHERE date = "december 3"
Who is the visitor on the date december 31?
CREATE TABLE table_name_95 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_95 WHERE date = "december 31"
### Context: CREATE TABLE table_name_95 (visitor VARCHAR, date VARCHAR) ### Question: Who is the visitor on the date december 31? ### Answer: SELECT visitor FROM table_name_95 WHERE date = "december 31"
What is the location of the race on 11 November?
CREATE TABLE table_name_14 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_14 WHERE date = "11 november"
### Context: CREATE TABLE table_name_14 (location VARCHAR, date VARCHAR) ### Question: What is the location of the race on 11 November? ### Answer: SELECT location FROM table_name_14 WHERE date = "11 november"
Who is the winner of the race in Burkina Faso?
CREATE TABLE table_name_60 (winner VARCHAR, location VARCHAR)
SELECT winner FROM table_name_60 WHERE location = "burkina faso"
### Context: CREATE TABLE table_name_60 (winner VARCHAR, location VARCHAR) ### Question: Who is the winner of the race in Burkina Faso? ### Answer: SELECT winner FROM table_name_60 WHERE location = "burkina faso"
What is the release date of Martial Law: Take Out?
CREATE TABLE table_name_45 (release_date VARCHAR, release_title VARCHAR)
SELECT release_date FROM table_name_45 WHERE release_title = "martial law: take out"
### Context: CREATE TABLE table_name_45 (release_date VARCHAR, release_title VARCHAR) ### Question: What is the release date of Martial Law: Take Out? ### Answer: SELECT release_date FROM table_name_45 WHERE release_title = "martial law: take out"
Which publisher released Martial Law: Substitutes?
CREATE TABLE table_name_47 (publisher VARCHAR, release_title VARCHAR)
SELECT publisher FROM table_name_47 WHERE release_title = "martial law: substitutes"
### Context: CREATE TABLE table_name_47 (publisher VARCHAR, release_title VARCHAR) ### Question: Which publisher released Martial Law: Substitutes? ### Answer: SELECT publisher FROM table_name_47 WHERE release_title = "martial law: substitutes"
Which country had a release of 1 VCD titled Martial Law: Substitutes?
CREATE TABLE table_name_93 (country VARCHAR, notes VARCHAR, release_title VARCHAR)
SELECT country FROM table_name_93 WHERE notes = "1 vcd" AND release_title = "martial law: substitutes"
### Context: CREATE TABLE table_name_93 (country VARCHAR, notes VARCHAR, release_title VARCHAR) ### Question: Which country had a release of 1 VCD titled Martial Law: Substitutes? ### Answer: SELECT country FROM table_name_93 WHERE notes = "1 vcd" AND release_title = "martial law: substitutes"
Who was the publisher of Martial Law: Dead Ringers?
CREATE TABLE table_name_56 (publisher VARCHAR, release_title VARCHAR)
SELECT publisher FROM table_name_56 WHERE release_title = "martial law: dead ringers"
### Context: CREATE TABLE table_name_56 (publisher VARCHAR, release_title VARCHAR) ### Question: Who was the publisher of Martial Law: Dead Ringers? ### Answer: SELECT publisher FROM table_name_56 WHERE release_title = "martial law: dead ringers"
What is the name of the Loser when the winner was new england patriots, and a Location of giants stadium, and a Result of 30–28?
CREATE TABLE table_name_46 (loser VARCHAR, result VARCHAR, winner VARCHAR, location VARCHAR)
SELECT loser FROM table_name_46 WHERE winner = "new england patriots" AND location = "giants stadium" AND result = "30–28"
### Context: CREATE TABLE table_name_46 (loser VARCHAR, result VARCHAR, winner VARCHAR, location VARCHAR) ### Question: What is the name of the Loser when the winner was new england patriots, and a Location of giants stadium, and a Result of 30–28? ### Answer: SELECT loser FROM table_name_46 WHERE winner = "new england...
What team was the lower when the winner was the new york jets, and a Year earlier than 1994, and a Result of 37–13?
CREATE TABLE table_name_98 (loser VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR)
SELECT loser FROM table_name_98 WHERE winner = "new york jets" AND year < 1994 AND result = "37–13"
### Context: CREATE TABLE table_name_98 (loser VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR) ### Question: What team was the lower when the winner was the new york jets, and a Year earlier than 1994, and a Result of 37–13? ### Answer: SELECT loser FROM table_name_98 WHERE winner = "new york jets" AND year < 19...
What is the location when the new york jets lost earlier than 1997 and a Result of 31–28?
CREATE TABLE table_name_20 (location VARCHAR, result VARCHAR, loser VARCHAR, year VARCHAR)
SELECT location FROM table_name_20 WHERE loser = "new york jets" AND year < 1997 AND result = "31–28"
### Context: CREATE TABLE table_name_20 (location VARCHAR, result VARCHAR, loser VARCHAR, year VARCHAR) ### Question: What is the location when the new york jets lost earlier than 1997 and a Result of 31–28? ### Answer: SELECT location FROM table_name_20 WHERE loser = "new york jets" AND year < 1997 AND result = "31–28...
What is the year when the Winner was the new york jets, with a Result of 24–17, played at giants stadium?
CREATE TABLE table_name_39 (year INTEGER, location VARCHAR, winner VARCHAR, result VARCHAR)
SELECT SUM(year) FROM table_name_39 WHERE winner = "new york jets" AND result = "24–17" AND location = "giants stadium"
### Context: CREATE TABLE table_name_39 (year INTEGER, location VARCHAR, winner VARCHAR, result VARCHAR) ### Question: What is the year when the Winner was the new york jets, with a Result of 24–17, played at giants stadium? ### Answer: SELECT SUM(year) FROM table_name_39 WHERE winner = "new york jets" AND result = "24...
What is the earliest year catalog # ual 24033 had an LP?
CREATE TABLE table_name_67 (year INTEGER, type VARCHAR, catalog__number VARCHAR)
SELECT MIN(year) FROM table_name_67 WHERE type = "lp" AND catalog__number = "ual 24033"
### Context: CREATE TABLE table_name_67 (year INTEGER, type VARCHAR, catalog__number VARCHAR) ### Question: What is the earliest year catalog # ual 24033 had an LP? ### Answer: SELECT MIN(year) FROM table_name_67 WHERE type = "lp" AND catalog__number = "ual 24033"
Which Games had a Name of manuel felix diaz?
CREATE TABLE table_name_64 (games VARCHAR, name VARCHAR)
SELECT games FROM table_name_64 WHERE name = "manuel felix diaz"
### Context: CREATE TABLE table_name_64 (games VARCHAR, name VARCHAR) ### Question: Which Games had a Name of manuel felix diaz? ### Answer: SELECT games FROM table_name_64 WHERE name = "manuel felix diaz"
Which Medal had a Games of 2008 beijing, and a Sport of taekwondo?
CREATE TABLE table_name_48 (medal VARCHAR, games VARCHAR, sport VARCHAR)
SELECT medal FROM table_name_48 WHERE games = "2008 beijing" AND sport = "taekwondo"
### Context: CREATE TABLE table_name_48 (medal VARCHAR, games VARCHAR, sport VARCHAR) ### Question: Which Medal had a Games of 2008 beijing, and a Sport of taekwondo? ### Answer: SELECT medal FROM table_name_48 WHERE games = "2008 beijing" AND sport = "taekwondo"
Which Medal had a Name of fΓ©lix sΓ‘nchez, and a Games of 2012 london?
CREATE TABLE table_name_43 (medal VARCHAR, name VARCHAR, games VARCHAR)
SELECT medal FROM table_name_43 WHERE name = "fΓ©lix sΓ‘nchez" AND games = "2012 london"
### Context: CREATE TABLE table_name_43 (medal VARCHAR, name VARCHAR, games VARCHAR) ### Question: Which Medal had a Name of fΓ©lix sΓ‘nchez, and a Games of 2012 london? ### Answer: SELECT medal FROM table_name_43 WHERE name = "fΓ©lix sΓ‘nchez" AND games = "2012 london"