question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which opponent has a record of 6-2?
CREATE TABLE table_21091127_1 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_21091127_1 WHERE record = "6-2"
### Context: CREATE TABLE table_21091127_1 (opponent VARCHAR, record VARCHAR) ### Question: Which opponent has a record of 6-2? ### Answer: SELECT opponent FROM table_21091127_1 WHERE record = "6-2"
How many results have a game of 5?
CREATE TABLE table_21091127_1 (result VARCHAR, game VARCHAR)
SELECT COUNT(result) FROM table_21091127_1 WHERE game = 5
### Context: CREATE TABLE table_21091127_1 (result VARCHAR, game VARCHAR) ### Question: How many results have a game of 5? ### Answer: SELECT COUNT(result) FROM table_21091127_1 WHERE game = 5
What is the run time for the episode with 7.9 million viewers?
CREATE TABLE table_2108684_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)
SELECT run_time FROM table_2108684_1 WHERE viewers__in_millions_ = "7.9"
### Context: CREATE TABLE table_2108684_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR) ### Question: What is the run time for the episode with 7.9 million viewers? ### Answer: SELECT run_time FROM table_2108684_1 WHERE viewers__in_millions_ = "7.9"
What episode had a run time of 23:38?
CREATE TABLE table_2108684_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2108684_1 WHERE run_time = "23:38"
### Context: CREATE TABLE table_2108684_1 (episode VARCHAR, run_time VARCHAR) ### Question: What episode had a run time of 23:38? ### Answer: SELECT episode FROM table_2108684_1 WHERE run_time = "23:38"
How many million viewers watched the episode with a run time of 25:22?
CREATE TABLE table_2108684_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)
SELECT viewers__in_millions_ FROM table_2108684_1 WHERE run_time = "25:22"
### Context: CREATE TABLE table_2108684_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR) ### Question: How many million viewers watched the episode with a run time of 25:22? ### Answer: SELECT viewers__in_millions_ FROM table_2108684_1 WHERE run_time = "25:22"
Name the date for result loss for duke
CREATE TABLE table_21092444_1 (date VARCHAR, result VARCHAR, opponent VARCHAR)
SELECT date FROM table_21092444_1 WHERE result = "Loss" AND opponent = "Duke"
### Context: CREATE TABLE table_21092444_1 (date VARCHAR, result VARCHAR, opponent VARCHAR) ### Question: Name the date for result loss for duke ### Answer: SELECT date FROM table_21092444_1 WHERE result = "Loss" AND opponent = "Duke"
Name the opponents for record of 2-1
CREATE TABLE table_21092444_1 (opponents VARCHAR, record VARCHAR)
SELECT opponents FROM table_21092444_1 WHERE record = "2-1"
### Context: CREATE TABLE table_21092444_1 (opponents VARCHAR, record VARCHAR) ### Question: Name the opponents for record of 2-1 ### Answer: SELECT opponents FROM table_21092444_1 WHERE record = "2-1"
Name the record for black knights points 54
CREATE TABLE table_21092444_1 (record VARCHAR, black_knights_points VARCHAR)
SELECT record FROM table_21092444_1 WHERE black_knights_points = 54
### Context: CREATE TABLE table_21092444_1 (record VARCHAR, black_knights_points VARCHAR) ### Question: Name the record for black knights points 54 ### Answer: SELECT record FROM table_21092444_1 WHERE black_knights_points = 54
Name the opponents stanford
CREATE TABLE table_21092444_1 (opponents VARCHAR, opponent VARCHAR)
SELECT opponents FROM table_21092444_1 WHERE opponent = "Stanford"
### Context: CREATE TABLE table_21092444_1 (opponents VARCHAR, opponent VARCHAR) ### Question: Name the opponents stanford ### Answer: SELECT opponents FROM table_21092444_1 WHERE opponent = "Stanford"
Name the result for ursinus college
CREATE TABLE table_21094951_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_21094951_1 WHERE opponent = "Ursinus College"
### Context: CREATE TABLE table_21094951_1 (result VARCHAR, opponent VARCHAR) ### Question: Name the result for ursinus college ### Answer: SELECT result FROM table_21094951_1 WHERE opponent = "Ursinus College"
Name the black knights points for loss result
CREATE TABLE table_21094951_1 (black_knights_points INTEGER, result VARCHAR)
SELECT MAX(black_knights_points) FROM table_21094951_1 WHERE result = "Loss"
### Context: CREATE TABLE table_21094951_1 (black_knights_points INTEGER, result VARCHAR) ### Question: Name the black knights points for loss result ### Answer: SELECT MAX(black_knights_points) FROM table_21094951_1 WHERE result = "Loss"
Name the date for 6-2 record
CREATE TABLE table_21094951_1 (date VARCHAR, record VARCHAR)
SELECT date FROM table_21094951_1 WHERE record = "6-2"
### Context: CREATE TABLE table_21094951_1 (date VARCHAR, record VARCHAR) ### Question: Name the date for 6-2 record ### Answer: SELECT date FROM table_21094951_1 WHERE record = "6-2"
Name the opponents for record being 2-0
CREATE TABLE table_21094951_1 (opponents INTEGER, record VARCHAR)
SELECT MAX(opponents) FROM table_21094951_1 WHERE record = "2-0"
### Context: CREATE TABLE table_21094951_1 (opponents INTEGER, record VARCHAR) ### Question: Name the opponents for record being 2-0 ### Answer: SELECT MAX(opponents) FROM table_21094951_1 WHERE record = "2-0"
How man innings were there during the period with a career average of 41.43?
CREATE TABLE table_21100348_10 (innings VARCHAR, average VARCHAR)
SELECT innings FROM table_21100348_10 WHERE average = "41.43"
### Context: CREATE TABLE table_21100348_10 (innings VARCHAR, average VARCHAR) ### Question: How man innings were there during the period with a career average of 41.43? ### Answer: SELECT innings FROM table_21100348_10 WHERE average = "41.43"
During what period did Ricky Ponting play?
CREATE TABLE table_21100348_10 (period VARCHAR, player VARCHAR)
SELECT period FROM table_21100348_10 WHERE player = "Ricky Ponting"
### Context: CREATE TABLE table_21100348_10 (period VARCHAR, player VARCHAR) ### Question: During what period did Ricky Ponting play? ### Answer: SELECT period FROM table_21100348_10 WHERE player = "Ricky Ponting"
During what period was the career average 44.10?
CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR)
SELECT period FROM table_21100348_10 WHERE average = "44.10"
### Context: CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR) ### Question: During what period was the career average 44.10? ### Answer: SELECT period FROM table_21100348_10 WHERE average = "44.10"
What was the smallest numbered rank for Michael Bevan?
CREATE TABLE table_21100348_10 (rank INTEGER, player VARCHAR)
SELECT MIN(rank) FROM table_21100348_10 WHERE player = "Michael Bevan"
### Context: CREATE TABLE table_21100348_10 (rank INTEGER, player VARCHAR) ### Question: What was the smallest numbered rank for Michael Bevan? ### Answer: SELECT MIN(rank) FROM table_21100348_10 WHERE player = "Michael Bevan"
What period was there a career average of 48.15?
CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR)
SELECT period FROM table_21100348_10 WHERE average = "48.15"
### Context: CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR) ### Question: What period was there a career average of 48.15? ### Answer: SELECT period FROM table_21100348_10 WHERE average = "48.15"
when the value (int $1000) is 409566, what is the commodity?
CREATE TABLE table_21109892_1 (commodity VARCHAR, value__int_$1000_ VARCHAR)
SELECT commodity FROM table_21109892_1 WHERE value__int_$1000_ = 409566
### Context: CREATE TABLE table_21109892_1 (commodity VARCHAR, value__int_$1000_ VARCHAR) ### Question: when the value (int $1000) is 409566, what is the commodity? ### Answer: SELECT commodity FROM table_21109892_1 WHERE value__int_$1000_ = 409566
When the value rank is 23, what is the value?
CREATE TABLE table_21109892_1 (value__int_ INTEGER, value_world_rank VARCHAR)
SELECT MIN(value__int_) AS $1000_ FROM table_21109892_1 WHERE value_world_rank = "23"
### Context: CREATE TABLE table_21109892_1 (value__int_ INTEGER, value_world_rank VARCHAR) ### Question: When the value rank is 23, what is the value? ### Answer: SELECT MIN(value__int_) AS $1000_ FROM table_21109892_1 WHERE value_world_rank = "23"
When the value world rank is 7, what is the rank?
CREATE TABLE table_21109892_1 (rank VARCHAR, value_world_rank VARCHAR)
SELECT rank FROM table_21109892_1 WHERE value_world_rank = "7"
### Context: CREATE TABLE table_21109892_1 (rank VARCHAR, value_world_rank VARCHAR) ### Question: When the value world rank is 7, what is the rank? ### Answer: SELECT rank FROM table_21109892_1 WHERE value_world_rank = "7"
When the production (mt) is 650000, what is the total number of rank?
CREATE TABLE table_21109892_1 (rank VARCHAR, production__mt_ VARCHAR)
SELECT COUNT(rank) FROM table_21109892_1 WHERE production__mt_ = 650000
### Context: CREATE TABLE table_21109892_1 (rank VARCHAR, production__mt_ VARCHAR) ### Question: When the production (mt) is 650000, what is the total number of rank? ### Answer: SELECT COUNT(rank) FROM table_21109892_1 WHERE production__mt_ = 650000
When the production (mt) is 446424, what is the value world rank ?
CREATE TABLE table_21109892_1 (value_world_rank VARCHAR, production__mt_ VARCHAR)
SELECT value_world_rank FROM table_21109892_1 WHERE production__mt_ = 446424
### Context: CREATE TABLE table_21109892_1 (value_world_rank VARCHAR, production__mt_ VARCHAR) ### Question: When the production (mt) is 446424, what is the value world rank ? ### Answer: SELECT value_world_rank FROM table_21109892_1 WHERE production__mt_ = 446424
where value world rank is 12, what is the quantity world rank?
CREATE TABLE table_21109892_1 (quantity_world_rank VARCHAR, value_world_rank VARCHAR)
SELECT quantity_world_rank FROM table_21109892_1 WHERE value_world_rank = "12"
### Context: CREATE TABLE table_21109892_1 (quantity_world_rank VARCHAR, value_world_rank VARCHAR) ### Question: where value world rank is 12, what is the quantity world rank? ### Answer: SELECT quantity_world_rank FROM table_21109892_1 WHERE value_world_rank = "12"
What is the rank of Tim Paine?
CREATE TABLE table_21100348_15 (rank VARCHAR, player VARCHAR)
SELECT rank FROM table_21100348_15 WHERE player = "Tim Paine"
### Context: CREATE TABLE table_21100348_15 (rank VARCHAR, player VARCHAR) ### Question: What is the rank of Tim Paine? ### Answer: SELECT rank FROM table_21100348_15 WHERE player = "Tim Paine"
What rank does Rodney Marsh have?
CREATE TABLE table_21100348_15 (rank INTEGER, player VARCHAR)
SELECT MAX(rank) FROM table_21100348_15 WHERE player = "Rodney Marsh"
### Context: CREATE TABLE table_21100348_15 (rank INTEGER, player VARCHAR) ### Question: What rank does Rodney Marsh have? ### Answer: SELECT MAX(rank) FROM table_21100348_15 WHERE player = "Rodney Marsh"
What is the rank for a strike rate of 91.67?
CREATE TABLE table_21100348_11 (rank INTEGER, strike_rate VARCHAR)
SELECT MAX(rank) FROM table_21100348_11 WHERE strike_rate = "91.67"
### Context: CREATE TABLE table_21100348_11 (rank INTEGER, strike_rate VARCHAR) ### Question: What is the rank for a strike rate of 91.67? ### Answer: SELECT MAX(rank) FROM table_21100348_11 WHERE strike_rate = "91.67"
What player has 477 runs?
CREATE TABLE table_21100348_11 (player VARCHAR, runs VARCHAR)
SELECT player FROM table_21100348_11 WHERE runs = 477
### Context: CREATE TABLE table_21100348_11 (player VARCHAR, runs VARCHAR) ### Question: What player has 477 runs? ### Answer: SELECT player FROM table_21100348_11 WHERE runs = 477
How many innings does rank 3 have?
CREATE TABLE table_21100348_11 (innings INTEGER, rank VARCHAR)
SELECT MAX(innings) FROM table_21100348_11 WHERE rank = 3
### Context: CREATE TABLE table_21100348_11 (innings INTEGER, rank VARCHAR) ### Question: How many innings does rank 3 have? ### Answer: SELECT MAX(innings) FROM table_21100348_11 WHERE rank = 3
What was the goals for in the season that the pct % was 0.604?
CREATE TABLE table_2110959_1 (goals_for INTEGER, pct__percentage VARCHAR)
SELECT MAX(goals_for) FROM table_2110959_1 WHERE pct__percentage = "0.604"
### Context: CREATE TABLE table_2110959_1 (goals_for INTEGER, pct__percentage VARCHAR) ### Question: What was the goals for in the season that the pct % was 0.604? ### Answer: SELECT MAX(goals_for) FROM table_2110959_1 WHERE pct__percentage = "0.604"
In what season was the pct % 0.552?
CREATE TABLE table_2110959_1 (season VARCHAR, pct__percentage VARCHAR)
SELECT season FROM table_2110959_1 WHERE pct__percentage = "0.552"
### Context: CREATE TABLE table_2110959_1 (season VARCHAR, pct__percentage VARCHAR) ### Question: In what season was the pct % 0.552? ### Answer: SELECT season FROM table_2110959_1 WHERE pct__percentage = "0.552"
What was the standing in the season that the pct% was 0.769?
CREATE TABLE table_2110959_1 (standing VARCHAR, pct__percentage VARCHAR)
SELECT standing FROM table_2110959_1 WHERE pct__percentage = "0.769"
### Context: CREATE TABLE table_2110959_1 (standing VARCHAR, pct__percentage VARCHAR) ### Question: What was the standing in the season that the pct% was 0.769? ### Answer: SELECT standing FROM table_2110959_1 WHERE pct__percentage = "0.769"
What were the points in the 1958-59 season?
CREATE TABLE table_2110959_1 (points VARCHAR, season VARCHAR)
SELECT points FROM table_2110959_1 WHERE season = "1958-59"
### Context: CREATE TABLE table_2110959_1 (points VARCHAR, season VARCHAR) ### Question: What were the points in the 1958-59 season? ### Answer: SELECT points FROM table_2110959_1 WHERE season = "1958-59"
Who were Dürr's opponents in the final on year 1968?
CREATE TABLE table_2112025_3 (opponents_in_the_final VARCHAR, year VARCHAR)
SELECT opponents_in_the_final FROM table_2112025_3 WHERE year = 1968
### Context: CREATE TABLE table_2112025_3 (opponents_in_the_final VARCHAR, year VARCHAR) ### Question: Who were Dürr's opponents in the final on year 1968? ### Answer: SELECT opponents_in_the_final FROM table_2112025_3 WHERE year = 1968
What was the court surface on year 1971?
CREATE TABLE table_2112025_3 (surface VARCHAR, year VARCHAR)
SELECT surface FROM table_2112025_3 WHERE year = 1971
### Context: CREATE TABLE table_2112025_3 (surface VARCHAR, year VARCHAR) ### Question: What was the court surface on year 1971? ### Answer: SELECT surface FROM table_2112025_3 WHERE year = 1971
Name the most top 10s for 2 best finish
CREATE TABLE table_2112220_6 (top_10s INTEGER, best_finish VARCHAR)
SELECT MAX(top_10s) FROM table_2112220_6 WHERE best_finish = "2"
### Context: CREATE TABLE table_2112220_6 (top_10s INTEGER, best_finish VARCHAR) ### Question: Name the most top 10s for 2 best finish ### Answer: SELECT MAX(top_10s) FROM table_2112220_6 WHERE best_finish = "2"
Name the tournaments played for 2004
CREATE TABLE table_2112220_6 (tournaments_played INTEGER, year VARCHAR)
SELECT MIN(tournaments_played) FROM table_2112220_6 WHERE year = 2004
### Context: CREATE TABLE table_2112220_6 (tournaments_played INTEGER, year VARCHAR) ### Question: Name the tournaments played for 2004 ### Answer: SELECT MIN(tournaments_played) FROM table_2112220_6 WHERE year = 2004
How many submission of the night occurred when the fighter was matt wiman?
CREATE TABLE table_21114902_1 (submissions_of_the_night INTEGER, fighter VARCHAR)
SELECT MAX(submissions_of_the_night) FROM table_21114902_1 WHERE fighter = "Matt Wiman"
### Context: CREATE TABLE table_21114902_1 (submissions_of_the_night INTEGER, fighter VARCHAR) ### Question: How many submission of the night occurred when the fighter was matt wiman? ### Answer: SELECT MAX(submissions_of_the_night) FROM table_21114902_1 WHERE fighter = "Matt Wiman"
How many knockout of the night occurred when joe lauzon fought.
CREATE TABLE table_21114902_1 (knockouts_of_the_night VARCHAR, fighter VARCHAR)
SELECT knockouts_of_the_night FROM table_21114902_1 WHERE fighter = "Joe Lauzon"
### Context: CREATE TABLE table_21114902_1 (knockouts_of_the_night VARCHAR, fighter VARCHAR) ### Question: How many knockout of the night occurred when joe lauzon fought. ### Answer: SELECT knockouts_of_the_night FROM table_21114902_1 WHERE fighter = "Joe Lauzon"
What is the smallest number of episodes in a season?
CREATE TABLE table_2113721_7 (episodes INTEGER)
SELECT MIN(episodes) FROM table_2113721_7
### Context: CREATE TABLE table_2113721_7 (episodes INTEGER) ### Question: What is the smallest number of episodes in a season? ### Answer: SELECT MIN(episodes) FROM table_2113721_7
When was Season Three premiered in region 2?
CREATE TABLE table_2113721_7 (region_2 VARCHAR, dvd_name VARCHAR)
SELECT region_2 FROM table_2113721_7 WHERE dvd_name = "Season Three"
### Context: CREATE TABLE table_2113721_7 (region_2 VARCHAR, dvd_name VARCHAR) ### Question: When was Season Three premiered in region 2? ### Answer: SELECT region_2 FROM table_2113721_7 WHERE dvd_name = "Season Three"
Where is every location with specialization of textile engineering?
CREATE TABLE table_2112260_1 (location VARCHAR, specialization VARCHAR)
SELECT location FROM table_2112260_1 WHERE specialization = "Textile engineering"
### Context: CREATE TABLE table_2112260_1 (location VARCHAR, specialization VARCHAR) ### Question: Where is every location with specialization of textile engineering? ### Answer: SELECT location FROM table_2112260_1 WHERE specialization = "Textile engineering"
What is every website with specialization of engineering and division of dhaka division?
CREATE TABLE table_2112260_1 (website VARCHAR, specialization VARCHAR, division VARCHAR)
SELECT website FROM table_2112260_1 WHERE specialization = "Engineering" AND division = "Dhaka division"
### Context: CREATE TABLE table_2112260_1 (website VARCHAR, specialization VARCHAR, division VARCHAR) ### Question: What is every website with specialization of engineering and division of dhaka division? ### Answer: SELECT website FROM table_2112260_1 WHERE specialization = "Engineering" AND division = "Dhaka division...
Where is every location where Nick is Bru?
CREATE TABLE table_2112260_1 (location VARCHAR, nick VARCHAR)
SELECT location FROM table_2112260_1 WHERE nick = "BRU"
### Context: CREATE TABLE table_2112260_1 (location VARCHAR, nick VARCHAR) ### Question: Where is every location where Nick is Bru? ### Answer: SELECT location FROM table_2112260_1 WHERE nick = "BRU"
What is every specialization with the website Jstu.edu.bd
CREATE TABLE table_2112260_1 (specialization VARCHAR, website VARCHAR)
SELECT specialization FROM table_2112260_1 WHERE website = "jstu.edu.bd"
### Context: CREATE TABLE table_2112260_1 (specialization VARCHAR, website VARCHAR) ### Question: What is every specialization with the website Jstu.edu.bd ### Answer: SELECT specialization FROM table_2112260_1 WHERE website = "jstu.edu.bd"
Name the languages for cyprus
CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR)
SELECT languages FROM table_21133193_1 WHERE member_countries = "Cyprus"
### Context: CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR) ### Question: Name the languages for cyprus ### Answer: SELECT languages FROM table_21133193_1 WHERE member_countries = "Cyprus"
Name the languages for estonia
CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR)
SELECT languages FROM table_21133193_1 WHERE member_countries = "Estonia"
### Context: CREATE TABLE table_21133193_1 (languages VARCHAR, member_countries VARCHAR) ### Question: Name the languages for estonia ### Answer: SELECT languages FROM table_21133193_1 WHERE member_countries = "Estonia"
Name the most gdp per capita latvian
CREATE TABLE table_21133193_1 (gdp_per_capita__us INTEGER, languages VARCHAR)
SELECT MAX(gdp_per_capita__us) AS $_ FROM table_21133193_1 WHERE languages = "Latvian"
### Context: CREATE TABLE table_21133193_1 (gdp_per_capita__us INTEGER, languages VARCHAR) ### Question: Name the most gdp per capita latvian ### Answer: SELECT MAX(gdp_per_capita__us) AS $_ FROM table_21133193_1 WHERE languages = "Latvian"
how many archive were when run time is 24:34
CREATE TABLE table_2112766_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_2112766_1 WHERE run_time = "24:34"
### Context: CREATE TABLE table_2112766_1 (archive VARCHAR, run_time VARCHAR) ### Question: how many archive were when run time is 24:34 ### Answer: SELECT archive FROM table_2112766_1 WHERE run_time = "24:34"
what is all the broadcast date when viewers were 8.4 millions
CREATE TABLE table_2112766_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT COUNT(broadcast_date) FROM table_2112766_1 WHERE viewers__in_millions_ = "8.4"
### Context: CREATE TABLE table_2112766_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR) ### Question: what is all the broadcast date when viewers were 8.4 millions ### Answer: SELECT COUNT(broadcast_date) FROM table_2112766_1 WHERE viewers__in_millions_ = "8.4"
how many episode have 8.4 millions viewer.
CREATE TABLE table_2112766_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
SELECT COUNT(episode) FROM table_2112766_1 WHERE viewers__in_millions_ = "8.4"
### Context: CREATE TABLE table_2112766_1 (episode VARCHAR, viewers__in_millions_ VARCHAR) ### Question: how many episode have 8.4 millions viewer. ### Answer: SELECT COUNT(episode) FROM table_2112766_1 WHERE viewers__in_millions_ = "8.4"
What was the title in season #8?
CREATE TABLE table_21146729_6 (title VARCHAR, season__number VARCHAR)
SELECT title FROM table_21146729_6 WHERE season__number = 8
### Context: CREATE TABLE table_21146729_6 (title VARCHAR, season__number VARCHAR) ### Question: What was the title in season #8? ### Answer: SELECT title FROM table_21146729_6 WHERE season__number = 8
Who was the director when the writer(s) was John W. Bloch?
CREATE TABLE table_21146729_6 (director VARCHAR, writer_s_ VARCHAR)
SELECT director FROM table_21146729_6 WHERE writer_s_ = "John W. Bloch"
### Context: CREATE TABLE table_21146729_6 (director VARCHAR, writer_s_ VARCHAR) ### Question: Who was the director when the writer(s) was John W. Bloch? ### Answer: SELECT director FROM table_21146729_6 WHERE writer_s_ = "John W. Bloch"
What was the series# with the original airdate of october 23, 1967?
CREATE TABLE table_21146729_6 (series__number INTEGER, original_airdate VARCHAR)
SELECT MAX(series__number) FROM table_21146729_6 WHERE original_airdate = "October 23, 1967"
### Context: CREATE TABLE table_21146729_6 (series__number INTEGER, original_airdate VARCHAR) ### Question: What was the series# with the original airdate of october 23, 1967? ### Answer: SELECT MAX(series__number) FROM table_21146729_6 WHERE original_airdate = "October 23, 1967"
what is the title when the writer(s) is jack turley?
CREATE TABLE table_21146729_6 (title VARCHAR, writer_s_ VARCHAR)
SELECT title FROM table_21146729_6 WHERE writer_s_ = "Jack Turley"
### Context: CREATE TABLE table_21146729_6 (title VARCHAR, writer_s_ VARCHAR) ### Question: what is the title when the writer(s) is jack turley? ### Answer: SELECT title FROM table_21146729_6 WHERE writer_s_ = "Jack Turley"
How many of the series # when the original airdate is september 25, 1967?
CREATE TABLE table_21146729_6 (series__number VARCHAR, original_airdate VARCHAR)
SELECT COUNT(series__number) FROM table_21146729_6 WHERE original_airdate = "September 25, 1967"
### Context: CREATE TABLE table_21146729_6 (series__number VARCHAR, original_airdate VARCHAR) ### Question: How many of the series # when the original airdate is september 25, 1967? ### Answer: SELECT COUNT(series__number) FROM table_21146729_6 WHERE original_airdate = "September 25, 1967"
Name the episode for run time of 22:50
CREATE TABLE table_2114308_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2114308_1 WHERE run_time = "22:50"
### Context: CREATE TABLE table_2114308_1 (episode VARCHAR, run_time VARCHAR) ### Question: Name the episode for run time of 22:50 ### Answer: SELECT episode FROM table_2114308_1 WHERE run_time = "22:50"
Name the broadcast date of 6.9 million viewers
CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT broadcast_date FROM table_2114308_1 WHERE viewers__in_millions_ = "6.9"
### Context: CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR) ### Question: Name the broadcast date of 6.9 million viewers ### Answer: SELECT broadcast_date FROM table_2114308_1 WHERE viewers__in_millions_ = "6.9"
Name the broadcast date of run time being 24:14
CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT broadcast_date FROM table_2114308_1 WHERE run_time = "24:14"
### Context: CREATE TABLE table_2114308_1 (broadcast_date VARCHAR, run_time VARCHAR) ### Question: Name the broadcast date of run time being 24:14 ### Answer: SELECT broadcast_date FROM table_2114308_1 WHERE run_time = "24:14"
Which archive has a run time of 23:48?
CREATE TABLE table_2114238_1 (archive VARCHAR, run_time VARCHAR)
SELECT archive FROM table_2114238_1 WHERE run_time = "23:48"
### Context: CREATE TABLE table_2114238_1 (archive VARCHAR, run_time VARCHAR) ### Question: Which archive has a run time of 23:48? ### Answer: SELECT archive FROM table_2114238_1 WHERE run_time = "23:48"
Which broadcast date has 6.8 million viewers?
CREATE TABLE table_2114238_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT broadcast_date FROM table_2114238_1 WHERE viewers__in_millions_ = "6.8"
### Context: CREATE TABLE table_2114238_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR) ### Question: Which broadcast date has 6.8 million viewers? ### Answer: SELECT broadcast_date FROM table_2114238_1 WHERE viewers__in_millions_ = "6.8"
What Petrol engine has total power of ps (kw; bhp)@5400-6500?
CREATE TABLE table_21154679_1 (model VARCHAR, max_power VARCHAR)
SELECT model FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)@5400-6500"
### Context: CREATE TABLE table_21154679_1 (model VARCHAR, max_power VARCHAR) ### Question: What Petrol engine has total power of ps (kw; bhp)@5400-6500? ### Answer: SELECT model FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)@5400-6500"
What is top speed of a petrol engine at ps (kw; bhp)@5250-6250?
CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR)
SELECT top_speed FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)@5250-6250"
### Context: CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR) ### Question: What is top speed of a petrol engine at ps (kw; bhp)@5250-6250? ### Answer: SELECT top_speed FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)@5250-6250"
What is the maximum speed for total power of ps (kw; bhp)?
CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR)
SELECT top_speed FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)"
### Context: CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR) ### Question: What is the maximum speed for total power of ps (kw; bhp)? ### Answer: SELECT top_speed FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)"
What is the s7 4.0 tfsi quattro engine torque?
CREATE TABLE table_21154679_1 (torque VARCHAR, model VARCHAR)
SELECT torque FROM table_21154679_1 WHERE model = "S7 4.0 TFSI quattro"
### Context: CREATE TABLE table_21154679_1 (torque VARCHAR, model VARCHAR) ### Question: What is the s7 4.0 tfsi quattro engine torque? ### Answer: SELECT torque FROM table_21154679_1 WHERE model = "S7 4.0 TFSI quattro"
Name the number in season for 4300062
CREATE TABLE table_21165255_1 (no_in_season INTEGER, production_code VARCHAR)
SELECT MAX(no_in_season) FROM table_21165255_1 WHERE production_code = 4300062
### Context: CREATE TABLE table_21165255_1 (no_in_season INTEGER, production_code VARCHAR) ### Question: Name the number in season for 4300062 ### Answer: SELECT MAX(no_in_season) FROM table_21165255_1 WHERE production_code = 4300062
Name the number of cancelled for turnham green
CREATE TABLE table_211615_2 (cancelled VARCHAR, station VARCHAR)
SELECT COUNT(cancelled) FROM table_211615_2 WHERE station = "Turnham Green"
### Context: CREATE TABLE table_211615_2 (cancelled VARCHAR, station VARCHAR) ### Question: Name the number of cancelled for turnham green ### Answer: SELECT COUNT(cancelled) FROM table_211615_2 WHERE station = "Turnham Green"
Name the number of details for emlyn road
CREATE TABLE table_211615_2 (details VARCHAR, station VARCHAR)
SELECT COUNT(details) FROM table_211615_2 WHERE station = "Emlyn Road"
### Context: CREATE TABLE table_211615_2 (details VARCHAR, station VARCHAR) ### Question: Name the number of details for emlyn road ### Answer: SELECT COUNT(details) FROM table_211615_2 WHERE station = "Emlyn Road"
What episode number in the series was directed by John Behring?
CREATE TABLE table_21164557_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_series) FROM table_21164557_1 WHERE directed_by = "John Behring"
### Context: CREATE TABLE table_21164557_1 (no_in_series INTEGER, directed_by VARCHAR) ### Question: What episode number in the series was directed by John Behring? ### Answer: SELECT MAX(no_in_series) FROM table_21164557_1 WHERE directed_by = "John Behring"
How many original air dates were there for episodes with a production code of 4398016?
CREATE TABLE table_21164557_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT COUNT(original_air_date) FROM table_21164557_1 WHERE production_code = 4398016
### Context: CREATE TABLE table_21164557_1 (original_air_date VARCHAR, production_code VARCHAR) ### Question: How many original air dates were there for episodes with a production code of 4398016? ### Answer: SELECT COUNT(original_air_date) FROM table_21164557_1 WHERE production_code = 4398016
Name the rank for 14.80 viewers
CREATE TABLE table_211714_2 (rank VARCHAR, viewers__in_millions_ VARCHAR)
SELECT rank FROM table_211714_2 WHERE viewers__in_millions_ = "14.80"
### Context: CREATE TABLE table_211714_2 (rank VARCHAR, viewers__in_millions_ VARCHAR) ### Question: Name the rank for 14.80 viewers ### Answer: SELECT rank FROM table_211714_2 WHERE viewers__in_millions_ = "14.80"
Name the number of rank for season 6
CREATE TABLE table_211714_2 (rank VARCHAR, season VARCHAR)
SELECT COUNT(rank) FROM table_211714_2 WHERE season = 6
### Context: CREATE TABLE table_211714_2 (rank VARCHAR, season VARCHAR) ### Question: Name the number of rank for season 6 ### Answer: SELECT COUNT(rank) FROM table_211714_2 WHERE season = 6
What date did the episode with a production code of 4301085 originally air?
CREATE TABLE table_21172539_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_21172539_1 WHERE production_code = 4301085
### Context: CREATE TABLE table_21172539_1 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What date did the episode with a production code of 4301085 originally air? ### Answer: SELECT original_air_date FROM table_21172539_1 WHERE production_code = 4301085
What date did episode 15 of the season originally air?
CREATE TABLE table_21172539_1 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT original_air_date FROM table_21172539_1 WHERE no_in_season = 15
### Context: CREATE TABLE table_21172539_1 (original_air_date VARCHAR, no_in_season VARCHAR) ### Question: What date did episode 15 of the season originally air? ### Answer: SELECT original_air_date FROM table_21172539_1 WHERE no_in_season = 15
Name the remarks for sawhouse
CREATE TABLE table_211791_1 (remarks VARCHAR, nato_reporting_name VARCHAR)
SELECT remarks FROM table_211791_1 WHERE nato_reporting_name = "SAWHOUSE"
### Context: CREATE TABLE table_211791_1 (remarks VARCHAR, nato_reporting_name VARCHAR) ### Question: Name the remarks for sawhouse ### Answer: SELECT remarks FROM table_211791_1 WHERE nato_reporting_name = "SAWHOUSE"
Name the nato/ us dod code for sabbot
CREATE TABLE table_211791_1 (nato_us_dod_code VARCHAR, nato_reporting_name VARCHAR)
SELECT nato_us_dod_code FROM table_211791_1 WHERE nato_reporting_name = "SABBOT"
### Context: CREATE TABLE table_211791_1 (nato_us_dod_code VARCHAR, nato_reporting_name VARCHAR) ### Question: Name the nato/ us dod code for sabbot ### Answer: SELECT nato_us_dod_code FROM table_211791_1 WHERE nato_reporting_name = "SABBOT"
When autodromo nazionale monza is the circuit what is the report?
CREATE TABLE table_21191496_1 (report VARCHAR, circuit VARCHAR)
SELECT report FROM table_21191496_1 WHERE circuit = "Autodromo Nazionale Monza"
### Context: CREATE TABLE table_21191496_1 (report VARCHAR, circuit VARCHAR) ### Question: When autodromo nazionale monza is the circuit what is the report? ### Answer: SELECT report FROM table_21191496_1 WHERE circuit = "Autodromo Nazionale Monza"
When michele pirro is the pole position what is the date?
CREATE TABLE table_21191496_1 (date VARCHAR, pole_position VARCHAR)
SELECT date FROM table_21191496_1 WHERE pole_position = "Michele Pirro"
### Context: CREATE TABLE table_21191496_1 (date VARCHAR, pole_position VARCHAR) ### Question: When michele pirro is the pole position what is the date? ### Answer: SELECT date FROM table_21191496_1 WHERE pole_position = "Michele Pirro"
When Netherlands is the country what is the report?
CREATE TABLE table_21191496_1 (report VARCHAR, country VARCHAR)
SELECT report FROM table_21191496_1 WHERE country = "Netherlands"
### Context: CREATE TABLE table_21191496_1 (report VARCHAR, country VARCHAR) ### Question: When Netherlands is the country what is the report? ### Answer: SELECT report FROM table_21191496_1 WHERE country = "Netherlands"
When circuit ricardo tormo is the circuit who is the winning team?
CREATE TABLE table_21191496_1 (winning_team VARCHAR, circuit VARCHAR)
SELECT winning_team FROM table_21191496_1 WHERE circuit = "circuit Ricardo Tormo"
### Context: CREATE TABLE table_21191496_1 (winning_team VARCHAR, circuit VARCHAR) ### Question: When circuit ricardo tormo is the circuit who is the winning team? ### Answer: SELECT winning_team FROM table_21191496_1 WHERE circuit = "circuit Ricardo Tormo"
When circuit ricardo tormo is the circuit what is the round?
CREATE TABLE table_21191496_1 (round VARCHAR, circuit VARCHAR)
SELECT COUNT(round) FROM table_21191496_1 WHERE circuit = "circuit Ricardo Tormo"
### Context: CREATE TABLE table_21191496_1 (round VARCHAR, circuit VARCHAR) ### Question: When circuit ricardo tormo is the circuit what is the round? ### Answer: SELECT COUNT(round) FROM table_21191496_1 WHERE circuit = "circuit Ricardo Tormo"
How many opponents were there when the record was 6-0?
CREATE TABLE table_21197135_1 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_21197135_1 WHERE record = "6-0"
### Context: CREATE TABLE table_21197135_1 (opponent VARCHAR, record VARCHAR) ### Question: How many opponents were there when the record was 6-0? ### Answer: SELECT COUNT(opponent) FROM table_21197135_1 WHERE record = "6-0"
How many opponents were there when the record was 6-0?
CREATE TABLE table_21197135_1 (date VARCHAR, record VARCHAR)
SELECT date FROM table_21197135_1 WHERE record = "6-0"
### Context: CREATE TABLE table_21197135_1 (date VARCHAR, record VARCHAR) ### Question: How many opponents were there when the record was 6-0? ### Answer: SELECT date FROM table_21197135_1 WHERE record = "6-0"
What was the team record when the team played @ Utah?
CREATE TABLE table_21197135_1 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_21197135_1 WHERE opponent = "@ Utah"
### Context: CREATE TABLE table_21197135_1 (record VARCHAR, opponent VARCHAR) ### Question: What was the team record when the team played @ Utah? ### Answer: SELECT record FROM table_21197135_1 WHERE opponent = "@ Utah"
How many points did the Cowboys have when they had a 7-0 record?
CREATE TABLE table_21197135_1 (cowboys_points VARCHAR, record VARCHAR)
SELECT cowboys_points FROM table_21197135_1 WHERE record = "7-0"
### Context: CREATE TABLE table_21197135_1 (cowboys_points VARCHAR, record VARCHAR) ### Question: How many points did the Cowboys have when they had a 7-0 record? ### Answer: SELECT cowboys_points FROM table_21197135_1 WHERE record = "7-0"
Name the scoreboard for total being 23.5
CREATE TABLE table_21234111_6 (scoreboard VARCHAR, total VARCHAR)
SELECT scoreboard FROM table_21234111_6 WHERE total = "23.5"
### Context: CREATE TABLE table_21234111_6 (scoreboard VARCHAR, total VARCHAR) ### Question: Name the scoreboard for total being 23.5 ### Answer: SELECT scoreboard FROM table_21234111_6 WHERE total = "23.5"
Name the jason for public vote being 19.20%
CREATE TABLE table_21234111_6 (jason VARCHAR, public_vote__percentage VARCHAR)
SELECT jason FROM table_21234111_6 WHERE public_vote__percentage = "19.20%"
### Context: CREATE TABLE table_21234111_6 (jason VARCHAR, public_vote__percentage VARCHAR) ### Question: Name the jason for public vote being 19.20% ### Answer: SELECT jason FROM table_21234111_6 WHERE public_vote__percentage = "19.20%"
Name the number of song for scoreboard being 3rd
CREATE TABLE table_21234111_6 (song VARCHAR, scoreboard VARCHAR)
SELECT COUNT(song) FROM table_21234111_6 WHERE scoreboard = "3rd"
### Context: CREATE TABLE table_21234111_6 (song VARCHAR, scoreboard VARCHAR) ### Question: Name the number of song for scoreboard being 3rd ### Answer: SELECT COUNT(song) FROM table_21234111_6 WHERE scoreboard = "3rd"
state the opponent on halliwell jones stadium in super league xiv
CREATE TABLE table_21256068_3 (opponent VARCHAR, venue VARCHAR, competition VARCHAR)
SELECT opponent FROM table_21256068_3 WHERE venue = "Halliwell Jones Stadium" AND competition = "Super League XIV"
### Context: CREATE TABLE table_21256068_3 (opponent VARCHAR, venue VARCHAR, competition VARCHAR) ### Question: state the opponent on halliwell jones stadium in super league xiv ### Answer: SELECT opponent FROM table_21256068_3 WHERE venue = "Halliwell Jones Stadium" AND competition = "Super League XIV"
how many venues were played on in round 1
CREATE TABLE table_21256068_3 (venue VARCHAR, round VARCHAR)
SELECT COUNT(venue) FROM table_21256068_3 WHERE round = "1"
### Context: CREATE TABLE table_21256068_3 (venue VARCHAR, round VARCHAR) ### Question: how many venues were played on in round 1 ### Answer: SELECT COUNT(venue) FROM table_21256068_3 WHERE round = "1"
state the round that had a game score 50-10
CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)
SELECT round FROM table_21256068_3 WHERE score = "50-10"
### Context: CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR) ### Question: state the round that had a game score 50-10 ### Answer: SELECT round FROM table_21256068_3 WHERE score = "50-10"
state the round that had a game attended attended by 9359 people
CREATE TABLE table_21256068_3 (round VARCHAR, attendance VARCHAR)
SELECT round FROM table_21256068_3 WHERE attendance = 9359
### Context: CREATE TABLE table_21256068_3 (round VARCHAR, attendance VARCHAR) ### Question: state the round that had a game attended attended by 9359 people ### Answer: SELECT round FROM table_21256068_3 WHERE attendance = 9359
how many rounds had the score 44-22
CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)
SELECT COUNT(round) FROM table_21256068_3 WHERE score = "44-22"
### Context: CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR) ### Question: how many rounds had the score 44-22 ### Answer: SELECT COUNT(round) FROM table_21256068_3 WHERE score = "44-22"
what's the score against crusaders
CREATE TABLE table_21256068_3 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_21256068_3 WHERE opponent = "Crusaders"
### Context: CREATE TABLE table_21256068_3 (score VARCHAR, opponent VARCHAR) ### Question: what's the score against crusaders ### Answer: SELECT score FROM table_21256068_3 WHERE opponent = "Crusaders"
How many Small catagories are there for the department that has a medium of 17101?
CREATE TABLE table_21249915_1 (small__100ha_ VARCHAR, medium__500ha_ VARCHAR)
SELECT COUNT(small__100ha_) FROM table_21249915_1 WHERE medium__500ha_ = 17101
### Context: CREATE TABLE table_21249915_1 (small__100ha_ VARCHAR, medium__500ha_ VARCHAR) ### Question: How many Small catagories are there for the department that has a medium of 17101? ### Answer: SELECT COUNT(small__100ha_) FROM table_21249915_1 WHERE medium__500ha_ = 17101
What is the total for Chuquisaca?
CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR)
SELECT total FROM table_21249915_1 WHERE department = "Chuquisaca"
### Context: CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR) ### Question: What is the total for Chuquisaca? ### Answer: SELECT total FROM table_21249915_1 WHERE department = "Chuquisaca"
Which department has a small of 11370?
CREATE TABLE table_21249915_1 (department VARCHAR, small__100ha_ VARCHAR)
SELECT department FROM table_21249915_1 WHERE small__100ha_ = 11370
### Context: CREATE TABLE table_21249915_1 (department VARCHAR, small__100ha_ VARCHAR) ### Question: Which department has a small of 11370? ### Answer: SELECT department FROM table_21249915_1 WHERE small__100ha_ = 11370
How many total catagories are there for La Paz?
CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR)
SELECT COUNT(total) FROM table_21249915_1 WHERE department = "La Paz"
### Context: CREATE TABLE table_21249915_1 (total VARCHAR, department VARCHAR) ### Question: How many total catagories are there for La Paz? ### Answer: SELECT COUNT(total) FROM table_21249915_1 WHERE department = "La Paz"
How many points under par was the winner of the Miyagi TV Cup Dunlop Ladies Open?
CREATE TABLE table_2126093_3 (to_par VARCHAR, tournament VARCHAR)
SELECT to_par FROM table_2126093_3 WHERE tournament = "Miyagi TV Cup Dunlop Ladies Open"
### Context: CREATE TABLE table_2126093_3 (to_par VARCHAR, tournament VARCHAR) ### Question: How many points under par was the winner of the Miyagi TV Cup Dunlop Ladies Open? ### Answer: SELECT to_par FROM table_2126093_3 WHERE tournament = "Miyagi TV Cup Dunlop Ladies Open"
What was the winning score of the Vernal Ladies tournament?
CREATE TABLE table_2126093_3 (winning_score VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_2126093_3 WHERE tournament = "Vernal Ladies"
### Context: CREATE TABLE table_2126093_3 (winning_score VARCHAR, tournament VARCHAR) ### Question: What was the winning score of the Vernal Ladies tournament? ### Answer: SELECT winning_score FROM table_2126093_3 WHERE tournament = "Vernal Ladies"