question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is listed under the Years as tallest, that has Floors of 31?
CREATE TABLE table_name_83 (years_as_tallest VARCHAR, floors VARCHAR)
SELECT years_as_tallest FROM table_name_83 WHERE floors = 31
### Context: CREATE TABLE table_name_83 (years_as_tallest VARCHAR, floors VARCHAR) ### Question: What is listed under the Years as tallest, that has Floors of 31? ### Answer: SELECT years_as_tallest FROM table_name_83 WHERE floors = 31
What's the lowest Floors with Feet that's larger htan 262, has a Name of Standard Bank Building, and Metres that's larger htan 138.8?
CREATE TABLE table_name_29 (floors INTEGER, metres VARCHAR, feet VARCHAR, name VARCHAR)
SELECT MIN(floors) FROM table_name_29 WHERE feet > 262 AND name = "standard bank building" AND metres > 138.8
### Context: CREATE TABLE table_name_29 (floors INTEGER, metres VARCHAR, feet VARCHAR, name VARCHAR) ### Question: What's the lowest Floors with Feet that's larger htan 262, has a Name of Standard Bank Building, and Metres that's larger htan 138.8? ### Answer: SELECT MIN(floors) FROM table_name_29 WHERE feet > 262 AND name = "standard bank building" AND metres > 138.8
What is the sum of Metres wiht a Feet that's smaller than 196?
CREATE TABLE table_name_51 (metres VARCHAR, feet INTEGER)
SELECT COUNT(metres) FROM table_name_51 WHERE feet < 196
### Context: CREATE TABLE table_name_51 (metres VARCHAR, feet INTEGER) ### Question: What is the sum of Metres wiht a Feet that's smaller than 196? ### Answer: SELECT COUNT(metres) FROM table_name_51 WHERE feet < 196
What is the highest weight of the position scrum half?
CREATE TABLE table_name_24 (weight__kg_ INTEGER, position VARCHAR)
SELECT MAX(weight__kg_) FROM table_name_24 WHERE position = "scrum half"
### Context: CREATE TABLE table_name_24 (weight__kg_ INTEGER, position VARCHAR) ### Question: What is the highest weight of the position scrum half? ### Answer: SELECT MAX(weight__kg_) FROM table_name_24 WHERE position = "scrum half"
What is the power of the engine with a torque of n·m (lb·ft) at1,500rpm?
CREATE TABLE table_name_15 (power VARCHAR, torque VARCHAR)
SELECT power FROM table_name_15 WHERE torque = "n·m (lb·ft) at1,500rpm"
### Context: CREATE TABLE table_name_15 (power VARCHAR, torque VARCHAR) ### Question: What is the power of the engine with a torque of n·m (lb·ft) at1,500rpm? ### Answer: SELECT power FROM table_name_15 WHERE torque = "n·m (lb·ft) at1,500rpm"
Which torque value is associated with the 1.3 16V multijet engine?
CREATE TABLE table_name_86 (torque VARCHAR, engine VARCHAR)
SELECT torque FROM table_name_86 WHERE engine = "1.3 16v multijet"
### Context: CREATE TABLE table_name_86 (torque VARCHAR, engine VARCHAR) ### Question: Which torque value is associated with the 1.3 16V multijet engine? ### Answer: SELECT torque FROM table_name_86 WHERE engine = "1.3 16v multijet"
What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost?
CREATE TABLE table_name_17 (against INTEGER, lost VARCHAR, drawn VARCHAR, points VARCHAR)
SELECT MIN(against) FROM table_name_17 WHERE drawn < 2 AND points = 10 AND lost < 4
### Context: CREATE TABLE table_name_17 (against INTEGER, lost VARCHAR, drawn VARCHAR, points VARCHAR) ### Question: What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost? ### Answer: SELECT MIN(against) FROM table_name_17 WHERE drawn < 2 AND points = 10 AND lost < 4
What is the average position with an against value less than 11?
CREATE TABLE table_name_76 (position INTEGER, against INTEGER)
SELECT AVG(position) FROM table_name_76 WHERE against < 11
### Context: CREATE TABLE table_name_76 (position INTEGER, against INTEGER) ### Question: What is the average position with an against value less than 11? ### Answer: SELECT AVG(position) FROM table_name_76 WHERE against < 11
What is the largest value for lost with a position greater than 10?
CREATE TABLE table_name_89 (lost INTEGER, position INTEGER)
SELECT MAX(lost) FROM table_name_89 WHERE position > 10
### Context: CREATE TABLE table_name_89 (lost INTEGER, position INTEGER) ### Question: What is the largest value for lost with a position greater than 10? ### Answer: SELECT MAX(lost) FROM table_name_89 WHERE position > 10
What is the total of all against values for the Corinthians with less than 3 lost?
CREATE TABLE table_name_4 (against VARCHAR, team VARCHAR, lost VARCHAR)
SELECT COUNT(against) FROM table_name_4 WHERE team = "corinthians" AND lost < 3
### Context: CREATE TABLE table_name_4 (against VARCHAR, team VARCHAR, lost VARCHAR) ### Question: What is the total of all against values for the Corinthians with less than 3 lost? ### Answer: SELECT COUNT(against) FROM table_name_4 WHERE team = "corinthians" AND lost < 3
What is the lowest against value with less than 9 points and more than 6 lost?
CREATE TABLE table_name_29 (against INTEGER, points VARCHAR, lost VARCHAR)
SELECT MIN(against) FROM table_name_29 WHERE points < 9 AND lost > 6
### Context: CREATE TABLE table_name_29 (against INTEGER, points VARCHAR, lost VARCHAR) ### Question: What is the lowest against value with less than 9 points and more than 6 lost? ### Answer: SELECT MIN(against) FROM table_name_29 WHERE points < 9 AND lost > 6
What tournament located is mississippi was nov 5
CREATE TABLE table_name_83 (tournament VARCHAR, date VARCHAR, location VARCHAR)
SELECT tournament FROM table_name_83 WHERE date = "nov 5" AND location = "mississippi"
### Context: CREATE TABLE table_name_83 (tournament VARCHAR, date VARCHAR, location VARCHAR) ### Question: What tournament located is mississippi was nov 5 ### Answer: SELECT tournament FROM table_name_83 WHERE date = "nov 5" AND location = "mississippi"
what is the 1st prize for may 21
CREATE TABLE table_name_19 (date VARCHAR)
SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_19 WHERE date = "may 21"
### Context: CREATE TABLE table_name_19 (date VARCHAR) ### Question: what is the 1st prize for may 21 ### Answer: SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_19 WHERE date = "may 21"
Who is the director of the game with HIroshi Sato as the producer on the GBA platform?
CREATE TABLE table_name_41 (director VARCHAR, producer VARCHAR, platform_s_ VARCHAR)
SELECT director FROM table_name_41 WHERE producer = "hiroshi sato" AND platform_s_ = "gba"
### Context: CREATE TABLE table_name_41 (director VARCHAR, producer VARCHAR, platform_s_ VARCHAR) ### Question: Who is the director of the game with HIroshi Sato as the producer on the GBA platform? ### Answer: SELECT director FROM table_name_41 WHERE producer = "hiroshi sato" AND platform_s_ = "gba"
Who is the director of Last Window: The Secret of Cape West 3?
CREATE TABLE table_name_93 (director VARCHAR, title VARCHAR)
SELECT director FROM table_name_93 WHERE title = "last window: the secret of cape west 3"
### Context: CREATE TABLE table_name_93 (director VARCHAR, title VARCHAR) ### Question: Who is the director of Last Window: The Secret of Cape West 3? ### Answer: SELECT director FROM table_name_93 WHERE title = "last window: the secret of cape west 3"
What is the platform of the 2010 game with Shuichiro Nishiya as director?
CREATE TABLE table_name_5 (platform_s_ VARCHAR, year VARCHAR, director VARCHAR)
SELECT platform_s_ FROM table_name_5 WHERE year = 2010 AND director = "shuichiro nishiya"
### Context: CREATE TABLE table_name_5 (platform_s_ VARCHAR, year VARCHAR, director VARCHAR) ### Question: What is the platform of the 2010 game with Shuichiro Nishiya as director? ### Answer: SELECT platform_s_ FROM table_name_5 WHERE year = 2010 AND director = "shuichiro nishiya"
Which Opponent is on October of 29?
CREATE TABLE table_name_66 (opponent VARCHAR, october VARCHAR)
SELECT opponent FROM table_name_66 WHERE october = 29
### Context: CREATE TABLE table_name_66 (opponent VARCHAR, october VARCHAR) ### Question: Which Opponent is on October of 29? ### Answer: SELECT opponent FROM table_name_66 WHERE october = 29
WHich October has a Record of 1–0–0?
CREATE TABLE table_name_50 (october INTEGER, record VARCHAR)
SELECT MIN(october) FROM table_name_50 WHERE record = "1–0–0"
### Context: CREATE TABLE table_name_50 (october INTEGER, record VARCHAR) ### Question: WHich October has a Record of 1–0–0? ### Answer: SELECT MIN(october) FROM table_name_50 WHERE record = "1–0–0"
Which Opponent has a October larger than 20 with a Score of 2–2?
CREATE TABLE table_name_42 (opponent VARCHAR, october VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_42 WHERE october > 20 AND score = "2–2"
### Context: CREATE TABLE table_name_42 (opponent VARCHAR, october VARCHAR, score VARCHAR) ### Question: Which Opponent has a October larger than 20 with a Score of 2–2? ### Answer: SELECT opponent FROM table_name_42 WHERE october > 20 AND score = "2–2"
What year was the score 269?
CREATE TABLE table_name_34 (year VARCHAR, score VARCHAR)
SELECT COUNT(year) FROM table_name_34 WHERE score = 269
### Context: CREATE TABLE table_name_34 (year VARCHAR, score VARCHAR) ### Question: What year was the score 269? ### Answer: SELECT COUNT(year) FROM table_name_34 WHERE score = 269
What is the average number of points for a team in the 250cc class with fewer than 0 wins?
CREATE TABLE table_name_96 (points INTEGER, class VARCHAR, wins VARCHAR)
SELECT AVG(points) FROM table_name_96 WHERE class = "250cc" AND wins < 0
### Context: CREATE TABLE table_name_96 (points INTEGER, class VARCHAR, wins VARCHAR) ### Question: What is the average number of points for a team in the 250cc class with fewer than 0 wins? ### Answer: SELECT AVG(points) FROM table_name_96 WHERE class = "250cc" AND wins < 0
What is the smallest number of points for a 1981 team?
CREATE TABLE table_name_15 (points INTEGER, year VARCHAR)
SELECT MIN(points) FROM table_name_15 WHERE year = 1981
### Context: CREATE TABLE table_name_15 (points INTEGER, year VARCHAR) ### Question: What is the smallest number of points for a 1981 team? ### Answer: SELECT MIN(points) FROM table_name_15 WHERE year = 1981
What is the fewest number of wins for a team ranked 8th with fewer than 32 points in the 350cc class?
CREATE TABLE table_name_75 (wins INTEGER, rank VARCHAR, points VARCHAR, class VARCHAR)
SELECT MIN(wins) FROM table_name_75 WHERE points < 32 AND class = "350cc" AND rank = "8th"
### Context: CREATE TABLE table_name_75 (wins INTEGER, rank VARCHAR, points VARCHAR, class VARCHAR) ### Question: What is the fewest number of wins for a team ranked 8th with fewer than 32 points in the 350cc class? ### Answer: SELECT MIN(wins) FROM table_name_75 WHERE points < 32 AND class = "350cc" AND rank = "8th"
What was the rank of the 1983 team in the 250cc class?
CREATE TABLE table_name_51 (rank VARCHAR, class VARCHAR, year VARCHAR)
SELECT rank FROM table_name_51 WHERE class = "250cc" AND year = 1983
### Context: CREATE TABLE table_name_51 (rank VARCHAR, class VARCHAR, year VARCHAR) ### Question: What was the rank of the 1983 team in the 250cc class? ### Answer: SELECT rank FROM table_name_51 WHERE class = "250cc" AND year = 1983
Which district has joseph t. johnson as an incumbent?
CREATE TABLE table_name_61 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_name_61 WHERE incumbent = "joseph t. johnson"
### Context: CREATE TABLE table_name_61 (district VARCHAR, incumbent VARCHAR) ### Question: Which district has joseph t. johnson as an incumbent? ### Answer: SELECT district FROM table_name_61 WHERE incumbent = "joseph t. johnson"
What was the result for james o'h. patterson when first elected in 1904?
CREATE TABLE table_name_40 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_40 WHERE first_elected = "1904" AND incumbent = "james o'h. patterson"
### Context: CREATE TABLE table_name_40 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) ### Question: What was the result for james o'h. patterson when first elected in 1904? ### Answer: SELECT result FROM table_name_40 WHERE first_elected = "1904" AND incumbent = "james o'h. patterson"
Which party was re-elected in south carolina 5 district?
CREATE TABLE table_name_2 (party VARCHAR, result VARCHAR, district VARCHAR)
SELECT party FROM table_name_2 WHERE result = "re-elected" AND district = "south carolina 5"
### Context: CREATE TABLE table_name_2 (party VARCHAR, result VARCHAR, district VARCHAR) ### Question: Which party was re-elected in south carolina 5 district? ### Answer: SELECT party FROM table_name_2 WHERE result = "re-elected" AND district = "south carolina 5"
Which party was joseph t. johnson in?
CREATE TABLE table_name_86 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_name_86 WHERE incumbent = "joseph t. johnson"
### Context: CREATE TABLE table_name_86 (party VARCHAR, incumbent VARCHAR) ### Question: Which party was joseph t. johnson in? ### Answer: SELECT party FROM table_name_86 WHERE incumbent = "joseph t. johnson"
Which party was first elected in 1898?
CREATE TABLE table_name_19 (party VARCHAR, first_elected VARCHAR)
SELECT party FROM table_name_19 WHERE first_elected = "1898"
### Context: CREATE TABLE table_name_19 (party VARCHAR, first_elected VARCHAR) ### Question: Which party was first elected in 1898? ### Answer: SELECT party FROM table_name_19 WHERE first_elected = "1898"
What is the average earnings made by Greg Norman?
CREATE TABLE table_name_49 (earnings___ INTEGER, player VARCHAR)
SELECT AVG(earnings___) AS $__ FROM table_name_49 WHERE player = "greg norman"
### Context: CREATE TABLE table_name_49 (earnings___ INTEGER, player VARCHAR) ### Question: What is the average earnings made by Greg Norman? ### Answer: SELECT AVG(earnings___) AS $__ FROM table_name_49 WHERE player = "greg norman"
what city has a game of friendly and an opponent of tunisia?
CREATE TABLE table_name_42 (city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
SELECT city FROM table_name_42 WHERE type_of_game = "friendly" AND opponent = "tunisia"
### Context: CREATE TABLE table_name_42 (city VARCHAR, type_of_game VARCHAR, opponent VARCHAR) ### Question: what city has a game of friendly and an opponent of tunisia? ### Answer: SELECT city FROM table_name_42 WHERE type_of_game = "friendly" AND opponent = "tunisia"
what are the results of the opponent of spain?
CREATE TABLE table_name_78 (results¹ VARCHAR, opponent VARCHAR)
SELECT results¹ FROM table_name_78 WHERE opponent = "spain"
### Context: CREATE TABLE table_name_78 (results¹ VARCHAR, opponent VARCHAR) ### Question: what are the results of the opponent of spain? ### Answer: SELECT results¹ FROM table_name_78 WHERE opponent = "spain"
what results are dated december 19?
CREATE TABLE table_name_49 (results¹ VARCHAR, date VARCHAR)
SELECT results¹ FROM table_name_49 WHERE date = "december 19"
### Context: CREATE TABLE table_name_49 (results¹ VARCHAR, date VARCHAR) ### Question: what results are dated december 19? ### Answer: SELECT results¹ FROM table_name_49 WHERE date = "december 19"
what city has the results of 4:2?
CREATE TABLE table_name_41 (city VARCHAR, results¹ VARCHAR)
SELECT city FROM table_name_41 WHERE results¹ = "4:2"
### Context: CREATE TABLE table_name_41 (city VARCHAR, results¹ VARCHAR) ### Question: what city has the results of 4:2? ### Answer: SELECT city FROM table_name_41 WHERE results¹ = "4:2"
what type of game has the resuts of 1:0?
CREATE TABLE table_name_78 (type_of_game VARCHAR, results¹ VARCHAR)
SELECT type_of_game FROM table_name_78 WHERE results¹ = "1:0"
### Context: CREATE TABLE table_name_78 (type_of_game VARCHAR, results¹ VARCHAR) ### Question: what type of game has the resuts of 1:0? ### Answer: SELECT type_of_game FROM table_name_78 WHERE results¹ = "1:0"
What is the average Games for 1965–1981, and a Ranking larger than 4?
CREATE TABLE table_name_52 (games INTEGER, years VARCHAR, ranking VARCHAR)
SELECT AVG(games) FROM table_name_52 WHERE years = "1965–1981" AND ranking > 4
### Context: CREATE TABLE table_name_52 (games INTEGER, years VARCHAR, ranking VARCHAR) ### Question: What is the average Games for 1965–1981, and a Ranking larger than 4? ### Answer: SELECT AVG(games) FROM table_name_52 WHERE years = "1965–1981" AND ranking > 4
What is the Years when games shows 550?
CREATE TABLE table_name_93 (years VARCHAR, games VARCHAR)
SELECT years FROM table_name_93 WHERE games = 550
### Context: CREATE TABLE table_name_93 (years VARCHAR, games VARCHAR) ### Question: What is the Years when games shows 550? ### Answer: SELECT years FROM table_name_93 WHERE games = 550
What is the Nationality that shows 4 as the ranking?
CREATE TABLE table_name_57 (nationality VARCHAR, ranking VARCHAR)
SELECT nationality FROM table_name_57 WHERE ranking = 4
### Context: CREATE TABLE table_name_57 (nationality VARCHAR, ranking VARCHAR) ### Question: What is the Nationality that shows 4 as the ranking? ### Answer: SELECT nationality FROM table_name_57 WHERE ranking = 4
Which location has a copies per particle of 0 and a protein of nsp3?
CREATE TABLE table_name_68 (location VARCHAR, copies_per_particle VARCHAR, protein VARCHAR)
SELECT location FROM table_name_68 WHERE copies_per_particle = "0" AND protein = "nsp3"
### Context: CREATE TABLE table_name_68 (location VARCHAR, copies_per_particle VARCHAR, protein VARCHAR) ### Question: Which location has a copies per particle of 0 and a protein of nsp3? ### Answer: SELECT location FROM table_name_68 WHERE copies_per_particle = "0" AND protein = "nsp3"
How many copies per particle does the protein nsp2 have?
CREATE TABLE table_name_46 (copies_per_particle VARCHAR, protein VARCHAR)
SELECT copies_per_particle FROM table_name_46 WHERE protein = "nsp2"
### Context: CREATE TABLE table_name_46 (copies_per_particle VARCHAR, protein VARCHAR) ### Question: How many copies per particle does the protein nsp2 have? ### Answer: SELECT copies_per_particle FROM table_name_46 WHERE protein = "nsp2"
What is the highest RNA segment having a protein of vp2 and a base pair size over 2690?
CREATE TABLE table_name_20 (rna_segment__gene_ INTEGER, protein VARCHAR, size___s_base_pair__ VARCHAR)
SELECT MAX(rna_segment__gene_) FROM table_name_20 WHERE protein = "vp2" AND size___s_base_pair__ > 2690
### Context: CREATE TABLE table_name_20 (rna_segment__gene_ INTEGER, protein VARCHAR, size___s_base_pair__ VARCHAR) ### Question: What is the highest RNA segment having a protein of vp2 and a base pair size over 2690? ### Answer: SELECT MAX(rna_segment__gene_) FROM table_name_20 WHERE protein = "vp2" AND size___s_base_pair__ > 2690
What is the number of copies per particle having a nonstructural location, an RNA segment over 5 and a base pair size under 751?
CREATE TABLE table_name_88 (copies_per_particle VARCHAR, size___s_base_pair__ VARCHAR, location VARCHAR, rna_segment__gene_ VARCHAR)
SELECT copies_per_particle FROM table_name_88 WHERE location = "nonstructural" AND rna_segment__gene_ > 5 AND size___s_base_pair__ < 751
### Context: CREATE TABLE table_name_88 (copies_per_particle VARCHAR, size___s_base_pair__ VARCHAR, location VARCHAR, rna_segment__gene_ VARCHAR) ### Question: What is the number of copies per particle having a nonstructural location, an RNA segment over 5 and a base pair size under 751? ### Answer: SELECT copies_per_particle FROM table_name_88 WHERE location = "nonstructural" AND rna_segment__gene_ > 5 AND size___s_base_pair__ < 751
Who won the bronze medal in Hiroshima?
CREATE TABLE table_name_90 (bronze VARCHAR, location VARCHAR)
SELECT bronze FROM table_name_90 WHERE location = "hiroshima"
### Context: CREATE TABLE table_name_90 (bronze VARCHAR, location VARCHAR) ### Question: Who won the bronze medal in Hiroshima? ### Answer: SELECT bronze FROM table_name_90 WHERE location = "hiroshima"
Who won the silver medal in the games where Hong Chia-yuh took home bronze?
CREATE TABLE table_name_5 (silver VARCHAR, bronze VARCHAR)
SELECT silver FROM table_name_5 WHERE bronze = "hong chia-yuh"
### Context: CREATE TABLE table_name_5 (silver VARCHAR, bronze VARCHAR) ### Question: Who won the silver medal in the games where Hong Chia-yuh took home bronze? ### Answer: SELECT silver FROM table_name_5 WHERE bronze = "hong chia-yuh"
Where did Michael Eric Bibat win bronze?
CREATE TABLE table_name_29 (location VARCHAR, bronze VARCHAR)
SELECT location FROM table_name_29 WHERE bronze = "michael eric bibat"
### Context: CREATE TABLE table_name_29 (location VARCHAR, bronze VARCHAR) ### Question: Where did Michael Eric Bibat win bronze? ### Answer: SELECT location FROM table_name_29 WHERE bronze = "michael eric bibat"
Who won gold in the games where Pan Cheng-Tsung won silver?
CREATE TABLE table_name_76 (gold VARCHAR, silver VARCHAR)
SELECT gold FROM table_name_76 WHERE silver = "pan cheng-tsung"
### Context: CREATE TABLE table_name_76 (gold VARCHAR, silver VARCHAR) ### Question: Who won gold in the games where Pan Cheng-Tsung won silver? ### Answer: SELECT gold FROM table_name_76 WHERE silver = "pan cheng-tsung"
How many Bronzes that has a Silver of 0, and a Gold of 0, and a Nation of denmark, and a Total larger than 1?
CREATE TABLE table_name_22 (bronze INTEGER, total VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT SUM(bronze) FROM table_name_22 WHERE silver = 0 AND gold = 0 AND nation = "denmark" AND total > 1
### Context: CREATE TABLE table_name_22 (bronze INTEGER, total VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR) ### Question: How many Bronzes that has a Silver of 0, and a Gold of 0, and a Nation of denmark, and a Total larger than 1? ### Answer: SELECT SUM(bronze) FROM table_name_22 WHERE silver = 0 AND gold = 0 AND nation = "denmark" AND total > 1
How many Bronzes that has a Nation of italy?
CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR)
SELECT MAX(bronze) FROM table_name_75 WHERE nation = "italy"
### Context: CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR) ### Question: How many Bronzes that has a Nation of italy? ### Answer: SELECT MAX(bronze) FROM table_name_75 WHERE nation = "italy"
How many Silvers that has a Gold smaller than 1, and a Rank of 9, and a Total smaller than 1?
CREATE TABLE table_name_70 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT SUM(silver) FROM table_name_70 WHERE gold < 1 AND rank = "9" AND total < 1
### Context: CREATE TABLE table_name_70 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR) ### Question: How many Silvers that has a Gold smaller than 1, and a Rank of 9, and a Total smaller than 1? ### Answer: SELECT SUM(silver) FROM table_name_70 WHERE gold < 1 AND rank = "9" AND total < 1
Which Bronze has a Nation of spain?
CREATE TABLE table_name_99 (bronze INTEGER, nation VARCHAR)
SELECT MAX(bronze) FROM table_name_99 WHERE nation = "spain"
### Context: CREATE TABLE table_name_99 (bronze INTEGER, nation VARCHAR) ### Question: Which Bronze has a Nation of spain? ### Answer: SELECT MAX(bronze) FROM table_name_99 WHERE nation = "spain"
Who was the opponent at the competition held at Jeonju?
CREATE TABLE table_name_20 (opponent VARCHAR, venue VARCHAR)
SELECT opponent FROM table_name_20 WHERE venue = "jeonju"
### Context: CREATE TABLE table_name_20 (opponent VARCHAR, venue VARCHAR) ### Question: Who was the opponent at the competition held at Jeonju? ### Answer: SELECT opponent FROM table_name_20 WHERE venue = "jeonju"
How many Januarys had records of 22-15-6?
CREATE TABLE table_name_14 (january VARCHAR, record VARCHAR)
SELECT COUNT(january) FROM table_name_14 WHERE record = "22-15-6"
### Context: CREATE TABLE table_name_14 (january VARCHAR, record VARCHAR) ### Question: How many Januarys had records of 22-15-6? ### Answer: SELECT COUNT(january) FROM table_name_14 WHERE record = "22-15-6"
what is the date of barbagallo raceway?
CREATE TABLE table_name_69 (date VARCHAR, event_circuit VARCHAR)
SELECT date FROM table_name_69 WHERE event_circuit = "barbagallo raceway"
### Context: CREATE TABLE table_name_69 (date VARCHAR, event_circuit VARCHAR) ### Question: what is the date of barbagallo raceway? ### Answer: SELECT date FROM table_name_69 WHERE event_circuit = "barbagallo raceway"
What city is the hidden valley raceway in?
CREATE TABLE table_name_79 (city___state VARCHAR, event_circuit VARCHAR)
SELECT city___state FROM table_name_79 WHERE event_circuit = "hidden valley raceway"
### Context: CREATE TABLE table_name_79 (city___state VARCHAR, event_circuit VARCHAR) ### Question: What city is the hidden valley raceway in? ### Answer: SELECT city___state FROM table_name_79 WHERE event_circuit = "hidden valley raceway"
What was the score in game 81?
CREATE TABLE table_name_60 (score VARCHAR, game__number VARCHAR)
SELECT score FROM table_name_60 WHERE game__number = 81
### Context: CREATE TABLE table_name_60 (score VARCHAR, game__number VARCHAR) ### Question: What was the score in game 81? ### Answer: SELECT score FROM table_name_60 WHERE game__number = 81
What was the record after game 79?
CREATE TABLE table_name_27 (record VARCHAR, game__number VARCHAR)
SELECT record FROM table_name_27 WHERE game__number = 79
### Context: CREATE TABLE table_name_27 (record VARCHAR, game__number VARCHAR) ### Question: What was the record after game 79? ### Answer: SELECT record FROM table_name_27 WHERE game__number = 79
Who was the home team on April 15?
CREATE TABLE table_name_91 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_91 WHERE date = "april 15"
### Context: CREATE TABLE table_name_91 (home VARCHAR, date VARCHAR) ### Question: Who was the home team on April 15? ### Answer: SELECT home FROM table_name_91 WHERE date = "april 15"
What is the Pinyin for 依兰县?
CREATE TABLE table_name_53 (hanyu_pinyin VARCHAR, hanzi VARCHAR)
SELECT hanyu_pinyin FROM table_name_53 WHERE hanzi = "依兰县"
### Context: CREATE TABLE table_name_53 (hanyu_pinyin VARCHAR, hanzi VARCHAR) ### Question: What is the Pinyin for 依兰县? ### Answer: SELECT hanyu_pinyin FROM table_name_53 WHERE hanzi = "依兰县"
What is the Pinyin for the item that has a density of 77?
CREATE TABLE table_name_65 (hanyu_pinyin VARCHAR, density___km²_ VARCHAR)
SELECT hanyu_pinyin FROM table_name_65 WHERE density___km²_ = "77"
### Context: CREATE TABLE table_name_65 (hanyu_pinyin VARCHAR, density___km²_ VARCHAR) ### Question: What is the Pinyin for the item that has a density of 77? ### Answer: SELECT hanyu_pinyin FROM table_name_65 WHERE density___km²_ = "77"
What is the population for the area that has a Hanzi of 延寿县?
CREATE TABLE table_name_30 (population__2010_11_01_ VARCHAR, hanzi VARCHAR)
SELECT population__2010_11_01_ FROM table_name_30 WHERE hanzi = "延寿县"
### Context: CREATE TABLE table_name_30 (population__2010_11_01_ VARCHAR, hanzi VARCHAR) ### Question: What is the population for the area that has a Hanzi of 延寿县? ### Answer: SELECT population__2010_11_01_ FROM table_name_30 WHERE hanzi = "延寿县"
What is the population as of 11-01-2010 for Bayan County?
CREATE TABLE table_name_50 (population__2010_11_01_ VARCHAR, name VARCHAR)
SELECT population__2010_11_01_ FROM table_name_50 WHERE name = "bayan county"
### Context: CREATE TABLE table_name_50 (population__2010_11_01_ VARCHAR, name VARCHAR) ### Question: What is the population as of 11-01-2010 for Bayan County? ### Answer: SELECT population__2010_11_01_ FROM table_name_50 WHERE name = "bayan county"
What is the Hanzi for píngfáng qū?
CREATE TABLE table_name_4 (hanzi VARCHAR, hanyu_pinyin VARCHAR)
SELECT hanzi FROM table_name_4 WHERE hanyu_pinyin = "píngfáng qū"
### Context: CREATE TABLE table_name_4 (hanzi VARCHAR, hanyu_pinyin VARCHAR) ### Question: What is the Hanzi for píngfáng qū? ### Answer: SELECT hanzi FROM table_name_4 WHERE hanyu_pinyin = "píngfáng qū"
Which Slalom has an overall of 25 in the 2009 season?
CREATE TABLE table_name_32 (slalom VARCHAR, overall VARCHAR, season VARCHAR)
SELECT slalom FROM table_name_32 WHERE overall = "25" AND season = 2009
### Context: CREATE TABLE table_name_32 (slalom VARCHAR, overall VARCHAR, season VARCHAR) ### Question: Which Slalom has an overall of 25 in the 2009 season? ### Answer: SELECT slalom FROM table_name_32 WHERE overall = "25" AND season = 2009
Which combined score has an overall of 8?
CREATE TABLE table_name_80 (combined VARCHAR, overall VARCHAR)
SELECT combined FROM table_name_80 WHERE overall = "8"
### Context: CREATE TABLE table_name_80 (combined VARCHAR, overall VARCHAR) ### Question: Which combined score has an overall of 8? ### Answer: SELECT combined FROM table_name_80 WHERE overall = "8"
Which Super Ghas a missed season due to injury?
CREATE TABLE table_name_50 (super_g VARCHAR, overall VARCHAR)
SELECT super_g FROM table_name_50 WHERE overall = "missed season due to injury"
### Context: CREATE TABLE table_name_50 (super_g VARCHAR, overall VARCHAR) ### Question: Which Super Ghas a missed season due to injury? ### Answer: SELECT super_g FROM table_name_50 WHERE overall = "missed season due to injury"
Name the most events with cuts made more than 6 and top 25 more than 30
CREATE TABLE table_name_92 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR)
SELECT MAX(events) FROM table_name_92 WHERE cuts_made > 6 AND top_25 > 30
### Context: CREATE TABLE table_name_92 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR) ### Question: Name the most events with cuts made more than 6 and top 25 more than 30 ### Answer: SELECT MAX(events) FROM table_name_92 WHERE cuts_made > 6 AND top_25 > 30
Name the top-10 with top-5 less than 1
CREATE TABLE table_name_53 (top_10 VARCHAR, top_5 INTEGER)
SELECT top_10 FROM table_name_53 WHERE top_5 < 1
### Context: CREATE TABLE table_name_53 (top_10 VARCHAR, top_5 INTEGER) ### Question: Name the top-10 with top-5 less than 1 ### Answer: SELECT top_10 FROM table_name_53 WHERE top_5 < 1
Name the averae top 25 with events less than 0
CREATE TABLE table_name_31 (top_25 INTEGER, events INTEGER)
SELECT AVG(top_25) FROM table_name_31 WHERE events < 0
### Context: CREATE TABLE table_name_31 (top_25 INTEGER, events INTEGER) ### Question: Name the averae top 25 with events less than 0 ### Answer: SELECT AVG(top_25) FROM table_name_31 WHERE events < 0
Name the total number of top 10 with top 25 less than 2 and top 5 more than 0
CREATE TABLE table_name_75 (top_10 VARCHAR, top_25 VARCHAR, top_5 VARCHAR)
SELECT COUNT(top_10) FROM table_name_75 WHERE top_25 < 2 AND top_5 > 0
### Context: CREATE TABLE table_name_75 (top_10 VARCHAR, top_25 VARCHAR, top_5 VARCHAR) ### Question: Name the total number of top 10 with top 25 less than 2 and top 5 more than 0 ### Answer: SELECT COUNT(top_10) FROM table_name_75 WHERE top_25 < 2 AND top_5 > 0
In what Year is the Gauge 2 ft 6 in?
CREATE TABLE table_name_22 (year VARCHAR, gauge VARCHAR)
SELECT year FROM table_name_22 WHERE gauge = "2 ft 6 in"
### Context: CREATE TABLE table_name_22 (year VARCHAR, gauge VARCHAR) ### Question: In what Year is the Gauge 2 ft 6 in? ### Answer: SELECT year FROM table_name_22 WHERE gauge = "2 ft 6 in"
In what Year is the Works No. 2040-2049?
CREATE TABLE table_name_80 (year VARCHAR, works_no VARCHAR)
SELECT year FROM table_name_80 WHERE works_no = "2040-2049"
### Context: CREATE TABLE table_name_80 (year VARCHAR, works_no VARCHAR) ### Question: In what Year is the Works No. 2040-2049? ### Answer: SELECT year FROM table_name_80 WHERE works_no = "2040-2049"
In what Year is the Works no. 2040-2049?
CREATE TABLE table_name_86 (year VARCHAR, works_no VARCHAR)
SELECT year FROM table_name_86 WHERE works_no = "2040-2049"
### Context: CREATE TABLE table_name_86 (year VARCHAR, works_no VARCHAR) ### Question: In what Year is the Works no. 2040-2049? ### Answer: SELECT year FROM table_name_86 WHERE works_no = "2040-2049"
What is the Gauge of Builder Beyer, Peacock?
CREATE TABLE table_name_9 (gauge VARCHAR, builder VARCHAR)
SELECT gauge FROM table_name_9 WHERE builder = "beyer, peacock"
### Context: CREATE TABLE table_name_9 (gauge VARCHAR, builder VARCHAR) ### Question: What is the Gauge of Builder Beyer, Peacock? ### Answer: SELECT gauge FROM table_name_9 WHERE builder = "beyer, peacock"
Which round has the record of 5-0?
CREATE TABLE table_name_18 (round VARCHAR, record VARCHAR)
SELECT round FROM table_name_18 WHERE record = "5-0"
### Context: CREATE TABLE table_name_18 (round VARCHAR, record VARCHAR) ### Question: Which round has the record of 5-0? ### Answer: SELECT round FROM table_name_18 WHERE record = "5-0"
Which method has the record of 11-1?
CREATE TABLE table_name_4 (method VARCHAR, record VARCHAR)
SELECT method FROM table_name_4 WHERE record = "11-1"
### Context: CREATE TABLE table_name_4 (method VARCHAR, record VARCHAR) ### Question: Which method has the record of 11-1? ### Answer: SELECT method FROM table_name_4 WHERE record = "11-1"
The UFC 44 event has what method?
CREATE TABLE table_name_98 (method VARCHAR, event VARCHAR)
SELECT method FROM table_name_98 WHERE event = "ufc 44"
### Context: CREATE TABLE table_name_98 (method VARCHAR, event VARCHAR) ### Question: The UFC 44 event has what method? ### Answer: SELECT method FROM table_name_98 WHERE event = "ufc 44"
Which event has 12-1 as a record?
CREATE TABLE table_name_43 (event VARCHAR, record VARCHAR)
SELECT event FROM table_name_43 WHERE record = "12-1"
### Context: CREATE TABLE table_name_43 (event VARCHAR, record VARCHAR) ### Question: Which event has 12-1 as a record? ### Answer: SELECT event FROM table_name_43 WHERE record = "12-1"
What round was a loss with a record of 12-3?
CREATE TABLE table_name_22 (round VARCHAR, res VARCHAR, record VARCHAR)
SELECT round FROM table_name_22 WHERE res = "loss" AND record = "12-3"
### Context: CREATE TABLE table_name_22 (round VARCHAR, res VARCHAR, record VARCHAR) ### Question: What round was a loss with a record of 12-3? ### Answer: SELECT round FROM table_name_22 WHERE res = "loss" AND record = "12-3"
The record of 11-1 used what method?
CREATE TABLE table_name_35 (method VARCHAR, record VARCHAR)
SELECT method FROM table_name_35 WHERE record = "11-1"
### Context: CREATE TABLE table_name_35 (method VARCHAR, record VARCHAR) ### Question: The record of 11-1 used what method? ### Answer: SELECT method FROM table_name_35 WHERE record = "11-1"
What surface was the match on November 6, 1982 played on?
CREATE TABLE table_name_82 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_82 WHERE date = "november 6, 1982"
### Context: CREATE TABLE table_name_82 (surface VARCHAR, date VARCHAR) ### Question: What surface was the match on November 6, 1982 played on? ### Answer: SELECT surface FROM table_name_82 WHERE date = "november 6, 1982"
What place did russia finish in?
CREATE TABLE table_name_26 (placing VARCHAR, team VARCHAR)
SELECT COUNT(placing) FROM table_name_26 WHERE team = "russia"
### Context: CREATE TABLE table_name_26 (placing VARCHAR, team VARCHAR) ### Question: What place did russia finish in? ### Answer: SELECT COUNT(placing) FROM table_name_26 WHERE team = "russia"
What's the WChmp of the race greater than 42 and pole greater than 11?
CREATE TABLE table_name_35 (wchmp VARCHAR, race VARCHAR, pole VARCHAR)
SELECT COUNT(wchmp) FROM table_name_35 WHERE race > 42 AND pole > 11
### Context: CREATE TABLE table_name_35 (wchmp VARCHAR, race VARCHAR, pole VARCHAR) ### Question: What's the WChmp of the race greater than 42 and pole greater than 11? ### Answer: SELECT COUNT(wchmp) FROM table_name_35 WHERE race > 42 AND pole > 11
If podiums are 26, what's the lowest WChmp?
CREATE TABLE table_name_49 (wchmp INTEGER, podiums VARCHAR)
SELECT MIN(wchmp) FROM table_name_49 WHERE podiums = 26
### Context: CREATE TABLE table_name_49 (wchmp INTEGER, podiums VARCHAR) ### Question: If podiums are 26, what's the lowest WChmp? ### Answer: SELECT MIN(wchmp) FROM table_name_49 WHERE podiums = 26
If the class is total, what is the total number of podiums?
CREATE TABLE table_name_93 (podiums VARCHAR, class VARCHAR)
SELECT COUNT(podiums) FROM table_name_93 WHERE class = "total"
### Context: CREATE TABLE table_name_93 (podiums VARCHAR, class VARCHAR) ### Question: If the class is total, what is the total number of podiums? ### Answer: SELECT COUNT(podiums) FROM table_name_93 WHERE class = "total"
During race 14, what's the podiums?
CREATE TABLE table_name_78 (podiums INTEGER, race VARCHAR)
SELECT MAX(podiums) FROM table_name_78 WHERE race = 14
### Context: CREATE TABLE table_name_78 (podiums INTEGER, race VARCHAR) ### Question: During race 14, what's the podiums? ### Answer: SELECT MAX(podiums) FROM table_name_78 WHERE race = 14
What Call sign has a City of license of higgston, ga?
CREATE TABLE table_name_95 (call_sign VARCHAR, city_of_license VARCHAR)
SELECT call_sign FROM table_name_95 WHERE city_of_license = "higgston, ga"
### Context: CREATE TABLE table_name_95 (call_sign VARCHAR, city_of_license VARCHAR) ### Question: What Call sign has a City of license of higgston, ga? ### Answer: SELECT call_sign FROM table_name_95 WHERE city_of_license = "higgston, ga"
What City of license has a ERP W of 2,000?
CREATE TABLE table_name_67 (city_of_license VARCHAR, erp_w VARCHAR)
SELECT city_of_license FROM table_name_67 WHERE erp_w = "2,000"
### Context: CREATE TABLE table_name_67 (city_of_license VARCHAR, erp_w VARCHAR) ### Question: What City of license has a ERP W of 2,000? ### Answer: SELECT city_of_license FROM table_name_67 WHERE erp_w = "2,000"
What is the Class where City of license is lake oconee, ga?
CREATE TABLE table_name_84 (class VARCHAR, city_of_license VARCHAR)
SELECT class FROM table_name_84 WHERE city_of_license = "lake oconee, ga"
### Context: CREATE TABLE table_name_84 (class VARCHAR, city_of_license VARCHAR) ### Question: What is the Class where City of license is lake oconee, ga? ### Answer: SELECT class FROM table_name_84 WHERE city_of_license = "lake oconee, ga"
What chassis has 2012 as the year?
CREATE TABLE table_name_3 (chassis VARCHAR, year VARCHAR)
SELECT chassis FROM table_name_3 WHERE year = 2012
### Context: CREATE TABLE table_name_3 (chassis VARCHAR, year VARCHAR) ### Question: What chassis has 2012 as the year? ### Answer: SELECT chassis FROM table_name_3 WHERE year = 2012
What engine has a start less than 7, and 23 as a finish?
CREATE TABLE table_name_19 (engine VARCHAR, start VARCHAR, finish VARCHAR)
SELECT engine FROM table_name_19 WHERE start < 7 AND finish = 23
### Context: CREATE TABLE table_name_19 (engine VARCHAR, start VARCHAR, finish VARCHAR) ### Question: What engine has a start less than 7, and 23 as a finish? ### Answer: SELECT engine FROM table_name_19 WHERE start < 7 AND finish = 23
What is the average finish that has a start greater than 3, with honda as the engine, and 2011 as the year?
CREATE TABLE table_name_35 (finish INTEGER, year VARCHAR, start VARCHAR, engine VARCHAR)
SELECT AVG(finish) FROM table_name_35 WHERE start > 3 AND engine = "honda" AND year = 2011
### Context: CREATE TABLE table_name_35 (finish INTEGER, year VARCHAR, start VARCHAR, engine VARCHAR) ### Question: What is the average finish that has a start greater than 3, with honda as the engine, and 2011 as the year? ### Answer: SELECT AVG(finish) FROM table_name_35 WHERE start > 3 AND engine = "honda" AND year = 2011
How many starts have a year prior to 2012, and team penske as the team, with a finish greater than 27?
CREATE TABLE table_name_35 (start INTEGER, finish VARCHAR, year VARCHAR, team VARCHAR)
SELECT SUM(start) FROM table_name_35 WHERE year < 2012 AND team = "team penske" AND finish > 27
### Context: CREATE TABLE table_name_35 (start INTEGER, finish VARCHAR, year VARCHAR, team VARCHAR) ### Question: How many starts have a year prior to 2012, and team penske as the team, with a finish greater than 27? ### Answer: SELECT SUM(start) FROM table_name_35 WHERE year < 2012 AND team = "team penske" AND finish > 27
What start has a year later than 2010, and chip ganassi racing as the team?
CREATE TABLE table_name_17 (start VARCHAR, year VARCHAR, team VARCHAR)
SELECT start FROM table_name_17 WHERE year > 2010 AND team = "chip ganassi racing"
### Context: CREATE TABLE table_name_17 (start VARCHAR, year VARCHAR, team VARCHAR) ### Question: What start has a year later than 2010, and chip ganassi racing as the team? ### Answer: SELECT start FROM table_name_17 WHERE year > 2010 AND team = "chip ganassi racing"
Who was the opponent at the Football League Trophy competition?
CREATE TABLE table_name_84 (opponents VARCHAR, competition VARCHAR)
SELECT opponents FROM table_name_84 WHERE competition = "football league trophy"
### Context: CREATE TABLE table_name_84 (opponents VARCHAR, competition VARCHAR) ### Question: Who was the opponent at the Football League Trophy competition? ### Answer: SELECT opponents FROM table_name_84 WHERE competition = "football league trophy"
What was the opponent at the League Play Offs at home?
CREATE TABLE table_name_8 (opponents VARCHAR, venue VARCHAR, competition VARCHAR)
SELECT opponents FROM table_name_8 WHERE venue = "home" AND competition = "league play offs"
### Context: CREATE TABLE table_name_8 (opponents VARCHAR, venue VARCHAR, competition VARCHAR) ### Question: What was the opponent at the League Play Offs at home? ### Answer: SELECT opponents FROM table_name_8 WHERE venue = "home" AND competition = "league play offs"
What venue held that game against the Queens Park Rangers?
CREATE TABLE table_name_32 (venue VARCHAR, opponents VARCHAR)
SELECT venue FROM table_name_32 WHERE opponents = "queens park rangers"
### Context: CREATE TABLE table_name_32 (venue VARCHAR, opponents VARCHAR) ### Question: What venue held that game against the Queens Park Rangers? ### Answer: SELECT venue FROM table_name_32 WHERE opponents = "queens park rangers"
Who was the opponent at the away game with a score of 5-4?
CREATE TABLE table_name_67 (opponents VARCHAR, venue VARCHAR, score VARCHAR)
SELECT opponents FROM table_name_67 WHERE venue = "away" AND score = "5-4"
### Context: CREATE TABLE table_name_67 (opponents VARCHAR, venue VARCHAR, score VARCHAR) ### Question: Who was the opponent at the away game with a score of 5-4? ### Answer: SELECT opponents FROM table_name_67 WHERE venue = "away" AND score = "5-4"
Who was the opponent at the League Cup competition with a score of 3-1?
CREATE TABLE table_name_91 (opponents VARCHAR, competition VARCHAR, score VARCHAR)
SELECT opponents FROM table_name_91 WHERE competition = "league cup" AND score = "3-1"
### Context: CREATE TABLE table_name_91 (opponents VARCHAR, competition VARCHAR, score VARCHAR) ### Question: Who was the opponent at the League Cup competition with a score of 3-1? ### Answer: SELECT opponents FROM table_name_91 WHERE competition = "league cup" AND score = "3-1"
Name the team classification for stage of 20
CREATE TABLE table_name_92 (team_classification VARCHAR, stage VARCHAR)
SELECT team_classification FROM table_name_92 WHERE stage = "20"
### Context: CREATE TABLE table_name_92 (team_classification VARCHAR, stage VARCHAR) ### Question: Name the team classification for stage of 20 ### Answer: SELECT team_classification FROM table_name_92 WHERE stage = "20"
Name the winner with mountains classification of franco pellizotti and combativity award of martijn maaskant
CREATE TABLE table_name_5 (winner VARCHAR, mountains_classification VARCHAR, combativity_award VARCHAR)
SELECT winner FROM table_name_5 WHERE mountains_classification = "franco pellizotti" AND combativity_award = "martijn maaskant"
### Context: CREATE TABLE table_name_5 (winner VARCHAR, mountains_classification VARCHAR, combativity_award VARCHAR) ### Question: Name the winner with mountains classification of franco pellizotti and combativity award of martijn maaskant ### Answer: SELECT winner FROM table_name_5 WHERE mountains_classification = "franco pellizotti" AND combativity_award = "martijn maaskant"