question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the low bronze total for the team with 4 total and under 1 gold?
CREATE TABLE table_name_66 (bronze INTEGER, total VARCHAR, gold VARCHAR)
SELECT MIN(bronze) FROM table_name_66 WHERE total = 4 AND gold < 1
### Context: CREATE TABLE table_name_66 (bronze INTEGER, total VARCHAR, gold VARCHAR) ### Question: What is the low bronze total for the team with 4 total and under 1 gold? ### Answer: SELECT MIN(bronze) FROM table_name_66 WHERE total = 4 AND gold < 1
What is the average total for teams with over 3 bronzes and over 8 golds?
CREATE TABLE table_name_33 (total INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT AVG(total) FROM table_name_33 WHERE bronze > 3 AND gold > 8
### Context: CREATE TABLE table_name_33 (total INTEGER, bronze VARCHAR, gold VARCHAR) ### Question: What is the average total for teams with over 3 bronzes and over 8 golds? ### Answer: SELECT AVG(total) FROM table_name_33 WHERE bronze > 3 AND gold > 8
What is the low silver total associated with under 1 total?
CREATE TABLE table_name_99 (silver INTEGER, total INTEGER)
SELECT MIN(silver) FROM table_name_99 WHERE total < 1
### Context: CREATE TABLE table_name_99 (silver INTEGER, total INTEGER) ### Question: What is the low silver total associated with under 1 total? ### Answer: SELECT MIN(silver) FROM table_name_99 WHERE total < 1
What is the number of points associated with the highest position under 9 and a current position of 22?
CREATE TABLE table_name_92 (points VARCHAR, highest_position VARCHAR, position VARCHAR)
SELECT points FROM table_name_92 WHERE highest_position < 9 AND position = 22
### Context: CREATE TABLE table_name_92 (points VARCHAR, highest_position VARCHAR, position VARCHAR) ### Question: What is the number of points associated with the highest position under 9 and a current position of 22? ### Answer: SELECT points FROM table_name_92 WHERE highest_position < 9 AND position = 22
Performer 3 of paul merton, and a Performer 4 of sandi toksvig is which performer 1?
CREATE TABLE table_name_93 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR)
SELECT performer_1 FROM table_name_93 WHERE performer_3 = "paul merton" AND performer_4 = "sandi toksvig"
### Context: CREATE TABLE table_name_93 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR) ### Question: Performer 3 of paul merton, and a Performer 4 of sandi toksvig is which performer 1? ### Answer: SELECT performer_1 FROM table_name_93 WHERE performer_3 = "paul merton" AND performer_4 = "sandi toksvig"
Episode of 16 involves which performer 1?
CREATE TABLE table_name_64 (performer_1 VARCHAR, episode VARCHAR)
SELECT performer_1 FROM table_name_64 WHERE episode = 16
### Context: CREATE TABLE table_name_64 (performer_1 VARCHAR, episode VARCHAR) ### Question: Episode of 16 involves which performer 1? ### Answer: SELECT performer_1 FROM table_name_64 WHERE episode = 16
Performer 2 of compilation 1 had what performer 1?
CREATE TABLE table_name_55 (performer_1 VARCHAR, performer_2 VARCHAR)
SELECT performer_1 FROM table_name_55 WHERE performer_2 = "compilation 1"
### Context: CREATE TABLE table_name_55 (performer_1 VARCHAR, performer_2 VARCHAR) ### Question: Performer 2 of compilation 1 had what performer 1? ### Answer: SELECT performer_1 FROM table_name_55 WHERE performer_2 = "compilation 1"
Which Schwaben has an Oberbayern of fc ingolstadt 04 and a Mittelfranken of sv seligenporten
CREATE TABLE table_name_98 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR)
SELECT schwaben FROM table_name_98 WHERE oberbayern = "fc ingolstadt 04" AND mittelfranken = "sv seligenporten"
### Context: CREATE TABLE table_name_98 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR) ### Question: Which Schwaben has an Oberbayern of fc ingolstadt 04 and a Mittelfranken of sv seligenporten ### Answer: SELECT schwaben FROM table_name_98 WHERE oberbayern = "fc ingolstadt 04" AND mittelfranken = "sv seligenporten"
Which Schwaben has a Oberbayern of fc bayern munich ii and a Mittelfranken of 1. fc nuremberg ii?
CREATE TABLE table_name_15 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR)
SELECT schwaben FROM table_name_15 WHERE oberbayern = "fc bayern munich ii" AND mittelfranken = "1. fc nuremberg ii"
### Context: CREATE TABLE table_name_15 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR) ### Question: Which Schwaben has a Oberbayern of fc bayern munich ii and a Mittelfranken of 1. fc nuremberg ii? ### Answer: SELECT schwaben FROM table_name_15 WHERE oberbayern = "fc bayern munich ii" AND mittelfranken = "1. fc nuremberg ii"
Who was the incumbent for south carolina 3 district?
CREATE TABLE table_name_64 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_64 WHERE district = "south carolina 3"
### Context: CREATE TABLE table_name_64 (incumbent VARCHAR, district VARCHAR) ### Question: Who was the incumbent for south carolina 3 district? ### Answer: SELECT incumbent FROM table_name_64 WHERE district = "south carolina 3"
When was the incumbent from the south carolina 1 district first elected?
CREATE TABLE table_name_56 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_name_56 WHERE district = "south carolina 1"
### Context: CREATE TABLE table_name_56 (first_elected VARCHAR, district VARCHAR) ### Question: When was the incumbent from the south carolina 1 district first elected? ### Answer: SELECT first_elected FROM table_name_56 WHERE district = "south carolina 1"
Who was the incumbent that was first elected in 1892 and retired to run for the senate democratic hold?
CREATE TABLE table_name_96 (incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)
SELECT incumbent FROM table_name_96 WHERE first_elected = "1892" AND result = "retired to run for the senate democratic hold"
### Context: CREATE TABLE table_name_96 (incumbent VARCHAR, first_elected VARCHAR, result VARCHAR) ### Question: Who was the incumbent that was first elected in 1892 and retired to run for the senate democratic hold? ### Answer: SELECT incumbent FROM table_name_96 WHERE first_elected = "1892" AND result = "retired to run for the senate democratic hold"
Who was the incumbent that retired to run for the senate democratic hold?
CREATE TABLE table_name_82 (incumbent VARCHAR, result VARCHAR)
SELECT incumbent FROM table_name_82 WHERE result = "retired to run for the senate democratic hold"
### Context: CREATE TABLE table_name_82 (incumbent VARCHAR, result VARCHAR) ### Question: Who was the incumbent that retired to run for the senate democratic hold? ### Answer: SELECT incumbent FROM table_name_82 WHERE result = "retired to run for the senate democratic hold"
What was the result of W. Jasper Talbert who was first elected in 1892?
CREATE TABLE table_name_83 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_83 WHERE first_elected = "1892" AND incumbent = "w. jasper talbert"
### Context: CREATE TABLE table_name_83 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) ### Question: What was the result of W. Jasper Talbert who was first elected in 1892? ### Answer: SELECT result FROM table_name_83 WHERE first_elected = "1892" AND incumbent = "w. jasper talbert"
Which Nationality has a 2.24 of xo, and a 2.20 of xo?
CREATE TABLE table_name_35 (nationality VARCHAR)
SELECT nationality FROM table_name_35 WHERE 224 = "xo" AND 220 = "xo"
### Context: CREATE TABLE table_name_35 (nationality VARCHAR) ### Question: Which Nationality has a 2.24 of xo, and a 2.20 of xo? ### Answer: SELECT nationality FROM table_name_35 WHERE 224 = "xo" AND 220 = "xo"
Which Athlete has a 2.24 of xo, and a 2.20 of o, and a 2.15 of o?
CREATE TABLE table_name_8 (athlete VARCHAR)
SELECT athlete FROM table_name_8 WHERE 224 = "xo" AND 220 = "o" AND 215 = "o"
### Context: CREATE TABLE table_name_8 (athlete VARCHAR) ### Question: Which Athlete has a 2.24 of xo, and a 2.20 of o, and a 2.15 of o? ### Answer: SELECT athlete FROM table_name_8 WHERE 224 = "xo" AND 220 = "o" AND 215 = "o"
What is the earliest election with more than 7 candidates nominated, a percentage of the popular vote of 2.75%, and 0 seats won?
CREATE TABLE table_name_69 (election INTEGER, _number_of_seats_won VARCHAR, _number_of_candidates_nominated VARCHAR, _percentage_of_popular_vote VARCHAR)
SELECT MIN(election) FROM table_name_69 WHERE _number_of_candidates_nominated > 7 AND _percentage_of_popular_vote = "2.75%" AND _number_of_seats_won < 0
### Context: CREATE TABLE table_name_69 (election INTEGER, _number_of_seats_won VARCHAR, _number_of_candidates_nominated VARCHAR, _percentage_of_popular_vote VARCHAR) ### Question: What is the earliest election with more than 7 candidates nominated, a percentage of the popular vote of 2.75%, and 0 seats won? ### Answer: SELECT MIN(election) FROM table_name_69 WHERE _number_of_candidates_nominated > 7 AND _percentage_of_popular_vote = "2.75%" AND _number_of_seats_won < 0
How much Played has a Lost larger than 14, and Drawn of 8, and a Team of ipatinga?
CREATE TABLE table_name_22 (played INTEGER, team VARCHAR, lost VARCHAR, drawn VARCHAR)
SELECT SUM(played) FROM table_name_22 WHERE lost > 14 AND drawn = 8 AND team = "ipatinga"
### Context: CREATE TABLE table_name_22 (played INTEGER, team VARCHAR, lost VARCHAR, drawn VARCHAR) ### Question: How much Played has a Lost larger than 14, and Drawn of 8, and a Team of ipatinga? ### Answer: SELECT SUM(played) FROM table_name_22 WHERE lost > 14 AND drawn = 8 AND team = "ipatinga"
How many Drawn have a Difference of 3, and Points smaller than 52?
CREATE TABLE table_name_55 (drawn VARCHAR, difference VARCHAR, points VARCHAR)
SELECT COUNT(drawn) FROM table_name_55 WHERE difference = "3" AND points < 52
### Context: CREATE TABLE table_name_55 (drawn VARCHAR, difference VARCHAR, points VARCHAR) ### Question: How many Drawn have a Difference of 3, and Points smaller than 52? ### Answer: SELECT COUNT(drawn) FROM table_name_55 WHERE difference = "3" AND points < 52
Which Points is the highest one that has a Position smaller than 4, and a Team of sΓ£o paulo, and Drawn larger than 12?
CREATE TABLE table_name_80 (points INTEGER, drawn VARCHAR, position VARCHAR, team VARCHAR)
SELECT MAX(points) FROM table_name_80 WHERE position < 4 AND team = "sΓ£o paulo" AND drawn > 12
### Context: CREATE TABLE table_name_80 (points INTEGER, drawn VARCHAR, position VARCHAR, team VARCHAR) ### Question: Which Points is the highest one that has a Position smaller than 4, and a Team of sΓ£o paulo, and Drawn larger than 12? ### Answer: SELECT MAX(points) FROM table_name_80 WHERE position < 4 AND team = "sΓ£o paulo" AND drawn > 12
How many Lost have Points larger than 40, and a Position of 11, and a Played smaller than 38?
CREATE TABLE table_name_18 (lost INTEGER, played VARCHAR, points VARCHAR, position VARCHAR)
SELECT SUM(lost) FROM table_name_18 WHERE points > 40 AND position = 11 AND played < 38
### Context: CREATE TABLE table_name_18 (lost INTEGER, played VARCHAR, points VARCHAR, position VARCHAR) ### Question: How many Lost have Points larger than 40, and a Position of 11, and a Played smaller than 38? ### Answer: SELECT SUM(lost) FROM table_name_18 WHERE points > 40 AND position = 11 AND played < 38
What is the lowest number of games loss with a Points difference of 40 - 17, and over 6 games?
CREATE TABLE table_name_3 (lost INTEGER, points_difference VARCHAR, games VARCHAR)
SELECT MIN(lost) FROM table_name_3 WHERE points_difference = "40 - 17" AND games > 6
### Context: CREATE TABLE table_name_3 (lost INTEGER, points_difference VARCHAR, games VARCHAR) ### Question: What is the lowest number of games loss with a Points difference of 40 - 17, and over 6 games? ### Answer: SELECT MIN(lost) FROM table_name_3 WHERE points_difference = "40 - 17" AND games > 6
How many games lost for teams with over 6 games?
CREATE TABLE table_name_46 (lost INTEGER, games INTEGER)
SELECT MIN(lost) FROM table_name_46 WHERE games > 6
### Context: CREATE TABLE table_name_46 (lost INTEGER, games INTEGER) ### Question: How many games lost for teams with over 6 games? ### Answer: SELECT MIN(lost) FROM table_name_46 WHERE games > 6
What are the highest number of games drawn for games numbered under 6?
CREATE TABLE table_name_80 (drawn INTEGER, games INTEGER)
SELECT MAX(drawn) FROM table_name_80 WHERE games < 6
### Context: CREATE TABLE table_name_80 (drawn INTEGER, games INTEGER) ### Question: What are the highest number of games drawn for games numbered under 6? ### Answer: SELECT MAX(drawn) FROM table_name_80 WHERE games < 6
How many games drawn with a Points difference of 31 - 33, and under 4 games lost?
CREATE TABLE table_name_41 (drawn INTEGER, points_difference VARCHAR, lost VARCHAR)
SELECT SUM(drawn) FROM table_name_41 WHERE points_difference = "31 - 33" AND lost < 4
### Context: CREATE TABLE table_name_41 (drawn INTEGER, points_difference VARCHAR, lost VARCHAR) ### Question: How many games drawn with a Points difference of 31 - 33, and under 4 games lost? ### Answer: SELECT SUM(drawn) FROM table_name_41 WHERE points_difference = "31 - 33" AND lost < 4
Which Outcome has a Surface of hard (i), and a Date of 28 january 2003?
CREATE TABLE table_name_78 (outcome VARCHAR, surface VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_78 WHERE surface = "hard (i)" AND date = "28 january 2003"
### Context: CREATE TABLE table_name_78 (outcome VARCHAR, surface VARCHAR, date VARCHAR) ### Question: Which Outcome has a Surface of hard (i), and a Date of 28 january 2003? ### Answer: SELECT outcome FROM table_name_78 WHERE surface = "hard (i)" AND date = "28 january 2003"
Which Tournament has an Outcome of winner, and a Surface of hard (i)?
CREATE TABLE table_name_4 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT tournament FROM table_name_4 WHERE outcome = "winner" AND surface = "hard (i)"
### Context: CREATE TABLE table_name_4 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR) ### Question: Which Tournament has an Outcome of winner, and a Surface of hard (i)? ### Answer: SELECT tournament FROM table_name_4 WHERE outcome = "winner" AND surface = "hard (i)"
Which Date has a Score of 6–1, 6–2?
CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_76 WHERE score = "6–1, 6–2"
### Context: CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR) ### Question: Which Date has a Score of 6–1, 6–2? ### Answer: SELECT date FROM table_name_76 WHERE score = "6–1, 6–2"
Which Surface has an Opponent of oleksandra kravets?
CREATE TABLE table_name_99 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_99 WHERE opponent = "oleksandra kravets"
### Context: CREATE TABLE table_name_99 (surface VARCHAR, opponent VARCHAR) ### Question: Which Surface has an Opponent of oleksandra kravets? ### Answer: SELECT surface FROM table_name_99 WHERE opponent = "oleksandra kravets"
Which Surface has a Date of 3 october 2003?
CREATE TABLE table_name_60 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_60 WHERE date = "3 october 2003"
### Context: CREATE TABLE table_name_60 (surface VARCHAR, date VARCHAR) ### Question: Which Surface has a Date of 3 october 2003? ### Answer: SELECT surface FROM table_name_60 WHERE date = "3 october 2003"
Which Surface has a Score of 6–4, 6–2?
CREATE TABLE table_name_65 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_65 WHERE score = "6–4, 6–2"
### Context: CREATE TABLE table_name_65 (surface VARCHAR, score VARCHAR) ### Question: Which Surface has a Score of 6–4, 6–2? ### Answer: SELECT surface FROM table_name_65 WHERE score = "6–4, 6–2"
How many ranks have a Code (IATA/ICAO) of ord/kord?
CREATE TABLE table_name_29 (rank VARCHAR, code__iata_icao_ VARCHAR)
SELECT COUNT(rank) FROM table_name_29 WHERE code__iata_icao_ = "ord/kord"
### Context: CREATE TABLE table_name_29 (rank VARCHAR, code__iata_icao_ VARCHAR) ### Question: How many ranks have a Code (IATA/ICAO) of ord/kord? ### Answer: SELECT COUNT(rank) FROM table_name_29 WHERE code__iata_icao_ = "ord/kord"
Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport?
CREATE TABLE table_name_66 (total_cargo__metric_tonnes_ INTEGER, rank VARCHAR, airport VARCHAR)
SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_66 WHERE rank < 4 AND airport = "shanghai pudong international airport"
### Context: CREATE TABLE table_name_66 (total_cargo__metric_tonnes_ INTEGER, rank VARCHAR, airport VARCHAR) ### Question: Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport? ### Answer: SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_66 WHERE rank < 4 AND airport = "shanghai pudong international airport"
What is the Per capita income where Median family income is $72,288?
CREATE TABLE table_name_7 (per_capita_income VARCHAR, median_family_income VARCHAR)
SELECT per_capita_income FROM table_name_7 WHERE median_family_income = "$72,288"
### Context: CREATE TABLE table_name_7 (per_capita_income VARCHAR, median_family_income VARCHAR) ### Question: What is the Per capita income where Median family income is $72,288? ### Answer: SELECT per_capita_income FROM table_name_7 WHERE median_family_income = "$72,288"
What is the average grid for the +2.2 secs time/retired?
CREATE TABLE table_name_44 (grid INTEGER, time_retired VARCHAR)
SELECT AVG(grid) FROM table_name_44 WHERE time_retired = "+2.2 secs"
### Context: CREATE TABLE table_name_44 (grid INTEGER, time_retired VARCHAR) ### Question: What is the average grid for the +2.2 secs time/retired? ### Answer: SELECT AVG(grid) FROM table_name_44 WHERE time_retired = "+2.2 secs"
Which Facility ID has a City of license of springfield, ma, and a ERP / Power W smaller than 230?
CREATE TABLE table_name_15 (facility_id INTEGER, city_of_license VARCHAR, erp___power_w VARCHAR)
SELECT MAX(facility_id) FROM table_name_15 WHERE city_of_license = "springfield, ma" AND erp___power_w < 230
### Context: CREATE TABLE table_name_15 (facility_id INTEGER, city_of_license VARCHAR, erp___power_w VARCHAR) ### Question: Which Facility ID has a City of license of springfield, ma, and a ERP / Power W smaller than 230? ### Answer: SELECT MAX(facility_id) FROM table_name_15 WHERE city_of_license = "springfield, ma" AND erp___power_w < 230
Which Frequency has a Facility ID of 13598?
CREATE TABLE table_name_33 (frequency VARCHAR, facility_id VARCHAR)
SELECT frequency FROM table_name_33 WHERE facility_id = 13598
### Context: CREATE TABLE table_name_33 (frequency VARCHAR, facility_id VARCHAR) ### Question: Which Frequency has a Facility ID of 13598? ### Answer: SELECT frequency FROM table_name_33 WHERE facility_id = 13598
WHich Facility ID has a Call sign of wnpr?
CREATE TABLE table_name_64 (facility_id INTEGER, call_sign VARCHAR)
SELECT AVG(facility_id) FROM table_name_64 WHERE call_sign = "wnpr"
### Context: CREATE TABLE table_name_64 (facility_id INTEGER, call_sign VARCHAR) ### Question: WHich Facility ID has a Call sign of wnpr? ### Answer: SELECT AVG(facility_id) FROM table_name_64 WHERE call_sign = "wnpr"
Which Frequency has a Facility ID of 13598?
CREATE TABLE table_name_71 (frequency VARCHAR, facility_id VARCHAR)
SELECT frequency FROM table_name_71 WHERE facility_id = 13598
### Context: CREATE TABLE table_name_71 (frequency VARCHAR, facility_id VARCHAR) ### Question: Which Frequency has a Facility ID of 13598? ### Answer: SELECT frequency FROM table_name_71 WHERE facility_id = 13598
What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points?
CREATE TABLE table_name_81 (name VARCHAR, points VARCHAR)
SELECT COUNT(1 AS st__m_) FROM table_name_81 WHERE name = "martin schmitt" AND points < 235.7
### Context: CREATE TABLE table_name_81 (name VARCHAR, points VARCHAR) ### Question: What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points? ### Answer: SELECT COUNT(1 AS st__m_) FROM table_name_81 WHERE name = "martin schmitt" AND points < 235.7
What is the total number of attendance for games where buffalo was the home team?
CREATE TABLE table_name_83 (attendance VARCHAR, home VARCHAR)
SELECT COUNT(attendance) FROM table_name_83 WHERE home = "buffalo"
### Context: CREATE TABLE table_name_83 (attendance VARCHAR, home VARCHAR) ### Question: What is the total number of attendance for games where buffalo was the home team? ### Answer: SELECT COUNT(attendance) FROM table_name_83 WHERE home = "buffalo"
What was the score of the game on April 28 where Buffalo were the visiting team?
CREATE TABLE table_name_64 (score VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT score FROM table_name_64 WHERE visitor = "buffalo" AND date = "april 28"
### Context: CREATE TABLE table_name_64 (score VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What was the score of the game on April 28 where Buffalo were the visiting team? ### Answer: SELECT score FROM table_name_64 WHERE visitor = "buffalo" AND date = "april 28"
What date was the game where the visiting team was philadelphia?
CREATE TABLE table_name_10 (date VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_10 WHERE visitor = "philadelphia"
### Context: CREATE TABLE table_name_10 (date VARCHAR, visitor VARCHAR) ### Question: What date was the game where the visiting team was philadelphia? ### Answer: SELECT date FROM table_name_10 WHERE visitor = "philadelphia"
Who got the gold in seoul before 2002?
CREATE TABLE table_name_53 (gold VARCHAR, year VARCHAR, location VARCHAR)
SELECT gold FROM table_name_53 WHERE year < 2002 AND location = "seoul"
### Context: CREATE TABLE table_name_53 (gold VARCHAR, year VARCHAR, location VARCHAR) ### Question: Who got the gold in seoul before 2002? ### Answer: SELECT gold FROM table_name_53 WHERE year < 2002 AND location = "seoul"
Where did sohn bong-gak win silver?
CREATE TABLE table_name_14 (location VARCHAR, silver VARCHAR)
SELECT location FROM table_name_14 WHERE silver = "sohn bong-gak"
### Context: CREATE TABLE table_name_14 (location VARCHAR, silver VARCHAR) ### Question: Where did sohn bong-gak win silver? ### Answer: SELECT location FROM table_name_14 WHERE silver = "sohn bong-gak"
Who won the bronze when jin kanno won the gold?
CREATE TABLE table_name_99 (bronze VARCHAR, gold VARCHAR)
SELECT bronze FROM table_name_99 WHERE gold = "jin kanno"
### Context: CREATE TABLE table_name_99 (bronze VARCHAR, gold VARCHAR) ### Question: Who won the bronze when jin kanno won the gold? ### Answer: SELECT bronze FROM table_name_99 WHERE gold = "jin kanno"
Which Score has an Outcome of runner-up, and a Tournament of johannesburg?
CREATE TABLE table_name_69 (score VARCHAR, outcome VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_69 WHERE outcome = "runner-up" AND tournament = "johannesburg"
### Context: CREATE TABLE table_name_69 (score VARCHAR, outcome VARCHAR, tournament VARCHAR) ### Question: Which Score has an Outcome of runner-up, and a Tournament of johannesburg? ### Answer: SELECT score FROM table_name_69 WHERE outcome = "runner-up" AND tournament = "johannesburg"
Which Surface has an Opponent of kerry melville reid, and a Score of 6–3, 2–6, 3–6?
CREATE TABLE table_name_53 (surface VARCHAR, opponent VARCHAR, score VARCHAR)
SELECT surface FROM table_name_53 WHERE opponent = "kerry melville reid" AND score = "6–3, 2–6, 3–6"
### Context: CREATE TABLE table_name_53 (surface VARCHAR, opponent VARCHAR, score VARCHAR) ### Question: Which Surface has an Opponent of kerry melville reid, and a Score of 6–3, 2–6, 3–6? ### Answer: SELECT surface FROM table_name_53 WHERE opponent = "kerry melville reid" AND score = "6–3, 2–6, 3–6"
Which Outcome has an Opponent of wendy turnbull, and a Surface of grass?
CREATE TABLE table_name_54 (outcome VARCHAR, opponent VARCHAR, surface VARCHAR)
SELECT outcome FROM table_name_54 WHERE opponent = "wendy turnbull" AND surface = "grass"
### Context: CREATE TABLE table_name_54 (outcome VARCHAR, opponent VARCHAR, surface VARCHAR) ### Question: Which Outcome has an Opponent of wendy turnbull, and a Surface of grass? ### Answer: SELECT outcome FROM table_name_54 WHERE opponent = "wendy turnbull" AND surface = "grass"
Which Tournament has a Date of 22 january 1979?
CREATE TABLE table_name_6 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_6 WHERE date = "22 january 1979"
### Context: CREATE TABLE table_name_6 (tournament VARCHAR, date VARCHAR) ### Question: Which Tournament has a Date of 22 january 1979? ### Answer: SELECT tournament FROM table_name_6 WHERE date = "22 january 1979"
Which Outcome has a Score of 6–4, 2–6, 6–3?
CREATE TABLE table_name_86 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_86 WHERE score = "6–4, 2–6, 6–3"
### Context: CREATE TABLE table_name_86 (outcome VARCHAR, score VARCHAR) ### Question: Which Outcome has a Score of 6–4, 2–6, 6–3? ### Answer: SELECT outcome FROM table_name_86 WHERE score = "6–4, 2–6, 6–3"
Which nation has total medals under 63, less than 2 silver, more than 2 bronze, and a rank of 8?
CREATE TABLE table_name_69 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)
SELECT nation FROM table_name_69 WHERE total < 63 AND silver < 2 AND bronze > 2 AND rank = "8"
### Context: CREATE TABLE table_name_69 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR) ### Question: Which nation has total medals under 63, less than 2 silver, more than 2 bronze, and a rank of 8? ### Answer: SELECT nation FROM table_name_69 WHERE total < 63 AND silver < 2 AND bronze > 2 AND rank = "8"
How many golds have bronze values of 4 and silver values over 2?
CREATE TABLE table_name_65 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT COUNT(gold) FROM table_name_65 WHERE bronze = 4 AND silver > 2
### Context: CREATE TABLE table_name_65 (gold VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: How many golds have bronze values of 4 and silver values over 2? ### Answer: SELECT COUNT(gold) FROM table_name_65 WHERE bronze = 4 AND silver > 2
What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3?
CREATE TABLE table_name_52 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT SUM(silver) FROM table_name_52 WHERE bronze < 4 AND rank = "3" AND gold > 2
### Context: CREATE TABLE table_name_52 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR) ### Question: What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3? ### Answer: SELECT SUM(silver) FROM table_name_52 WHERE bronze < 4 AND rank = "3" AND gold > 2
What is the sum of gold values that have bronze values over 0 and totals under 2?
CREATE TABLE table_name_34 (gold INTEGER, bronze VARCHAR, total VARCHAR)
SELECT SUM(gold) FROM table_name_34 WHERE bronze > 0 AND total < 2
### Context: CREATE TABLE table_name_34 (gold INTEGER, bronze VARCHAR, total VARCHAR) ### Question: What is the sum of gold values that have bronze values over 0 and totals under 2? ### Answer: SELECT SUM(gold) FROM table_name_34 WHERE bronze > 0 AND total < 2
What is the smallest gold value that has a total over 15 and bronze values under 31?
CREATE TABLE table_name_51 (gold INTEGER, total VARCHAR, bronze VARCHAR)
SELECT MIN(gold) FROM table_name_51 WHERE total > 15 AND bronze < 31
### Context: CREATE TABLE table_name_51 (gold INTEGER, total VARCHAR, bronze VARCHAR) ### Question: What is the smallest gold value that has a total over 15 and bronze values under 31? ### Answer: SELECT MIN(gold) FROM table_name_51 WHERE total > 15 AND bronze < 31
What is the Equatorial diameter of the Body: Mars?
CREATE TABLE table_name_24 (equatorial_diameter VARCHAR, body VARCHAR)
SELECT equatorial_diameter FROM table_name_24 WHERE body = "mars"
### Context: CREATE TABLE table_name_24 (equatorial_diameter VARCHAR, body VARCHAR) ### Question: What is the Equatorial diameter of the Body: Mars? ### Answer: SELECT equatorial_diameter FROM table_name_24 WHERE body = "mars"
What is the Equatorial diameter of the Body: ceres?
CREATE TABLE table_name_33 (equatorial_diameter VARCHAR, body VARCHAR)
SELECT equatorial_diameter FROM table_name_33 WHERE body = "ceres"
### Context: CREATE TABLE table_name_33 (equatorial_diameter VARCHAR, body VARCHAR) ### Question: What is the Equatorial diameter of the Body: ceres? ### Answer: SELECT equatorial_diameter FROM table_name_33 WHERE body = "ceres"
What is the Flattening ratio associated with the Equatorial diameter of 49,528km?
CREATE TABLE table_name_79 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)
SELECT flattening_ratio FROM table_name_79 WHERE equatorial_diameter = "49,528km"
### Context: CREATE TABLE table_name_79 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR) ### Question: What is the Flattening ratio associated with the Equatorial diameter of 49,528km? ### Answer: SELECT flattening_ratio FROM table_name_79 WHERE equatorial_diameter = "49,528km"
What is the Equatorial bulge of the Body: Earth?
CREATE TABLE table_name_74 (equatorial_bulge VARCHAR, body VARCHAR)
SELECT equatorial_bulge FROM table_name_74 WHERE body = "earth"
### Context: CREATE TABLE table_name_74 (equatorial_bulge VARCHAR, body VARCHAR) ### Question: What is the Equatorial bulge of the Body: Earth? ### Answer: SELECT equatorial_bulge FROM table_name_74 WHERE body = "earth"
What is the Flattening ratio associated with the Equatorial diameter of 120,536km?
CREATE TABLE table_name_75 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)
SELECT flattening_ratio FROM table_name_75 WHERE equatorial_diameter = "120,536km"
### Context: CREATE TABLE table_name_75 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR) ### Question: What is the Flattening ratio associated with the Equatorial diameter of 120,536km? ### Answer: SELECT flattening_ratio FROM table_name_75 WHERE equatorial_diameter = "120,536km"
What is the Flattening ratio associated with the Equatorial diameter of 12,756.28km?
CREATE TABLE table_name_27 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)
SELECT flattening_ratio FROM table_name_27 WHERE equatorial_diameter = "12,756.28km"
### Context: CREATE TABLE table_name_27 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR) ### Question: What is the Flattening ratio associated with the Equatorial diameter of 12,756.28km? ### Answer: SELECT flattening_ratio FROM table_name_27 WHERE equatorial_diameter = "12,756.28km"
What is the average Yards with an average of less than 4 and the long is 12 with less than 29 attempts?
CREATE TABLE table_name_53 (yards INTEGER, attempts VARCHAR, average VARCHAR, long VARCHAR)
SELECT AVG(yards) FROM table_name_53 WHERE average < 4 AND long = 12 AND attempts < 29
### Context: CREATE TABLE table_name_53 (yards INTEGER, attempts VARCHAR, average VARCHAR, long VARCHAR) ### Question: What is the average Yards with an average of less than 4 and the long is 12 with less than 29 attempts? ### Answer: SELECT AVG(yards) FROM table_name_53 WHERE average < 4 AND long = 12 AND attempts < 29
What is the least amount of yards when the average is less than 2.6?
CREATE TABLE table_name_65 (yards INTEGER, average INTEGER)
SELECT MIN(yards) FROM table_name_65 WHERE average < 2.6
### Context: CREATE TABLE table_name_65 (yards INTEGER, average INTEGER) ### Question: What is the least amount of yards when the average is less than 2.6? ### Answer: SELECT MIN(yards) FROM table_name_65 WHERE average < 2.6
What is the lease amount of touchdowns with 1318 yards?
CREATE TABLE table_name_41 (touchdowns INTEGER, yards VARCHAR)
SELECT MIN(touchdowns) FROM table_name_41 WHERE yards = 1318
### Context: CREATE TABLE table_name_41 (touchdowns INTEGER, yards VARCHAR) ### Question: What is the lease amount of touchdowns with 1318 yards? ### Answer: SELECT MIN(touchdowns) FROM table_name_41 WHERE yards = 1318
What is the number of touchdowns with the average is less than 2.6?
CREATE TABLE table_name_80 (touchdowns VARCHAR, average INTEGER)
SELECT COUNT(touchdowns) FROM table_name_80 WHERE average < 2.6
### Context: CREATE TABLE table_name_80 (touchdowns VARCHAR, average INTEGER) ### Question: What is the number of touchdowns with the average is less than 2.6? ### Answer: SELECT COUNT(touchdowns) FROM table_name_80 WHERE average < 2.6
What is the total number for long when there are 19 attempts?
CREATE TABLE table_name_52 (long VARCHAR, attempts VARCHAR)
SELECT COUNT(long) FROM table_name_52 WHERE attempts = 19
### Context: CREATE TABLE table_name_52 (long VARCHAR, attempts VARCHAR) ### Question: What is the total number for long when there are 19 attempts? ### Answer: SELECT COUNT(long) FROM table_name_52 WHERE attempts = 19
What was the margin of victory for Olazabal in the German Masters?
CREATE TABLE table_name_78 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_78 WHERE tournament = "german masters"
### Context: CREATE TABLE table_name_78 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What was the margin of victory for Olazabal in the German Masters? ### Answer: SELECT margin_of_victory FROM table_name_78 WHERE tournament = "german masters"
What was Olazabal's winning score in the event in which Phillip Price finished 2nd?
CREATE TABLE table_name_90 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_90 WHERE runner_s__up = "phillip price"
### Context: CREATE TABLE table_name_90 (winning_score VARCHAR, runner_s__up VARCHAR) ### Question: What was Olazabal's winning score in the event in which Phillip Price finished 2nd? ### Answer: SELECT winning_score FROM table_name_90 WHERE runner_s__up = "phillip price"
What was Olazabal's winning score in the German Masters?
CREATE TABLE table_name_62 (winning_score VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_name_62 WHERE tournament = "german masters"
### Context: CREATE TABLE table_name_62 (winning_score VARCHAR, tournament VARCHAR) ### Question: What was Olazabal's winning score in the German Masters? ### Answer: SELECT winning_score FROM table_name_62 WHERE tournament = "german masters"
What was Olazabal's margin of victory int he Ebel European Masters Swiss Open?
CREATE TABLE table_name_6 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_6 WHERE tournament = "ebel european masters swiss open"
### Context: CREATE TABLE table_name_6 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What was Olazabal's margin of victory int he Ebel European Masters Swiss Open? ### Answer: SELECT margin_of_victory FROM table_name_6 WHERE tournament = "ebel european masters swiss open"
Which Series Ep has a Netflix of s08e18?
CREATE TABLE table_name_83 (series_ep VARCHAR, netflix VARCHAR)
SELECT series_ep FROM table_name_83 WHERE netflix = "s08e18"
### Context: CREATE TABLE table_name_83 (series_ep VARCHAR, netflix VARCHAR) ### Question: Which Series Ep has a Netflix of s08e18? ### Answer: SELECT series_ep FROM table_name_83 WHERE netflix = "s08e18"
Which Segment B has a Segment D of stone wool insulation?
CREATE TABLE table_name_92 (segment_b VARCHAR, segment_d VARCHAR)
SELECT segment_b FROM table_name_92 WHERE segment_d = "stone wool insulation"
### Context: CREATE TABLE table_name_92 (segment_b VARCHAR, segment_d VARCHAR) ### Question: Which Segment B has a Segment D of stone wool insulation? ### Answer: SELECT segment_b FROM table_name_92 WHERE segment_d = "stone wool insulation"
Which Segment A has a Segment C of poster restoration?
CREATE TABLE table_name_70 (segment_a VARCHAR, segment_c VARCHAR)
SELECT segment_a FROM table_name_70 WHERE segment_c = "poster restoration"
### Context: CREATE TABLE table_name_70 (segment_a VARCHAR, segment_c VARCHAR) ### Question: Which Segment A has a Segment C of poster restoration? ### Answer: SELECT segment_a FROM table_name_70 WHERE segment_c = "poster restoration"
Which Segment C has a Segment B of fish food?
CREATE TABLE table_name_54 (segment_c VARCHAR, segment_b VARCHAR)
SELECT segment_c FROM table_name_54 WHERE segment_b = "fish food"
### Context: CREATE TABLE table_name_54 (segment_c VARCHAR, segment_b VARCHAR) ### Question: Which Segment C has a Segment B of fish food? ### Answer: SELECT segment_c FROM table_name_54 WHERE segment_b = "fish food"
Which Segment C has a Netflix of s08e16?
CREATE TABLE table_name_43 (segment_c VARCHAR, netflix VARCHAR)
SELECT segment_c FROM table_name_43 WHERE netflix = "s08e16"
### Context: CREATE TABLE table_name_43 (segment_c VARCHAR, netflix VARCHAR) ### Question: Which Segment C has a Netflix of s08e16? ### Answer: SELECT segment_c FROM table_name_43 WHERE netflix = "s08e16"
What was the name of the competition that had Peterborough Phantoms as an opponent and a date of 2?
CREATE TABLE table_name_26 (competition VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT competition FROM table_name_26 WHERE opponent = "peterborough phantoms" AND date = 2
### Context: CREATE TABLE table_name_26 (competition VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: What was the name of the competition that had Peterborough Phantoms as an opponent and a date of 2? ### Answer: SELECT competition FROM table_name_26 WHERE opponent = "peterborough phantoms" AND date = 2
What is the Tally in Kerry County?
CREATE TABLE table_name_36 (tally VARCHAR, county VARCHAR)
SELECT tally FROM table_name_36 WHERE county = "kerry"
### Context: CREATE TABLE table_name_36 (tally VARCHAR, county VARCHAR) ### Question: What is the Tally in Kerry County? ### Answer: SELECT tally FROM table_name_36 WHERE county = "kerry"
With a Total of less than 29, what is Ian Ryan's most Matches?
CREATE TABLE table_name_31 (matches INTEGER, player VARCHAR, total VARCHAR)
SELECT MAX(matches) FROM table_name_31 WHERE player = "ian ryan" AND total < 29
### Context: CREATE TABLE table_name_31 (matches INTEGER, player VARCHAR, total VARCHAR) ### Question: With a Total of less than 29, what is Ian Ryan's most Matches? ### Answer: SELECT MAX(matches) FROM table_name_31 WHERE player = "ian ryan" AND total < 29
Which LEMA/SUBLEMA that has Votes smaller than 218656, and a Ch of Deputies of 0?
CREATE TABLE table_name_22 (lema_sublema VARCHAR, votes VARCHAR, ch_of_deputies VARCHAR)
SELECT lema_sublema FROM table_name_22 WHERE votes < 218656 AND ch_of_deputies = "0"
### Context: CREATE TABLE table_name_22 (lema_sublema VARCHAR, votes VARCHAR, ch_of_deputies VARCHAR) ### Question: Which LEMA/SUBLEMA that has Votes smaller than 218656, and a Ch of Deputies of 0? ### Answer: SELECT lema_sublema FROM table_name_22 WHERE votes < 218656 AND ch_of_deputies = "0"
Which LEMA/SUBLEMA has a Ch of Senators of 2?
CREATE TABLE table_name_4 (lema_sublema VARCHAR, ch_of_senators VARCHAR)
SELECT lema_sublema FROM table_name_4 WHERE ch_of_senators = "2"
### Context: CREATE TABLE table_name_4 (lema_sublema VARCHAR, ch_of_senators VARCHAR) ### Question: Which LEMA/SUBLEMA has a Ch of Senators of 2? ### Answer: SELECT lema_sublema FROM table_name_4 WHERE ch_of_senators = "2"
what tornament had the scores 6–7, 6–2, 6–4?
CREATE TABLE table_name_22 (tournament VARCHAR, score_in_the_final VARCHAR)
SELECT tournament FROM table_name_22 WHERE score_in_the_final = "6–7, 6–2, 6–4"
### Context: CREATE TABLE table_name_22 (tournament VARCHAR, score_in_the_final VARCHAR) ### Question: what tornament had the scores 6–7, 6–2, 6–4? ### Answer: SELECT tournament FROM table_name_22 WHERE score_in_the_final = "6–7, 6–2, 6–4"
what partner made the scores 6–4, 6–1?
CREATE TABLE table_name_19 (partner VARCHAR, score_in_the_final VARCHAR)
SELECT partner FROM table_name_19 WHERE score_in_the_final = "6–4, 6–1"
### Context: CREATE TABLE table_name_19 (partner VARCHAR, score_in_the_final VARCHAR) ### Question: what partner made the scores 6–4, 6–1? ### Answer: SELECT partner FROM table_name_19 WHERE score_in_the_final = "6–4, 6–1"
What year had 6.62 m in the notes?
CREATE TABLE table_name_60 (year VARCHAR, notes VARCHAR)
SELECT year FROM table_name_60 WHERE notes = "6.62 m"
### Context: CREATE TABLE table_name_60 (year VARCHAR, notes VARCHAR) ### Question: What year had 6.62 m in the notes? ### Answer: SELECT year FROM table_name_60 WHERE notes = "6.62 m"
Which competition in Budapest, Hungary gave a result of 8th?
CREATE TABLE table_name_1 (competition VARCHAR, position VARCHAR, venue VARCHAR)
SELECT competition FROM table_name_1 WHERE position = "8th" AND venue = "budapest, hungary"
### Context: CREATE TABLE table_name_1 (competition VARCHAR, position VARCHAR, venue VARCHAR) ### Question: Which competition in Budapest, Hungary gave a result of 8th? ### Answer: SELECT competition FROM table_name_1 WHERE position = "8th" AND venue = "budapest, hungary"
Which year did the World indoor championships gave a position of 3rd?
CREATE TABLE table_name_12 (year INTEGER, competition VARCHAR, position VARCHAR)
SELECT SUM(year) FROM table_name_12 WHERE competition = "world indoor championships" AND position = "3rd"
### Context: CREATE TABLE table_name_12 (year INTEGER, competition VARCHAR, position VARCHAR) ### Question: Which year did the World indoor championships gave a position of 3rd? ### Answer: SELECT SUM(year) FROM table_name_12 WHERE competition = "world indoor championships" AND position = "3rd"
What were the notes in Toronto, Canada?
CREATE TABLE table_name_32 (notes VARCHAR, venue VARCHAR)
SELECT notes FROM table_name_32 WHERE venue = "toronto, canada"
### Context: CREATE TABLE table_name_32 (notes VARCHAR, venue VARCHAR) ### Question: What were the notes in Toronto, Canada? ### Answer: SELECT notes FROM table_name_32 WHERE venue = "toronto, canada"
Name the most points for class of 125cc and team of mv agusta with year more than 1957
CREATE TABLE table_name_65 (points INTEGER, year VARCHAR, class VARCHAR, team VARCHAR)
SELECT MAX(points) FROM table_name_65 WHERE class = "125cc" AND team = "mv agusta" AND year > 1957
### Context: CREATE TABLE table_name_65 (points INTEGER, year VARCHAR, class VARCHAR, team VARCHAR) ### Question: Name the most points for class of 125cc and team of mv agusta with year more than 1957 ### Answer: SELECT MAX(points) FROM table_name_65 WHERE class = "125cc" AND team = "mv agusta" AND year > 1957
Which ZX Spectrum has a Year larger than 1984, and a Genre of arcade/strategy?
CREATE TABLE table_name_92 (zx_spectrum VARCHAR, year VARCHAR, genre VARCHAR)
SELECT zx_spectrum FROM table_name_92 WHERE year > 1984 AND genre = "arcade/strategy"
### Context: CREATE TABLE table_name_92 (zx_spectrum VARCHAR, year VARCHAR, genre VARCHAR) ### Question: Which ZX Spectrum has a Year larger than 1984, and a Genre of arcade/strategy? ### Answer: SELECT zx_spectrum FROM table_name_92 WHERE year > 1984 AND genre = "arcade/strategy"
How many years have a Title of kriegspiel?
CREATE TABLE table_name_16 (year VARCHAR, title VARCHAR)
SELECT COUNT(year) FROM table_name_16 WHERE title = "kriegspiel"
### Context: CREATE TABLE table_name_16 (year VARCHAR, title VARCHAR) ### Question: How many years have a Title of kriegspiel? ### Answer: SELECT COUNT(year) FROM table_name_16 WHERE title = "kriegspiel"
Which ZX Spectrum has a C=64 of c64, and a Title of ankh?
CREATE TABLE table_name_7 (zx_spectrum VARCHAR, c64 VARCHAR, title VARCHAR, c VARCHAR)
SELECT zx_spectrum FROM table_name_7 WHERE c = 64 = c64 AND title = "ankh"
### Context: CREATE TABLE table_name_7 (zx_spectrum VARCHAR, c64 VARCHAR, title VARCHAR, c VARCHAR) ### Question: Which ZX Spectrum has a C=64 of c64, and a Title of ankh? ### Answer: SELECT zx_spectrum FROM table_name_7 WHERE c = 64 = c64 AND title = "ankh"
Which Title has Others of amstrad cpc, and a Genre of arcade?
CREATE TABLE table_name_22 (title VARCHAR, others VARCHAR, genre VARCHAR)
SELECT title FROM table_name_22 WHERE others = "amstrad cpc" AND genre = "arcade"
### Context: CREATE TABLE table_name_22 (title VARCHAR, others VARCHAR, genre VARCHAR) ### Question: Which Title has Others of amstrad cpc, and a Genre of arcade? ### Answer: SELECT title FROM table_name_22 WHERE others = "amstrad cpc" AND genre = "arcade"
What was the result when the attendance was 12,000?
CREATE TABLE table_name_77 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_77 WHERE attendance = "12,000"
### Context: CREATE TABLE table_name_77 (result VARCHAR, attendance VARCHAR) ### Question: What was the result when the attendance was 12,000? ### Answer: SELECT result FROM table_name_77 WHERE attendance = "12,000"
What was the attendance for weeks prior to 5 when there was no game scheduled?
CREATE TABLE table_name_21 (attendance VARCHAR, week VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_21 WHERE week < 5 AND date = "no game scheduled"
### Context: CREATE TABLE table_name_21 (attendance VARCHAR, week VARCHAR, date VARCHAR) ### Question: What was the attendance for weeks prior to 5 when there was no game scheduled? ### Answer: SELECT attendance FROM table_name_21 WHERE week < 5 AND date = "no game scheduled"
What was the attendance number for the venue of Lakeside Park?
CREATE TABLE table_name_37 (attendance VARCHAR, venue VARCHAR)
SELECT attendance FROM table_name_37 WHERE venue = "lakeside park"
### Context: CREATE TABLE table_name_37 (attendance VARCHAR, venue VARCHAR) ### Question: What was the attendance number for the venue of Lakeside Park? ### Answer: SELECT attendance FROM table_name_37 WHERE venue = "lakeside park"
What is the largest week number for the venue of League Park for the date of November 25, 1920?
CREATE TABLE table_name_63 (week INTEGER, venue VARCHAR, date VARCHAR)
SELECT MAX(week) FROM table_name_63 WHERE venue = "league park" AND date = "november 25, 1920"
### Context: CREATE TABLE table_name_63 (week INTEGER, venue VARCHAR, date VARCHAR) ### Question: What is the largest week number for the venue of League Park for the date of November 25, 1920? ### Answer: SELECT MAX(week) FROM table_name_63 WHERE venue = "league park" AND date = "november 25, 1920"
What is Michael's surname?
CREATE TABLE table_name_16 (surname VARCHAR, first VARCHAR)
SELECT surname FROM table_name_16 WHERE first = "michael"
### Context: CREATE TABLE table_name_16 (surname VARCHAR, first VARCHAR) ### Question: What is Michael's surname? ### Answer: SELECT surname FROM table_name_16 WHERE first = "michael"
Which First has Bats of r, and Throws of l, and a DOB of 12 october 1977?
CREATE TABLE table_name_86 (first VARCHAR, dob VARCHAR, bats VARCHAR, throws VARCHAR)
SELECT first FROM table_name_86 WHERE bats = "r" AND throws = "l" AND dob = "12 october 1977"
### Context: CREATE TABLE table_name_86 (first VARCHAR, dob VARCHAR, bats VARCHAR, throws VARCHAR) ### Question: Which First has Bats of r, and Throws of l, and a DOB of 12 october 1977? ### Answer: SELECT first FROM table_name_86 WHERE bats = "r" AND throws = "l" AND dob = "12 october 1977"
When was Maat born?
CREATE TABLE table_name_44 (dob VARCHAR, surname VARCHAR)
SELECT dob FROM table_name_44 WHERE surname = "maat"
### Context: CREATE TABLE table_name_44 (dob VARCHAR, surname VARCHAR) ### Question: When was Maat born? ### Answer: SELECT dob FROM table_name_44 WHERE surname = "maat"
How many bats does Todd have?
CREATE TABLE table_name_88 (bats VARCHAR, first VARCHAR)
SELECT bats FROM table_name_88 WHERE first = "todd"
### Context: CREATE TABLE table_name_88 (bats VARCHAR, first VARCHAR) ### Question: How many bats does Todd have? ### Answer: SELECT bats FROM table_name_88 WHERE first = "todd"