question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What was the place and how many people attended the game on July 11?
CREATE TABLE table_18813011_6 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_18813011_6 WHERE date = "July 11"
### Context: CREATE TABLE table_18813011_6 (location_attendance VARCHAR, date VARCHAR) ### Question: What was the place and how many people attended the game on July 11? ### Answer: SELECT location_attendance FROM table_18813011_6 WHERE date = "July 11"
Who had the most assist and how many on July 26?
CREATE TABLE table_18813011_6 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_18813011_6 WHERE date = "July 26"
### Context: CREATE TABLE table_18813011_6 (high_assists VARCHAR, date VARCHAR) ### Question: Who had the most assist and how many on July 26? ### Answer: SELECT high_assists FROM table_18813011_6 WHERE date = "July 26"
Who had the high assist in the game where the record is 13-11?
CREATE TABLE table_18813011_6 (high_assists VARCHAR, record VARCHAR)
SELECT high_assists FROM table_18813011_6 WHERE record = "13-11"
### Context: CREATE TABLE table_18813011_6 (high_assists VARCHAR, record VARCHAR) ### Question: Who had the high assist in the game where the record is 13-11? ### Answer: SELECT high_assists FROM table_18813011_6 WHERE record = "13-11"
At what date did the 23rd manager vacate the position?
CREATE TABLE table_18795125_6 (date_of_vacancy VARCHAR, position_in_table VARCHAR)
SELECT date_of_vacancy FROM table_18795125_6 WHERE position_in_table = "23rd"
### Context: CREATE TABLE table_18795125_6 (date_of_vacancy VARCHAR, position_in_table VARCHAR) ### Question: At what date did the 23rd manager vacate the position? ### Answer: SELECT date_of_vacancy FROM table_18795125_6 WHERE position_in_table = "23rd"
What was the date of appointment for the manager that replaced Simon Davies?
CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_18795125_6 WHERE outgoing_manager = "Simon Davies"
### Context: CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) ### Question: What was the date of appointment for the manager that replaced Simon Davies? ### Answer: SELECT date_of_appointment FROM table_18795125_6 WHERE outgoing_manager = "Simon Davies"
What was the date of appointment for the manager of the 23rd team?
CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, position_in_table VARCHAR)
SELECT date_of_appointment FROM table_18795125_6 WHERE position_in_table = "23rd"
### Context: CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, position_in_table VARCHAR) ### Question: What was the date of appointment for the manager of the 23rd team? ### Answer: SELECT date_of_appointment FROM table_18795125_6 WHERE position_in_table = "23rd"
How many categories for, replaced by, exist when the outgoing manager is Alan Buckley?
CREATE TABLE table_18795125_6 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT COUNT(replaced_by) FROM table_18795125_6 WHERE outgoing_manager = "Alan Buckley"
### Context: CREATE TABLE table_18795125_6 (replaced_by VARCHAR, outgoing_manager VARCHAR) ### Question: How many categories for, replaced by, exist when the outgoing manager is Alan Buckley? ### Answer: SELECT COUNT(replaced_by) FROM table_18795125_6 WHERE outgoing_manager = "Alan Buckley"
Which driver starts 3?
CREATE TABLE table_18811741_15 (driver VARCHAR, starts VARCHAR)
SELECT driver FROM table_18811741_15 WHERE starts = 3
### Context: CREATE TABLE table_18811741_15 (driver VARCHAR, starts VARCHAR) ### Question: Which driver starts 3? ### Answer: SELECT driver FROM table_18811741_15 WHERE starts = 3
How many podiums for the driver with 18 stage wins?
CREATE TABLE table_18811741_15 (podiums VARCHAR, stage_wins VARCHAR)
SELECT COUNT(podiums) FROM table_18811741_15 WHERE stage_wins = 18
### Context: CREATE TABLE table_18811741_15 (podiums VARCHAR, stage_wins VARCHAR) ### Question: How many podiums for the driver with 18 stage wins? ### Answer: SELECT COUNT(podiums) FROM table_18811741_15 WHERE stage_wins = 18
What is the highest pos for a driver with 1 podium?
CREATE TABLE table_18811741_15 (pos INTEGER, podiums VARCHAR)
SELECT MAX(pos) FROM table_18811741_15 WHERE podiums = 1
### Context: CREATE TABLE table_18811741_15 (pos INTEGER, podiums VARCHAR) ### Question: What is the highest pos for a driver with 1 podium? ### Answer: SELECT MAX(pos) FROM table_18811741_15 WHERE podiums = 1
What is every TV network with a weekly schedule of Monday to Thursday @ 11:00 pm?
CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, weekly_schedule VARCHAR)
SELECT tv_network_s_ FROM table_18821196_1 WHERE weekly_schedule = "Monday to Thursday @ 11:00 pm"
### Context: CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, weekly_schedule VARCHAR) ### Question: What is every TV network with a weekly schedule of Monday to Thursday @ 11:00 pm? ### Answer: SELECT tv_network_s_ FROM table_18821196_1 WHERE weekly_schedule = "Monday to Thursday @ 11:00 pm"
What is every country with a TV network of AXN India?
CREATE TABLE table_18821196_1 (country VARCHAR, tv_network_s_ VARCHAR)
SELECT country FROM table_18821196_1 WHERE tv_network_s_ = "AXN India"
### Context: CREATE TABLE table_18821196_1 (country VARCHAR, tv_network_s_ VARCHAR) ### Question: What is every country with a TV network of AXN India? ### Answer: SELECT country FROM table_18821196_1 WHERE tv_network_s_ = "AXN India"
What is every weekly schedule in the country of Norway?
CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, country VARCHAR)
SELECT weekly_schedule FROM table_18821196_1 WHERE country = "Norway"
### Context: CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, country VARCHAR) ### Question: What is every weekly schedule in the country of Norway? ### Answer: SELECT weekly_schedule FROM table_18821196_1 WHERE country = "Norway"
What is every TV network in Belgium?
CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, country VARCHAR)
SELECT tv_network_s_ FROM table_18821196_1 WHERE country = "Belgium"
### Context: CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, country VARCHAR) ### Question: What is every TV network in Belgium? ### Answer: SELECT tv_network_s_ FROM table_18821196_1 WHERE country = "Belgium"
What is every status with a weekly schedule of Monday to Thursday @ 11:00 pm?
CREATE TABLE table_18821196_1 (status VARCHAR, weekly_schedule VARCHAR)
SELECT status FROM table_18821196_1 WHERE weekly_schedule = "Monday to Thursday @ 11:00 pm"
### Context: CREATE TABLE table_18821196_1 (status VARCHAR, weekly_schedule VARCHAR) ### Question: What is every status with a weekly schedule of Monday to Thursday @ 11:00 pm? ### Answer: SELECT status FROM table_18821196_1 WHERE weekly_schedule = "Monday to Thursday @ 11:00 pm"
What is every weekly schedule of TV network Viasat 4?
CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, tv_network_s_ VARCHAR)
SELECT weekly_schedule FROM table_18821196_1 WHERE tv_network_s_ = "Viasat 4"
### Context: CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, tv_network_s_ VARCHAR) ### Question: What is every weekly schedule of TV network Viasat 4? ### Answer: SELECT weekly_schedule FROM table_18821196_1 WHERE tv_network_s_ = "Viasat 4"
How much was the prize money for rwe-sporthalle, mülheim ?
CREATE TABLE table_18828487_1 (prize_fund VARCHAR, venue VARCHAR)
SELECT prize_fund FROM table_18828487_1 WHERE venue = "RWE-Sporthalle, Mülheim"
### Context: CREATE TABLE table_18828487_1 (prize_fund VARCHAR, venue VARCHAR) ### Question: How much was the prize money for rwe-sporthalle, mülheim ? ### Answer: SELECT prize_fund FROM table_18828487_1 WHERE venue = "RWE-Sporthalle, Mülheim"
In 2009, how many were runner-up?
CREATE TABLE table_18828487_1 (runner_up VARCHAR, year VARCHAR)
SELECT COUNT(runner_up) FROM table_18828487_1 WHERE year = 2009
### Context: CREATE TABLE table_18828487_1 (runner_up VARCHAR, year VARCHAR) ### Question: In 2009, how many were runner-up? ### Answer: SELECT COUNT(runner_up) FROM table_18828487_1 WHERE year = 2009
How much does the champion get for stadthalle dinslaken, dinslaken?
CREATE TABLE table_18828487_1 (champion VARCHAR, venue VARCHAR)
SELECT champion FROM table_18828487_1 WHERE venue = "Stadthalle Dinslaken, Dinslaken"
### Context: CREATE TABLE table_18828487_1 (champion VARCHAR, venue VARCHAR) ### Question: How much does the champion get for stadthalle dinslaken, dinslaken? ### Answer: SELECT champion FROM table_18828487_1 WHERE venue = "Stadthalle Dinslaken, Dinslaken"
When by80607002529af is the part number and september 2009 is the release date what is the l2 cache?
CREATE TABLE table_18823880_10 (l2_cache VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR)
SELECT l2_cache FROM table_18823880_10 WHERE release_date = "September 2009" AND part_number_s_ = "BY80607002529AF"
### Context: CREATE TABLE table_18823880_10 (l2_cache VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR) ### Question: When by80607002529af is the part number and september 2009 is the release date what is the l2 cache? ### Answer: SELECT l2_cache FROM table_18823880_10 WHERE release_date = "September 2009" AND par...
When by80607002907ahbx80607i7720qm is the part number what is the socket?
CREATE TABLE table_18823880_10 (socket VARCHAR, part_number_s_ VARCHAR)
SELECT socket FROM table_18823880_10 WHERE part_number_s_ = "BY80607002907AHBX80607I7720QM"
### Context: CREATE TABLE table_18823880_10 (socket VARCHAR, part_number_s_ VARCHAR) ### Question: When by80607002907ahbx80607i7720qm is the part number what is the socket? ### Answer: SELECT socket FROM table_18823880_10 WHERE part_number_s_ = "BY80607002907AHBX80607I7720QM"
When slblw(b1) is the sspec number what is the mult.?
CREATE TABLE table_18823880_10 (mult VARCHAR, sspec_number VARCHAR)
SELECT mult FROM table_18823880_10 WHERE sspec_number = "SLBLW(B1)"
### Context: CREATE TABLE table_18823880_10 (mult VARCHAR, sspec_number VARCHAR) ### Question: When slblw(b1) is the sspec number what is the mult.? ### Answer: SELECT mult FROM table_18823880_10 WHERE sspec_number = "SLBLW(B1)"
When socketg1 is the socket what is the release price in dollars?
CREATE TABLE table_18823880_10 (release_price___usd__ VARCHAR, socket VARCHAR)
SELECT release_price___usd__ FROM table_18823880_10 WHERE socket = "socketG1"
### Context: CREATE TABLE table_18823880_10 (release_price___usd__ VARCHAR, socket VARCHAR) ### Question: When socketg1 is the socket what is the release price in dollars? ### Answer: SELECT release_price___usd__ FROM table_18823880_10 WHERE socket = "socketG1"
How many points did the opposing team score on Dec. 19, 1982?
CREATE TABLE table_18847456_2 (opponents INTEGER, date VARCHAR)
SELECT MAX(opponents) FROM table_18847456_2 WHERE date = "Dec. 19"
### Context: CREATE TABLE table_18847456_2 (opponents INTEGER, date VARCHAR) ### Question: How many points did the opposing team score on Dec. 19, 1982? ### Answer: SELECT MAX(opponents) FROM table_18847456_2 WHERE date = "Dec. 19"
How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0?
CREATE TABLE table_18852984_2 (bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR)
SELECT bills_originally_cosponsored FROM table_18852984_2 WHERE all_amendments_cosponsored = 0
### Context: CREATE TABLE table_18852984_2 (bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR) ### Question: How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0? ### Answer: SELECT bills_originally_cosponsored FROM table_18852984_2 WHERE ...
How many bill cosponsored during those years where bills originally cosponsored is 113?
CREATE TABLE table_18852984_2 (all_bills_cosponsored VARCHAR, bills_originally_cosponsored VARCHAR)
SELECT all_bills_cosponsored FROM table_18852984_2 WHERE bills_originally_cosponsored = 113
### Context: CREATE TABLE table_18852984_2 (all_bills_cosponsored VARCHAR, bills_originally_cosponsored VARCHAR) ### Question: How many bill cosponsored during those years where bills originally cosponsored is 113? ### Answer: SELECT all_bills_cosponsored FROM table_18852984_2 WHERE bills_originally_cosponsored = 113
What is the greatest number of bills sponsored in any year?
CREATE TABLE table_18852984_2 (all_bills_sponsored INTEGER)
SELECT MAX(all_bills_sponsored) FROM table_18852984_2
### Context: CREATE TABLE table_18852984_2 (all_bills_sponsored INTEGER) ### Question: What is the greatest number of bills sponsored in any year? ### Answer: SELECT MAX(all_bills_sponsored) FROM table_18852984_2
What is the lowest cr number?
CREATE TABLE table_1886270_1 (cr_no INTEGER)
SELECT MIN(cr_no) FROM table_1886270_1
### Context: CREATE TABLE table_1886270_1 (cr_no INTEGER) ### Question: What is the lowest cr number? ### Answer: SELECT MIN(cr_no) FROM table_1886270_1
When 2/1939 is the withdrawn when was it built?
CREATE TABLE table_1886270_1 (built VARCHAR, withdrawn VARCHAR)
SELECT built FROM table_1886270_1 WHERE withdrawn = "2/1939"
### Context: CREATE TABLE table_1886270_1 (built VARCHAR, withdrawn VARCHAR) ### Question: When 2/1939 is the withdrawn when was it built? ### Answer: SELECT built FROM table_1886270_1 WHERE withdrawn = "2/1939"
When river ness is the hr name what is the hr number?
CREATE TABLE table_1886270_1 (hr_no VARCHAR, hr_name VARCHAR)
SELECT hr_no FROM table_1886270_1 WHERE hr_name = "River Ness"
### Context: CREATE TABLE table_1886270_1 (hr_no VARCHAR, hr_name VARCHAR) ### Question: When river ness is the hr name what is the hr number? ### Answer: SELECT hr_no FROM table_1886270_1 WHERE hr_name = "River Ness"
When (river garry) is the hr name how many builts are there?
CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)
SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = "(River Garry)"
### Context: CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR) ### Question: When (river garry) is the hr name how many builts are there? ### Answer: SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = "(River Garry)"
What is the highest cr number?
CREATE TABLE table_1886270_1 (cr_no INTEGER)
SELECT MAX(cr_no) FROM table_1886270_1
### Context: CREATE TABLE table_1886270_1 (cr_no INTEGER) ### Question: What is the highest cr number? ### Answer: SELECT MAX(cr_no) FROM table_1886270_1
When river ness is the hr name how many builts are there?
CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)
SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = "River Ness"
### Context: CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR) ### Question: When river ness is the hr name how many builts are there? ### Answer: SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = "River Ness"
How many opponents are at Minnesota Vikings?
CREATE TABLE table_18847736_2 (opponents INTEGER, opponent VARCHAR)
SELECT MAX(opponents) FROM table_18847736_2 WHERE opponent = "at Minnesota Vikings"
### Context: CREATE TABLE table_18847736_2 (opponents INTEGER, opponent VARCHAR) ### Question: How many opponents are at Minnesota Vikings? ### Answer: SELECT MAX(opponents) FROM table_18847736_2 WHERE opponent = "at Minnesota Vikings"
What is the date when the opponent is the New England Patriots?
CREATE TABLE table_18847736_2 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_18847736_2 WHERE opponent = "New England Patriots"
### Context: CREATE TABLE table_18847736_2 (date VARCHAR, opponent VARCHAR) ### Question: What is the date when the opponent is the New England Patriots? ### Answer: SELECT date FROM table_18847736_2 WHERE opponent = "New England Patriots"
How many dates do the dolphins have 6 points?
CREATE TABLE table_18847736_2 (date VARCHAR, dolphins_points VARCHAR)
SELECT date FROM table_18847736_2 WHERE dolphins_points = 6
### Context: CREATE TABLE table_18847736_2 (date VARCHAR, dolphins_points VARCHAR) ### Question: How many dates do the dolphins have 6 points? ### Answer: SELECT date FROM table_18847736_2 WHERE dolphins_points = 6
What country does robert allenby represent?
CREATE TABLE table_18862490_2 (country VARCHAR, player VARCHAR)
SELECT country FROM table_18862490_2 WHERE player = "Robert Allenby"
### Context: CREATE TABLE table_18862490_2 (country VARCHAR, player VARCHAR) ### Question: What country does robert allenby represent? ### Answer: SELECT country FROM table_18862490_2 WHERE player = "Robert Allenby"
What score to par won in 1998?
CREATE TABLE table_18862490_2 (to_par VARCHAR, year VARCHAR)
SELECT to_par FROM table_18862490_2 WHERE year = 1998
### Context: CREATE TABLE table_18862490_2 (to_par VARCHAR, year VARCHAR) ### Question: What score to par won in 1998? ### Answer: SELECT to_par FROM table_18862490_2 WHERE year = 1998
What player(s) had the score of 64-70-67-69=270?
CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR)
SELECT player FROM table_18862490_2 WHERE score = 64 - 70 - 67 - 69 = 270
### Context: CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR) ### Question: What player(s) had the score of 64-70-67-69=270? ### Answer: SELECT player FROM table_18862490_2 WHERE score = 64 - 70 - 67 - 69 = 270
What players had teh score of 64-71-67-67=269?
CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR)
SELECT player FROM table_18862490_2 WHERE score = 64 - 71 - 67 - 67 = 269
### Context: CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR) ### Question: What players had teh score of 64-71-67-67=269? ### Answer: SELECT player FROM table_18862490_2 WHERE score = 64 - 71 - 67 - 67 = 269
What is the first yar that someone won with a score of 68-66-68-71=273?
CREATE TABLE table_18862490_2 (year INTEGER, score VARCHAR)
SELECT MIN(year) FROM table_18862490_2 WHERE score = 68 - 66 - 68 - 71 = 273
### Context: CREATE TABLE table_18862490_2 (year INTEGER, score VARCHAR) ### Question: What is the first yar that someone won with a score of 68-66-68-71=273? ### Answer: SELECT MIN(year) FROM table_18862490_2 WHERE score = 68 - 66 - 68 - 71 = 273
How many socialist have a lead of 12.6%?
CREATE TABLE table_1886589_1 (socialist VARCHAR, lead VARCHAR)
SELECT COUNT(socialist) FROM table_1886589_1 WHERE lead = "12.6%"
### Context: CREATE TABLE table_1886589_1 (socialist VARCHAR, lead VARCHAR) ### Question: How many socialist have a lead of 12.6%? ### Answer: SELECT COUNT(socialist) FROM table_1886589_1 WHERE lead = "12.6%"
What is the lowest SOL?
CREATE TABLE table_1888157_1 (SOl INTEGER)
SELECT MIN(SOl) FROM table_1888157_1
### Context: CREATE TABLE table_1888157_1 (SOl INTEGER) ### Question: What is the lowest SOL? ### Answer: SELECT MIN(SOl) FROM table_1888157_1
What is the highest GA when GF is 39?
CREATE TABLE table_1888157_1 (ga INTEGER, gf VARCHAR)
SELECT MAX(ga) FROM table_1888157_1 WHERE gf = 39
### Context: CREATE TABLE table_1888157_1 (ga INTEGER, gf VARCHAR) ### Question: What is the highest GA when GF is 39? ### Answer: SELECT MAX(ga) FROM table_1888157_1 WHERE gf = 39
How many different records were there in the games that ended in w 70-66?
CREATE TABLE table_18904831_5 (record VARCHAR, score VARCHAR)
SELECT COUNT(record) FROM table_18904831_5 WHERE score = "W 70-66"
### Context: CREATE TABLE table_18904831_5 (record VARCHAR, score VARCHAR) ### Question: How many different records were there in the games that ended in w 70-66? ### Answer: SELECT COUNT(record) FROM table_18904831_5 WHERE score = "W 70-66"
What was the record of the game in which Dydek (10) did the most high rebounds?
CREATE TABLE table_18904831_5 (record VARCHAR, high_rebounds VARCHAR)
SELECT record FROM table_18904831_5 WHERE high_rebounds = "Dydek (10)"
### Context: CREATE TABLE table_18904831_5 (record VARCHAR, high_rebounds VARCHAR) ### Question: What was the record of the game in which Dydek (10) did the most high rebounds? ### Answer: SELECT record FROM table_18904831_5 WHERE high_rebounds = "Dydek (10)"
Who did the most high rebounds in the game where Sales (17) did the high points?
CREATE TABLE table_18904831_5 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT high_rebounds FROM table_18904831_5 WHERE high_points = "Sales (17)"
### Context: CREATE TABLE table_18904831_5 (high_rebounds VARCHAR, high_points VARCHAR) ### Question: Who did the most high rebounds in the game where Sales (17) did the high points? ### Answer: SELECT high_rebounds FROM table_18904831_5 WHERE high_points = "Sales (17)"
When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)?
CREATE TABLE table_1889619_5 (total_footage_remaining_from_missing_episodes__mm VARCHAR, story_no VARCHAR, source VARCHAR)
SELECT total_footage_remaining_from_missing_episodes__mm AS :ss_ FROM table_1889619_5 WHERE story_no = "018" AND source = "Private individual"
### Context: CREATE TABLE table_1889619_5 (total_footage_remaining_from_missing_episodes__mm VARCHAR, story_no VARCHAR, source VARCHAR) ### Question: When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)? ### Answer: SELECT total_footage_re...
When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory?
CREATE TABLE table_1889619_5 (country_territory VARCHAR, story_no VARCHAR, missing_episodes_with_recovered_footage VARCHAR)
SELECT country_territory FROM table_1889619_5 WHERE story_no = "032" AND missing_episodes_with_recovered_footage = "Episode 4"
### Context: CREATE TABLE table_1889619_5 (country_territory VARCHAR, story_no VARCHAR, missing_episodes_with_recovered_footage VARCHAR) ### Question: When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory? ### Answer: SELECT country_territory FROM tab...
Name the least game for 8-3
CREATE TABLE table_18894744_5 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_18894744_5 WHERE record = "8-3"
### Context: CREATE TABLE table_18894744_5 (game INTEGER, record VARCHAR) ### Question: Name the least game for 8-3 ### Answer: SELECT MIN(game) FROM table_18894744_5 WHERE record = "8-3"
Name the opponent for record 10-4
CREATE TABLE table_18894744_5 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_18894744_5 WHERE record = "10-4"
### Context: CREATE TABLE table_18894744_5 (opponent VARCHAR, record VARCHAR) ### Question: Name the opponent for record 10-4 ### Answer: SELECT opponent FROM table_18894744_5 WHERE record = "10-4"
Name the high rebounds for record 7-1
CREATE TABLE table_18894744_5 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_18894744_5 WHERE record = "7-1"
### Context: CREATE TABLE table_18894744_5 (high_rebounds VARCHAR, record VARCHAR) ### Question: Name the high rebounds for record 7-1 ### Answer: SELECT high_rebounds FROM table_18894744_5 WHERE record = "7-1"
Name the game for june 16
CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)
SELECT game FROM table_18894744_5 WHERE date = "June 16"
### Context: CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR) ### Question: Name the game for june 16 ### Answer: SELECT game FROM table_18894744_5 WHERE date = "June 16"
Name the game for june 7
CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)
SELECT game FROM table_18894744_5 WHERE date = "June 7"
### Context: CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR) ### Question: Name the game for june 7 ### Answer: SELECT game FROM table_18894744_5 WHERE date = "June 7"
Who did the high rebounds in the game with a 19-6 record?
CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_18894744_6 WHERE record = "19-6"
### Context: CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, record VARCHAR) ### Question: Who did the high rebounds in the game with a 19-6 record? ### Answer: SELECT high_rebounds FROM table_18894744_6 WHERE record = "19-6"
Where was the game with a 13-5 record played, and in front of how many people?
CREATE TABLE table_18894744_6 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_18894744_6 WHERE record = "13-5"
### Context: CREATE TABLE table_18894744_6 (location_attendance VARCHAR, record VARCHAR) ### Question: Where was the game with a 13-5 record played, and in front of how many people? ### Answer: SELECT location_attendance FROM table_18894744_6 WHERE record = "13-5"
Who did the high rebounds in the game where Douglas (28) did the high points?
CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT high_rebounds FROM table_18894744_6 WHERE high_points = "Douglas (28)"
### Context: CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, high_points VARCHAR) ### Question: Who did the high rebounds in the game where Douglas (28) did the high points? ### Answer: SELECT high_rebounds FROM table_18894744_6 WHERE high_points = "Douglas (28)"
What was the record on the game played on July 1?
CREATE TABLE table_18894744_6 (record VARCHAR, date VARCHAR)
SELECT record FROM table_18894744_6 WHERE date = "July 1"
### Context: CREATE TABLE table_18894744_6 (record VARCHAR, date VARCHAR) ### Question: What was the record on the game played on July 1? ### Answer: SELECT record FROM table_18894744_6 WHERE date = "July 1"
How many opponents was a game with a record 17-6 played against?
CREATE TABLE table_18894744_6 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_18894744_6 WHERE record = "17-6"
### Context: CREATE TABLE table_18894744_6 (opponent VARCHAR, record VARCHAR) ### Question: How many opponents was a game with a record 17-6 played against? ### Answer: SELECT COUNT(opponent) FROM table_18894744_6 WHERE record = "17-6"
What was the career duration of the bowler who played 60 matches?
CREATE TABLE table_18914438_1 (career VARCHAR, matches VARCHAR)
SELECT career FROM table_18914438_1 WHERE matches = 60
### Context: CREATE TABLE table_18914438_1 (career VARCHAR, matches VARCHAR) ### Question: What was the career duration of the bowler who played 60 matches? ### Answer: SELECT career FROM table_18914438_1 WHERE matches = 60
What is the Best score if the Maidens is 547 and Overs is 2755.1?
CREATE TABLE table_18914438_1 (best VARCHAR, maidens VARCHAR, overs VARCHAR)
SELECT best FROM table_18914438_1 WHERE maidens = 547 AND overs = "2755.1"
### Context: CREATE TABLE table_18914438_1 (best VARCHAR, maidens VARCHAR, overs VARCHAR) ### Question: What is the Best score if the Maidens is 547 and Overs is 2755.1? ### Answer: SELECT best FROM table_18914438_1 WHERE maidens = 547 AND overs = "2755.1"
What was the Overs score of the career played from 1993-2007?
CREATE TABLE table_18914438_1 (overs VARCHAR, career VARCHAR)
SELECT overs FROM table_18914438_1 WHERE career = "1993-2007"
### Context: CREATE TABLE table_18914438_1 (overs VARCHAR, career VARCHAR) ### Question: What was the Overs score of the career played from 1993-2007? ### Answer: SELECT overs FROM table_18914438_1 WHERE career = "1993-2007"
What was the Best score during the game played from 1971-1984?
CREATE TABLE table_18914438_1 (best VARCHAR, career VARCHAR)
SELECT best FROM table_18914438_1 WHERE career = "1971-1984"
### Context: CREATE TABLE table_18914438_1 (best VARCHAR, career VARCHAR) ### Question: What was the Best score during the game played from 1971-1984? ### Answer: SELECT best FROM table_18914438_1 WHERE career = "1971-1984"
When dydek (11) has the highest rebounds what is the date?
CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_18904831_6 WHERE high_rebounds = "Dydek (11)"
### Context: CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR) ### Question: When dydek (11) has the highest rebounds what is the date? ### Answer: SELECT date FROM table_18904831_6 WHERE high_rebounds = "Dydek (11)"
When mcwilliams-franklin (8) has the highest rebounds what is the date?
CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_18904831_6 WHERE high_rebounds = "McWilliams-Franklin (8)"
### Context: CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR) ### Question: When mcwilliams-franklin (8) has the highest rebounds what is the date? ### Answer: SELECT date FROM table_18904831_6 WHERE high_rebounds = "McWilliams-Franklin (8)"
When dydek (8) has the highest rebounds who has the highest amount of points?
CREATE TABLE table_18904831_6 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT high_points FROM table_18904831_6 WHERE high_rebounds = "Dydek (8)"
### Context: CREATE TABLE table_18904831_6 (high_points VARCHAR, high_rebounds VARCHAR) ### Question: When dydek (8) has the highest rebounds who has the highest amount of points? ### Answer: SELECT high_points FROM table_18904831_6 WHERE high_rebounds = "Dydek (8)"
When w 73-70 is the score what is the location?
CREATE TABLE table_18904831_6 (location VARCHAR, score VARCHAR)
SELECT location FROM table_18904831_6 WHERE score = "W 73-70"
### Context: CREATE TABLE table_18904831_6 (location VARCHAR, score VARCHAR) ### Question: When w 73-70 is the score what is the location? ### Answer: SELECT location FROM table_18904831_6 WHERE score = "W 73-70"
What was the score in the game that had a record of 25-8?
CREATE TABLE table_18904831_7 (score VARCHAR, record VARCHAR)
SELECT score FROM table_18904831_7 WHERE record = "25-8"
### Context: CREATE TABLE table_18904831_7 (score VARCHAR, record VARCHAR) ### Question: What was the score in the game that had a record of 25-8? ### Answer: SELECT score FROM table_18904831_7 WHERE record = "25-8"
What was # of the first game played on August 20?
CREATE TABLE table_18904831_7 (game INTEGER, date VARCHAR)
SELECT MIN(game) FROM table_18904831_7 WHERE date = "August 20"
### Context: CREATE TABLE table_18904831_7 (game INTEGER, date VARCHAR) ### Question: What was # of the first game played on August 20? ### Answer: SELECT MIN(game) FROM table_18904831_7 WHERE date = "August 20"
What were the high points for the game played at the MCI Center?
CREATE TABLE table_18904831_7 (high_points VARCHAR, location VARCHAR)
SELECT COUNT(high_points) FROM table_18904831_7 WHERE location = "MCI Center"
### Context: CREATE TABLE table_18904831_7 (high_points VARCHAR, location VARCHAR) ### Question: What were the high points for the game played at the MCI Center? ### Answer: SELECT COUNT(high_points) FROM table_18904831_7 WHERE location = "MCI Center"
Where was the game played that had a record of 19-6?
CREATE TABLE table_18904831_7 (location VARCHAR, record VARCHAR)
SELECT location FROM table_18904831_7 WHERE record = "19-6"
### Context: CREATE TABLE table_18904831_7 (location VARCHAR, record VARCHAR) ### Question: Where was the game played that had a record of 19-6? ### Answer: SELECT location FROM table_18904831_7 WHERE record = "19-6"
What is the col (m) of the Barurumea Ridge peak?
CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR)
SELECT MAX(col__m_) FROM table_18946749_2 WHERE peak = "Barurumea Ridge"
### Context: CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR) ### Question: What is the col (m) of the Barurumea Ridge peak? ### Answer: SELECT MAX(col__m_) FROM table_18946749_2 WHERE peak = "Barurumea Ridge"
What is the elevation (m) of the Mount Wilhelm peak?
CREATE TABLE table_18946749_2 (elevation__m_ INTEGER, peak VARCHAR)
SELECT MAX(elevation__m_) FROM table_18946749_2 WHERE peak = "Mount Wilhelm"
### Context: CREATE TABLE table_18946749_2 (elevation__m_ INTEGER, peak VARCHAR) ### Question: What is the elevation (m) of the Mount Wilhelm peak? ### Answer: SELECT MAX(elevation__m_) FROM table_18946749_2 WHERE peak = "Mount Wilhelm"
What is the col (m) of the Bewani Mountains High Point peak?
CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR)
SELECT MIN(col__m_) FROM table_18946749_2 WHERE peak = "Bewani Mountains High Point"
### Context: CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR) ### Question: What is the col (m) of the Bewani Mountains High Point peak? ### Answer: SELECT MIN(col__m_) FROM table_18946749_2 WHERE peak = "Bewani Mountains High Point"
When mount wondiwoi is the peak what is the island?
CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)
SELECT island FROM table_18946749_1 WHERE peak = "Mount Wondiwoi"
### Context: CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR) ### Question: When mount wondiwoi is the peak what is the island? ### Answer: SELECT island FROM table_18946749_1 WHERE peak = "Mount Wondiwoi"
When mount gauttier is the peak what is the island?
CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)
SELECT island FROM table_18946749_1 WHERE peak = "Mount Gauttier"
### Context: CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR) ### Question: When mount gauttier is the peak what is the island? ### Answer: SELECT island FROM table_18946749_1 WHERE peak = "Mount Gauttier"
When mount kobowre is the peak what is the highest elevation in meters?
CREATE TABLE table_18946749_1 (elevation__m_ INTEGER, peak VARCHAR)
SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = "Mount Kobowre"
### Context: CREATE TABLE table_18946749_1 (elevation__m_ INTEGER, peak VARCHAR) ### Question: When mount kobowre is the peak what is the highest elevation in meters? ### Answer: SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = "Mount Kobowre"
When mount gauttier is the peak what is the highest prominence in meters?
CREATE TABLE table_18946749_1 (prominence__m_ INTEGER, peak VARCHAR)
SELECT MAX(prominence__m_) FROM table_18946749_1 WHERE peak = "Mount Gauttier"
### Context: CREATE TABLE table_18946749_1 (prominence__m_ INTEGER, peak VARCHAR) ### Question: When mount gauttier is the peak what is the highest prominence in meters? ### Answer: SELECT MAX(prominence__m_) FROM table_18946749_1 WHERE peak = "Mount Gauttier"
When 44 is the col in meters what is the country?
CREATE TABLE table_18946749_1 (country VARCHAR, col__m_ VARCHAR)
SELECT country FROM table_18946749_1 WHERE col__m_ = 44
### Context: CREATE TABLE table_18946749_1 (country VARCHAR, col__m_ VARCHAR) ### Question: When 44 is the col in meters what is the country? ### Answer: SELECT country FROM table_18946749_1 WHERE col__m_ = 44
Name the release date for album # 2nd
CREATE TABLE table_1893815_1 (release_date VARCHAR, album_number VARCHAR)
SELECT release_date FROM table_1893815_1 WHERE album_number = "2nd"
### Context: CREATE TABLE table_1893815_1 (release_date VARCHAR, album_number VARCHAR) ### Question: Name the release date for album # 2nd ### Answer: SELECT release_date FROM table_1893815_1 WHERE album_number = "2nd"
Name the label for grown up overnight
CREATE TABLE table_1893815_1 (label VARCHAR, english_title VARCHAR)
SELECT label FROM table_1893815_1 WHERE english_title = "Grown Up Overnight"
### Context: CREATE TABLE table_1893815_1 (label VARCHAR, english_title VARCHAR) ### Question: Name the label for grown up overnight ### Answer: SELECT label FROM table_1893815_1 WHERE english_title = "Grown Up Overnight"
Name the label for traditional chinese 情歌沒有告訴你
CREATE TABLE table_1893815_1 (label VARCHAR, chinese__traditional_ VARCHAR)
SELECT label FROM table_1893815_1 WHERE chinese__traditional_ = "情歌沒有告訴你"
### Context: CREATE TABLE table_1893815_1 (label VARCHAR, chinese__traditional_ VARCHAR) ### Question: Name the label for traditional chinese 情歌沒有告訴你 ### Answer: SELECT label FROM table_1893815_1 WHERE chinese__traditional_ = "情歌沒有告訴你"
Name the number of traditional chinese for album number 6th
CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR)
SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = "6th"
### Context: CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR) ### Question: Name the number of traditional chinese for album number 6th ### Answer: SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = "6th"
Name the chinese traditional for 美丽人生
CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, chinese__simplified_ VARCHAR)
SELECT chinese__traditional_ FROM table_1893815_1 WHERE chinese__simplified_ = "美丽人生"
### Context: CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, chinese__simplified_ VARCHAR) ### Question: Name the chinese traditional for 美丽人生 ### Answer: SELECT chinese__traditional_ FROM table_1893815_1 WHERE chinese__simplified_ = "美丽人生"
Name the english title for album # 2nd
CREATE TABLE table_1893815_1 (english_title VARCHAR, album_number VARCHAR)
SELECT english_title FROM table_1893815_1 WHERE album_number = "2nd"
### Context: CREATE TABLE table_1893815_1 (english_title VARCHAR, album_number VARCHAR) ### Question: Name the english title for album # 2nd ### Answer: SELECT english_title FROM table_1893815_1 WHERE album_number = "2nd"
How many samples were taken of 嬰幼兒配方乳粉2段基粉 ?
CREATE TABLE table_18943444_1 (samples_taken VARCHAR, product VARCHAR)
SELECT COUNT(samples_taken) FROM table_18943444_1 WHERE product = "嬰幼兒配方乳粉2段基粉"
### Context: CREATE TABLE table_18943444_1 (samples_taken VARCHAR, product VARCHAR) ### Question: How many samples were taken of 嬰幼兒配方乳粉2段基粉 ? ### Answer: SELECT COUNT(samples_taken) FROM table_18943444_1 WHERE product = "嬰幼兒配方乳粉2段基粉"
What are the producers of 磊磊牌嬰幼兒配方乳粉 ?
CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)
SELECT producer FROM table_18943444_1 WHERE product = "磊磊牌嬰幼兒配方乳粉"
### Context: CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR) ### Question: What are the producers of 磊磊牌嬰幼兒配方乳粉 ? ### Answer: SELECT producer FROM table_18943444_1 WHERE product = "磊磊牌嬰幼兒配方乳粉"
What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ?
CREATE TABLE table_18943444_1 (samples_taken INTEGER, product VARCHAR)
SELECT MIN(samples_taken) FROM table_18943444_1 WHERE product = "蒙牛牌嬰幼兒配方乳粉"
### Context: CREATE TABLE table_18943444_1 (samples_taken INTEGER, product VARCHAR) ### Question: What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ? ### Answer: SELECT MIN(samples_taken) FROM table_18943444_1 WHERE product = "蒙牛牌嬰幼兒配方乳粉"
Who is the producer of 金必氏牌嬰幼兒配方乳粉 ?
CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)
SELECT producer FROM table_18943444_1 WHERE product = "金必氏牌嬰幼兒配方乳粉"
### Context: CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR) ### Question: Who is the producer of 金必氏牌嬰幼兒配方乳粉 ? ### Answer: SELECT producer FROM table_18943444_1 WHERE product = "金必氏牌嬰幼兒配方乳粉"
How many live births per year are there in the period where the life expectancy for females is 73.3?
CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, life_expectancy_females VARCHAR)
SELECT live_births_per_year FROM table_18950570_2 WHERE life_expectancy_females = "73.3"
### Context: CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, life_expectancy_females VARCHAR) ### Question: How many live births per year are there in the period where the life expectancy for females is 73.3? ### Answer: SELECT live_births_per_year FROM table_18950570_2 WHERE life_expectancy_females = "73....
How many births per year are there for the period with 998 000 deaths per year?
CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, deaths_per_year VARCHAR)
SELECT live_births_per_year FROM table_18950570_2 WHERE deaths_per_year = "998 000"
### Context: CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, deaths_per_year VARCHAR) ### Question: How many births per year are there for the period with 998 000 deaths per year? ### Answer: SELECT live_births_per_year FROM table_18950570_2 WHERE deaths_per_year = "998 000"
What is the highest value for col(m) when prominence(m) is 3755?
CREATE TABLE table_18946749_4 (col__m_ INTEGER, prominence__m_ VARCHAR)
SELECT MAX(col__m_) FROM table_18946749_4 WHERE prominence__m_ = 3755
### Context: CREATE TABLE table_18946749_4 (col__m_ INTEGER, prominence__m_ VARCHAR) ### Question: What is the highest value for col(m) when prominence(m) is 3755? ### Answer: SELECT MAX(col__m_) FROM table_18946749_4 WHERE prominence__m_ = 3755
What is the highest value for col(m) at North Island?
CREATE TABLE table_18946749_4 (col__m_ INTEGER, island VARCHAR)
SELECT MAX(col__m_) FROM table_18946749_4 WHERE island = "North island"
### Context: CREATE TABLE table_18946749_4 (col__m_ INTEGER, island VARCHAR) ### Question: What is the highest value for col(m) at North Island? ### Answer: SELECT MAX(col__m_) FROM table_18946749_4 WHERE island = "North island"
What is the lowest elevation(m) for the peak Mount Taylor?
CREATE TABLE table_18946749_4 (elevation__m_ INTEGER, peak VARCHAR)
SELECT MIN(elevation__m_) FROM table_18946749_4 WHERE peak = "Mount Taylor"
### Context: CREATE TABLE table_18946749_4 (elevation__m_ INTEGER, peak VARCHAR) ### Question: What is the lowest elevation(m) for the peak Mount Taylor? ### Answer: SELECT MIN(elevation__m_) FROM table_18946749_4 WHERE peak = "Mount Taylor"
How many values of prominence(m) occur at rank 5?
CREATE TABLE table_18946749_4 (prominence__m_ VARCHAR, rank VARCHAR)
SELECT COUNT(prominence__m_) FROM table_18946749_4 WHERE rank = 5
### Context: CREATE TABLE table_18946749_4 (prominence__m_ VARCHAR, rank VARCHAR) ### Question: How many values of prominence(m) occur at rank 5? ### Answer: SELECT COUNT(prominence__m_) FROM table_18946749_4 WHERE rank = 5
what ae all of the brazil 100% where the age group is 15-17?
CREATE TABLE table_18950570_4 (brazil_100_percentage__percent_of_the_population_ VARCHAR, age_group VARCHAR)
SELECT brazil_100_percentage__percent_of_the_population_ FROM table_18950570_4 WHERE age_group = "15-17"
### Context: CREATE TABLE table_18950570_4 (brazil_100_percentage__percent_of_the_population_ VARCHAR, age_group VARCHAR) ### Question: what ae all of the brazil 100% where the age group is 15-17? ### Answer: SELECT brazil_100_percentage__percent_of_the_population_ FROM table_18950570_4 WHERE age_group = "15-17"
If the just ratio is 11:8 and the cents size is 560, what is the interval name?
CREATE TABLE table_18955077_1 (interval_name VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)
SELECT interval_name FROM table_18955077_1 WHERE size__cents_ = 560 AND just_ratio = "11:8"
### Context: CREATE TABLE table_18955077_1 (interval_name VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR) ### Question: If the just ratio is 11:8 and the cents size is 560, what is the interval name? ### Answer: SELECT interval_name FROM table_18955077_1 WHERE size__cents_ = 560 AND just_ratio = "11:8"
If the just cents is 84.46, what is the just ratio?
CREATE TABLE table_18955077_1 (just_ratio VARCHAR, just__cents_ VARCHAR)
SELECT just_ratio FROM table_18955077_1 WHERE just__cents_ = "84.46"
### Context: CREATE TABLE table_18955077_1 (just_ratio VARCHAR, just__cents_ VARCHAR) ### Question: If the just cents is 84.46, what is the just ratio? ### Answer: SELECT just_ratio FROM table_18955077_1 WHERE just__cents_ = "84.46"
If the just cents is 701.96, what is the interval name?
CREATE TABLE table_18955077_1 (interval_name VARCHAR, just__cents_ VARCHAR)
SELECT interval_name FROM table_18955077_1 WHERE just__cents_ = "701.96"
### Context: CREATE TABLE table_18955077_1 (interval_name VARCHAR, just__cents_ VARCHAR) ### Question: If the just cents is 701.96, what is the interval name? ### Answer: SELECT interval_name FROM table_18955077_1 WHERE just__cents_ = "701.96"
Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa
CREATE TABLE table_18963843_1 (asian_american_population__2010_ INTEGER, combined_statistical_area VARCHAR)
SELECT MAX(asian_american_population__2010_) FROM table_18963843_1 WHERE combined_statistical_area = "Kansas City-Overland Park-Kansas City, MO-KS CSA"
### Context: CREATE TABLE table_18963843_1 (asian_american_population__2010_ INTEGER, combined_statistical_area VARCHAR) ### Question: Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa ### Answer: SELECT MAX(asian_american_population__2010_) FROM table_18963843_1 WHERE combine...