question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the title of the episode directed by Rodney Clouden?
CREATE TABLE table_23242958_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_23242958_1 WHERE directed_by = "Rodney Clouden"
### Context: CREATE TABLE table_23242958_1 (title VARCHAR, directed_by VARCHAR) ### Question: What is the title of the episode directed by Rodney Clouden? ### Answer: SELECT title FROM table_23242958_1 WHERE directed_by = "Rodney Clouden"
How many millions of U.S. viewers watched the episode with the production code of 3AJN01?
CREATE TABLE table_23242958_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)
SELECT us_viewers__millions_ FROM table_23242958_1 WHERE production_code = "3AJN01"
### Context: CREATE TABLE table_23242958_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR) ### Question: How many millions of U.S. viewers watched the episode with the production code of 3AJN01? ### Answer: SELECT us_viewers__millions_ FROM table_23242958_1 WHERE production_code = "3AJN01"
Who directed the episode that had 6.76 million U.S. viewers?
CREATE TABLE table_23242968_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT directed_by FROM table_23242968_1 WHERE us_viewers__millions_ = "6.76"
### Context: CREATE TABLE table_23242968_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Who directed the episode that had 6.76 million U.S. viewers? ### Answer: SELECT directed_by FROM table_23242968_1 WHERE us_viewers__millions_ = "6.76"
What episode number of the season was also number 75 in the series?
CREATE TABLE table_23242968_1 (no_in_season INTEGER, no_in_series VARCHAR)
SELECT MAX(no_in_season) FROM table_23242968_1 WHERE no_in_series = 75
### Context: CREATE TABLE table_23242968_1 (no_in_season INTEGER, no_in_series VARCHAR) ### Question: What episode number of the season was also number 75 in the series? ### Answer: SELECT MAX(no_in_season) FROM table_23242968_1 WHERE no_in_series = 75
Who wrote the episode that had a production code of 3ajn20?
CREATE TABLE table_23242968_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_23242968_1 WHERE production_code = "3AJN20"
### Context: CREATE TABLE table_23242968_1 (written_by VARCHAR, production_code VARCHAR) ### Question: Who wrote the episode that had a production code of 3ajn20? ### Answer: SELECT written_by FROM table_23242968_1 WHERE production_code = "3AJN20"
Who directed the episode that was written by Jonathan Fener?
CREATE TABLE table_23242968_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_23242968_1 WHERE written_by = "Jonathan Fener"
### Context: CREATE TABLE table_23242968_1 (directed_by VARCHAR, written_by VARCHAR) ### Question: Who directed the episode that was written by Jonathan Fener? ### Answer: SELECT directed_by FROM table_23242968_1 WHERE written_by = "Jonathan Fener"
What was the name of the episode with a production code of 3ajn20?
CREATE TABLE table_23242968_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_23242968_1 WHERE production_code = "3AJN20"
### Context: CREATE TABLE table_23242968_1 (title VARCHAR, production_code VARCHAR) ### Question: What was the name of the episode with a production code of 3ajn20? ### Answer: SELECT title FROM table_23242968_1 WHERE production_code = "3AJN20"
Who wrote the episode with production code 1AJN05?
CREATE TABLE table_23242933_2 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_23242933_2 WHERE production_code = "1AJN05"
### Context: CREATE TABLE table_23242933_2 (written_by VARCHAR, production_code VARCHAR) ### Question: Who wrote the episode with production code 1AJN05? ### Answer: SELECT written_by FROM table_23242933_2 WHERE production_code = "1AJN05"
How many different series numbers are there for the episode seen by 7.84 million people in the US?
CREATE TABLE table_23242933_2 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(no_in_series) FROM table_23242933_2 WHERE us_viewers__millions_ = "7.84"
### Context: CREATE TABLE table_23242933_2 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many different series numbers are there for the episode seen by 7.84 million people in the US? ### Answer: SELECT COUNT(no_in_series) FROM table_23242933_2 WHERE us_viewers__millions_ = "7.84"
What's the series number of the episode written by Dan Vebber?
CREATE TABLE table_23242933_2 (no_in_series INTEGER, written_by VARCHAR)
SELECT MAX(no_in_series) FROM table_23242933_2 WHERE written_by = "Dan Vebber"
### Context: CREATE TABLE table_23242933_2 (no_in_series INTEGER, written_by VARCHAR) ### Question: What's the series number of the episode written by Dan Vebber? ### Answer: SELECT MAX(no_in_series) FROM table_23242933_2 WHERE written_by = "Dan Vebber"
How many different titles are there of episodes that have been seen by 7.84 million people in the US/
CREATE TABLE table_23242933_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(title) FROM table_23242933_2 WHERE us_viewers__millions_ = "7.84"
### Context: CREATE TABLE table_23242933_2 (title VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many different titles are there of episodes that have been seen by 7.84 million people in the US/ ### Answer: SELECT COUNT(title) FROM table_23242933_2 WHERE us_viewers__millions_ = "7.84"
When did 6.09 million people in the US see the original airing of an episode of the show?
CREATE TABLE table_23242933_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT original_air_date FROM table_23242933_2 WHERE us_viewers__millions_ = "6.09"
### Context: CREATE TABLE table_23242933_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) ### Question: When did 6.09 million people in the US see the original airing of an episode of the show? ### Answer: SELECT original_air_date FROM table_23242933_2 WHERE us_viewers__millions_ = "6.09"
What's the season number of the episode originally seen by 6.64 million people in the US?
CREATE TABLE table_23242950_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)
SELECT MIN(no_in_season) FROM table_23242950_1 WHERE us_viewers__millions_ = "6.64"
### Context: CREATE TABLE table_23242950_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR) ### Question: What's the season number of the episode originally seen by 6.64 million people in the US? ### Answer: SELECT MIN(no_in_season) FROM table_23242950_1 WHERE us_viewers__millions_ = "6.64"
What's the production code of the episode seen by 7.49 million people in the US?
CREATE TABLE table_23242950_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
SELECT production_code FROM table_23242950_1 WHERE us_viewers__millions_ = "7.49"
### Context: CREATE TABLE table_23242950_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What's the production code of the episode seen by 7.49 million people in the US? ### Answer: SELECT production_code FROM table_23242950_1 WHERE us_viewers__millions_ = "7.49"
What opponent got 44 points in their game?
CREATE TABLE table_23243769_4 (opponent VARCHAR, opp_points VARCHAR)
SELECT opponent FROM table_23243769_4 WHERE opp_points = 44
### Context: CREATE TABLE table_23243769_4 (opponent VARCHAR, opp_points VARCHAR) ### Question: What opponent got 44 points in their game? ### Answer: SELECT opponent FROM table_23243769_4 WHERE opp_points = 44
Where was the game with a 4-1 record played?
CREATE TABLE table_23243769_4 (location VARCHAR, record VARCHAR)
SELECT location FROM table_23243769_4 WHERE record = "4-1"
### Context: CREATE TABLE table_23243769_4 (location VARCHAR, record VARCHAR) ### Question: Where was the game with a 4-1 record played? ### Answer: SELECT location FROM table_23243769_4 WHERE record = "4-1"
Who did the high rebounds in the game where Larry Hughes (21) did the high ponts?
CREATE TABLE table_23248869_6 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT high_rebounds FROM table_23248869_6 WHERE high_points = "Larry Hughes (21)"
### Context: CREATE TABLE table_23248869_6 (high_rebounds VARCHAR, high_points VARCHAR) ### Question: Who did the high rebounds in the game where Larry Hughes (21) did the high ponts? ### Answer: SELECT high_rebounds FROM table_23248869_6 WHERE high_points = "Larry Hughes (21)"
How many different people did different scores of high assists during the December 11 game?
CREATE TABLE table_23248869_6 (high_assists VARCHAR, date VARCHAR)
SELECT COUNT(high_assists) FROM table_23248869_6 WHERE date = "December 11"
### Context: CREATE TABLE table_23248869_6 (high_assists VARCHAR, date VARCHAR) ### Question: How many different people did different scores of high assists during the December 11 game? ### Answer: SELECT COUNT(high_assists) FROM table_23248869_6 WHERE date = "December 11"
Who did the high assists in the game against Portland?
CREATE TABLE table_23248869_6 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_23248869_6 WHERE team = "Portland"
### Context: CREATE TABLE table_23248869_6 (high_assists VARCHAR, team VARCHAR) ### Question: Who did the high assists in the game against Portland? ### Answer: SELECT high_assists FROM table_23248869_6 WHERE team = "Portland"
What is every score for location attendance of Madison Square Garden 19,763 and game less than 80.0?
CREATE TABLE table_23248869_10 (score VARCHAR, location_attendance VARCHAR, game VARCHAR)
SELECT score FROM table_23248869_10 WHERE location_attendance = "Madison Square Garden 19,763" AND game < 80.0
### Context: CREATE TABLE table_23248869_10 (score VARCHAR, location_attendance VARCHAR, game VARCHAR) ### Question: What is every score for location attendance of Madison Square Garden 19,763 and game less than 80.0? ### Answer: SELECT score FROM table_23248869_10 WHERE location_attendance = "Madison Square Garden 19,...
What is every record for the team Boston?
CREATE TABLE table_23248869_10 (record VARCHAR, team VARCHAR)
SELECT record FROM table_23248869_10 WHERE team = "Boston"
### Context: CREATE TABLE table_23248869_10 (record VARCHAR, team VARCHAR) ### Question: What is every record for the team Boston? ### Answer: SELECT record FROM table_23248869_10 WHERE team = "Boston"
How many values for high assists when the game is 81?
CREATE TABLE table_23248869_10 (high_assists VARCHAR, game VARCHAR)
SELECT COUNT(high_assists) FROM table_23248869_10 WHERE game = 81
### Context: CREATE TABLE table_23248869_10 (high_assists VARCHAR, game VARCHAR) ### Question: How many values for high assists when the game is 81? ### Answer: SELECT COUNT(high_assists) FROM table_23248869_10 WHERE game = 81
How many times was the high points david lee (30)
CREATE TABLE table_23248869_8 (date VARCHAR, high_points VARCHAR)
SELECT COUNT(date) FROM table_23248869_8 WHERE high_points = "David Lee (30)"
### Context: CREATE TABLE table_23248869_8 (date VARCHAR, high_points VARCHAR) ### Question: How many times was the high points david lee (30) ### Answer: SELECT COUNT(date) FROM table_23248869_8 WHERE high_points = "David Lee (30)"
Who had the high assists when the score was l 85–118 (ot)
CREATE TABLE table_23248869_8 (high_assists VARCHAR, score VARCHAR)
SELECT high_assists FROM table_23248869_8 WHERE score = "L 85–118 (OT)"
### Context: CREATE TABLE table_23248869_8 (high_assists VARCHAR, score VARCHAR) ### Question: Who had the high assists when the score was l 85–118 (ot) ### Answer: SELECT high_assists FROM table_23248869_8 WHERE score = "L 85–118 (OT)"
What was the record when the high rebounds was david lee (8)
CREATE TABLE table_23248869_8 (record VARCHAR, high_rebounds VARCHAR)
SELECT record FROM table_23248869_8 WHERE high_rebounds = "David Lee (8)"
### Context: CREATE TABLE table_23248869_8 (record VARCHAR, high_rebounds VARCHAR) ### Question: What was the record when the high rebounds was david lee (8) ### Answer: SELECT record FROM table_23248869_8 WHERE high_rebounds = "David Lee (8)"
How many times was the record 19–34
CREATE TABLE table_23248869_8 (score VARCHAR, record VARCHAR)
SELECT COUNT(score) FROM table_23248869_8 WHERE record = "19–34"
### Context: CREATE TABLE table_23248869_8 (score VARCHAR, record VARCHAR) ### Question: How many times was the record 19–34 ### Answer: SELECT COUNT(score) FROM table_23248869_8 WHERE record = "19–34"
What was the score when the record was 19–35
CREATE TABLE table_23248869_8 (score VARCHAR, record VARCHAR)
SELECT score FROM table_23248869_8 WHERE record = "19–35"
### Context: CREATE TABLE table_23248869_8 (score VARCHAR, record VARCHAR) ### Question: What was the score when the record was 19–35 ### Answer: SELECT score FROM table_23248869_8 WHERE record = "19–35"
What was the game when high points was david lee (30)
CREATE TABLE table_23248869_8 (game INTEGER, high_points VARCHAR)
SELECT MIN(game) FROM table_23248869_8 WHERE high_points = "David Lee (30)"
### Context: CREATE TABLE table_23248869_8 (game INTEGER, high_points VARCHAR) ### Question: What was the game when high points was david lee (30) ### Answer: SELECT MIN(game) FROM table_23248869_8 WHERE high_points = "David Lee (30)"
If the population density is 7,447.32, what is the population total number?
CREATE TABLE table_232458_1 (population__2010_census_ VARCHAR, pop_density__per_km²_ VARCHAR)
SELECT COUNT(population__2010_census_) FROM table_232458_1 WHERE pop_density__per_km²_ = "7,447.32"
### Context: CREATE TABLE table_232458_1 (population__2010_census_ VARCHAR, pop_density__per_km²_ VARCHAR) ### Question: If the population density is 7,447.32, what is the population total number? ### Answer: SELECT COUNT(population__2010_census_) FROM table_232458_1 WHERE pop_density__per_km²_ = "7,447.32"
If the number of barangays is 19, what is the population density?
CREATE TABLE table_232458_1 (pop_density__per_km²_ VARCHAR, no_of_barangays VARCHAR)
SELECT pop_density__per_km²_ FROM table_232458_1 WHERE no_of_barangays = 19
### Context: CREATE TABLE table_232458_1 (pop_density__per_km²_ VARCHAR, no_of_barangays VARCHAR) ### Question: If the number of barangays is 19, what is the population density? ### Answer: SELECT pop_density__per_km²_ FROM table_232458_1 WHERE no_of_barangays = 19
If the area is 66.34, what is the minimum (2010 census) population?
CREATE TABLE table_232458_1 (population__2010_census_ INTEGER, area__km²_ VARCHAR)
SELECT MIN(population__2010_census_) FROM table_232458_1 WHERE area__km²_ = "66.34"
### Context: CREATE TABLE table_232458_1 (population__2010_census_ INTEGER, area__km²_ VARCHAR) ### Question: If the area is 66.34, what is the minimum (2010 census) population? ### Answer: SELECT MIN(population__2010_census_) FROM table_232458_1 WHERE area__km²_ = "66.34"
What is the name of the city/municipality if the population is 1,388.88?
CREATE TABLE table_232458_1 (city___municipality VARCHAR, pop_density__per_km²_ VARCHAR)
SELECT city___municipality FROM table_232458_1 WHERE pop_density__per_km²_ = "1,388.88"
### Context: CREATE TABLE table_232458_1 (city___municipality VARCHAR, pop_density__per_km²_ VARCHAR) ### Question: What is the name of the city/municipality if the population is 1,388.88? ### Answer: SELECT city___municipality FROM table_232458_1 WHERE pop_density__per_km²_ = "1,388.88"
When birkenhead is the city/town and merseyside is the county and england is the country how many ranks are there?
CREATE TABLE table_23248420_1 (rank VARCHAR, city_town VARCHAR, country VARCHAR, county VARCHAR)
SELECT COUNT(rank) FROM table_23248420_1 WHERE country = "England" AND county = "Merseyside" AND city_town = "Birkenhead"
### Context: CREATE TABLE table_23248420_1 (rank VARCHAR, city_town VARCHAR, country VARCHAR, county VARCHAR) ### Question: When birkenhead is the city/town and merseyside is the county and england is the country how many ranks are there? ### Answer: SELECT COUNT(rank) FROM table_23248420_1 WHERE country = "England" AN...
When 2 is the rank what is the city/town?
CREATE TABLE table_23248420_1 (city_town VARCHAR, rank VARCHAR)
SELECT city_town FROM table_23248420_1 WHERE rank = 2
### Context: CREATE TABLE table_23248420_1 (city_town VARCHAR, rank VARCHAR) ### Question: When 2 is the rank what is the city/town? ### Answer: SELECT city_town FROM table_23248420_1 WHERE rank = 2
When 20 is the rank and north west is the region/province what is the county?
CREATE TABLE table_23248420_1 (county VARCHAR, region_province VARCHAR, rank VARCHAR)
SELECT county FROM table_23248420_1 WHERE region_province = "North West" AND rank = 20
### Context: CREATE TABLE table_23248420_1 (county VARCHAR, region_province VARCHAR, rank VARCHAR) ### Question: When 20 is the rank and north west is the region/province what is the county? ### Answer: SELECT county FROM table_23248420_1 WHERE region_province = "North West" AND rank = 20
When fleetwood is the city/town how many sets of population are there?
CREATE TABLE table_23248420_1 (population VARCHAR, city_town VARCHAR)
SELECT COUNT(population) FROM table_23248420_1 WHERE city_town = "Fleetwood"
### Context: CREATE TABLE table_23248420_1 (population VARCHAR, city_town VARCHAR) ### Question: When fleetwood is the city/town how many sets of population are there? ### Answer: SELECT COUNT(population) FROM table_23248420_1 WHERE city_town = "Fleetwood"
When 142900 is the population what is the highest rank?
CREATE TABLE table_23248420_1 (rank INTEGER, population VARCHAR)
SELECT MAX(rank) FROM table_23248420_1 WHERE population = 142900
### Context: CREATE TABLE table_23248420_1 (rank INTEGER, population VARCHAR) ### Question: When 142900 is the population what is the highest rank? ### Answer: SELECT MAX(rank) FROM table_23248420_1 WHERE population = 142900
When 31901 is the population what is the county?
CREATE TABLE table_23248420_1 (county VARCHAR, population VARCHAR)
SELECT county FROM table_23248420_1 WHERE population = 31901
### Context: CREATE TABLE table_23248420_1 (county VARCHAR, population VARCHAR) ### Question: When 31901 is the population what is the county? ### Answer: SELECT county FROM table_23248420_1 WHERE population = 31901
What was the score against the team with an 11-3 record against the Hawks?
CREATE TABLE table_23248910_5 (score VARCHAR, record VARCHAR)
SELECT score FROM table_23248910_5 WHERE record = "11-3"
### Context: CREATE TABLE table_23248910_5 (score VARCHAR, record VARCHAR) ### Question: What was the score against the team with an 11-3 record against the Hawks? ### Answer: SELECT score FROM table_23248910_5 WHERE record = "11-3"
Who had the most rebounds in the game against the team with a 5-2 record against the Hawks?
CREATE TABLE table_23248910_5 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_23248910_5 WHERE record = "5-2"
### Context: CREATE TABLE table_23248910_5 (high_rebounds VARCHAR, record VARCHAR) ### Question: Who had the most rebounds in the game against the team with a 5-2 record against the Hawks? ### Answer: SELECT high_rebounds FROM table_23248910_5 WHERE record = "5-2"
What location and it's attendance was the game against the cavaliers?
CREATE TABLE table_23248910_6 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_23248910_6 WHERE team = "Cavaliers"
### Context: CREATE TABLE table_23248910_6 (location_attendance VARCHAR, team VARCHAR) ### Question: What location and it's attendance was the game against the cavaliers? ### Answer: SELECT location_attendance FROM table_23248910_6 WHERE team = "Cavaliers"
Who scored the highest points and how much against the raptors?
CREATE TABLE table_23248910_6 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_23248910_6 WHERE team = "Raptors"
### Context: CREATE TABLE table_23248910_6 (high_points VARCHAR, team VARCHAR) ### Question: Who scored the highest points and how much against the raptors? ### Answer: SELECT high_points FROM table_23248910_6 WHERE team = "Raptors"
What location and it's attendance was the game against the Nets?
CREATE TABLE table_23248910_6 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_23248910_6 WHERE team = "Nets"
### Context: CREATE TABLE table_23248910_6 (location_attendance VARCHAR, team VARCHAR) ### Question: What location and it's attendance was the game against the Nets? ### Answer: SELECT location_attendance FROM table_23248910_6 WHERE team = "Nets"
List all players with highest assists from April 2.
CREATE TABLE table_23248910_10 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_23248910_10 WHERE date = "April 2"
### Context: CREATE TABLE table_23248910_10 (high_assists VARCHAR, date VARCHAR) ### Question: List all players with highest assists from April 2. ### Answer: SELECT high_assists FROM table_23248910_10 WHERE date = "April 2"
List high points from the April 7 game.
CREATE TABLE table_23248910_10 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_23248910_10 WHERE date = "April 7"
### Context: CREATE TABLE table_23248910_10 (high_points VARCHAR, date VARCHAR) ### Question: List high points from the April 7 game. ### Answer: SELECT high_points FROM table_23248910_10 WHERE date = "April 7"
What is every team on March 5?
CREATE TABLE table_23248910_9 (team VARCHAR, date VARCHAR)
SELECT team FROM table_23248910_9 WHERE date = "March 5"
### Context: CREATE TABLE table_23248910_9 (team VARCHAR, date VARCHAR) ### Question: What is every team on March 5? ### Answer: SELECT team FROM table_23248910_9 WHERE date = "March 5"
Who is every high points for the Pistons team?
CREATE TABLE table_23248910_9 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_23248910_9 WHERE team = "Pistons"
### Context: CREATE TABLE table_23248910_9 (high_points VARCHAR, team VARCHAR) ### Question: Who is every high points for the Pistons team? ### Answer: SELECT high_points FROM table_23248910_9 WHERE team = "Pistons"
What is every score with a record of 46-25?
CREATE TABLE table_23248910_9 (score VARCHAR, record VARCHAR)
SELECT score FROM table_23248910_9 WHERE record = "46-25"
### Context: CREATE TABLE table_23248910_9 (score VARCHAR, record VARCHAR) ### Question: What is every score with a record of 46-25? ### Answer: SELECT score FROM table_23248910_9 WHERE record = "46-25"
How many people had high rebounds during the game with a record of 34-32?
CREATE TABLE table_23248940_10 (high_rebounds VARCHAR, record VARCHAR)
SELECT COUNT(high_rebounds) FROM table_23248940_10 WHERE record = "34-32"
### Context: CREATE TABLE table_23248940_10 (high_rebounds VARCHAR, record VARCHAR) ### Question: How many people had high rebounds during the game with a record of 34-32? ### Answer: SELECT COUNT(high_rebounds) FROM table_23248940_10 WHERE record = "34-32"
How many people led in assists on game 71?
CREATE TABLE table_23248940_10 (high_assists VARCHAR, game VARCHAR)
SELECT COUNT(high_assists) FROM table_23248940_10 WHERE game = 71
### Context: CREATE TABLE table_23248940_10 (high_assists VARCHAR, game VARCHAR) ### Question: How many people led in assists on game 71? ### Answer: SELECT COUNT(high_assists) FROM table_23248940_10 WHERE game = 71
What was the location and it's attendance when the Bobcats played against Washington?
CREATE TABLE table_23248940_10 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_23248940_10 WHERE team = "Washington"
### Context: CREATE TABLE table_23248940_10 (location_attendance VARCHAR, team VARCHAR) ### Question: What was the location and it's attendance when the Bobcats played against Washington? ### Answer: SELECT location_attendance FROM table_23248940_10 WHERE team = "Washington"
Name the record for milwaukee
CREATE TABLE table_23248940_7 (record VARCHAR, team VARCHAR)
SELECT record FROM table_23248940_7 WHERE team = "Milwaukee"
### Context: CREATE TABLE table_23248940_7 (record VARCHAR, team VARCHAR) ### Question: Name the record for milwaukee ### Answer: SELECT record FROM table_23248940_7 WHERE team = "Milwaukee"
Name the location attendance for 10-14
CREATE TABLE table_23248940_7 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_23248940_7 WHERE record = "10-14"
### Context: CREATE TABLE table_23248940_7 (location_attendance VARCHAR, record VARCHAR) ### Question: Name the location attendance for 10-14 ### Answer: SELECT location_attendance FROM table_23248940_7 WHERE record = "10-14"
Name the record for december 8
CREATE TABLE table_23248940_7 (record VARCHAR, date VARCHAR)
SELECT record FROM table_23248940_7 WHERE date = "December 8"
### Context: CREATE TABLE table_23248940_7 (record VARCHAR, date VARCHAR) ### Question: Name the record for december 8 ### Answer: SELECT record FROM table_23248940_7 WHERE date = "December 8"
How did the game number 50 end?
CREATE TABLE table_23248940_9 (score VARCHAR, game VARCHAR)
SELECT score FROM table_23248940_9 WHERE game = 50
### Context: CREATE TABLE table_23248940_9 (score VARCHAR, game VARCHAR) ### Question: How did the game number 50 end? ### Answer: SELECT score FROM table_23248940_9 WHERE game = 50
How many different high assists results are there for the game played on February 24?
CREATE TABLE table_23248940_9 (high_assists VARCHAR, date VARCHAR)
SELECT COUNT(high_assists) FROM table_23248940_9 WHERE date = "February 24"
### Context: CREATE TABLE table_23248940_9 (high_assists VARCHAR, date VARCHAR) ### Question: How many different high assists results are there for the game played on February 24? ### Answer: SELECT COUNT(high_assists) FROM table_23248940_9 WHERE date = "February 24"
Who did the most high assists during the game played on February 6?
CREATE TABLE table_23248940_9 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_23248940_9 WHERE date = "February 6"
### Context: CREATE TABLE table_23248940_9 (high_assists VARCHAR, date VARCHAR) ### Question: Who did the most high assists during the game played on February 6? ### Answer: SELECT high_assists FROM table_23248940_9 WHERE date = "February 6"
Where was game number 55 played?
CREATE TABLE table_23248940_9 (location_attendance VARCHAR, game VARCHAR)
SELECT location_attendance FROM table_23248940_9 WHERE game = 55
### Context: CREATE TABLE table_23248940_9 (location_attendance VARCHAR, game VARCHAR) ### Question: Where was game number 55 played? ### Answer: SELECT location_attendance FROM table_23248940_9 WHERE game = 55
What date was game 78 played on?
CREATE TABLE table_23248967_10 (date VARCHAR, game VARCHAR)
SELECT date FROM table_23248967_10 WHERE game = 78
### Context: CREATE TABLE table_23248967_10 (date VARCHAR, game VARCHAR) ### Question: What date was game 78 played on? ### Answer: SELECT date FROM table_23248967_10 WHERE game = 78
What is the final score of the game on April 9?
CREATE TABLE table_23248967_10 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23248967_10 WHERE date = "April 9"
### Context: CREATE TABLE table_23248967_10 (score VARCHAR, date VARCHAR) ### Question: What is the final score of the game on April 9? ### Answer: SELECT score FROM table_23248967_10 WHERE date = "April 9"
Who scored the high points in game 78?
CREATE TABLE table_23248967_10 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_23248967_10 WHERE game = 78
### Context: CREATE TABLE table_23248967_10 (high_points VARCHAR, game VARCHAR) ### Question: Who scored the high points in game 78? ### Answer: SELECT high_points FROM table_23248967_10 WHERE game = 78
What is the score when the game is bigger than 29.0?
CREATE TABLE table_23249053_8 (score VARCHAR, game INTEGER)
SELECT score FROM table_23249053_8 WHERE game > 29.0
### Context: CREATE TABLE table_23249053_8 (score VARCHAR, game INTEGER) ### Question: What is the score when the game is bigger than 29.0? ### Answer: SELECT score FROM table_23249053_8 WHERE game > 29.0
When rashard lewis (24) has the highest amount of points who is the team?
CREATE TABLE table_23249053_11 (team VARCHAR, high_points VARCHAR)
SELECT team FROM table_23249053_11 WHERE high_points = "Rashard Lewis (24)"
### Context: CREATE TABLE table_23249053_11 (team VARCHAR, high_points VARCHAR) ### Question: When rashard lewis (24) has the highest amount of points who is the team? ### Answer: SELECT team FROM table_23249053_11 WHERE high_points = "Rashard Lewis (24)"
When vince carter (24) has the highest points how many teams are there?
CREATE TABLE table_23249053_11 (team VARCHAR, high_points VARCHAR)
SELECT COUNT(team) FROM table_23249053_11 WHERE high_points = "Vince Carter (24)"
### Context: CREATE TABLE table_23249053_11 (team VARCHAR, high_points VARCHAR) ### Question: When vince carter (24) has the highest points how many teams are there? ### Answer: SELECT COUNT(team) FROM table_23249053_11 WHERE high_points = "Vince Carter (24)"
In which championship did John Newcombe play against Ken Rosewall in the final match?
CREATE TABLE table_23259077_1 (championship VARCHAR, opponent_in_the_final VARCHAR)
SELECT championship FROM table_23259077_1 WHERE opponent_in_the_final = "Ken Rosewall"
### Context: CREATE TABLE table_23259077_1 (championship VARCHAR, opponent_in_the_final VARCHAR) ### Question: In which championship did John Newcombe play against Ken Rosewall in the final match? ### Answer: SELECT championship FROM table_23259077_1 WHERE opponent_in_the_final = "Ken Rosewall"
What were the scores of the Wimbledon final matches where Newcombe was the runner-up?
CREATE TABLE table_23259077_1 (score_in_the_final VARCHAR, outcome VARCHAR, championship VARCHAR)
SELECT score_in_the_final FROM table_23259077_1 WHERE outcome = "Runner-up" AND championship = "Wimbledon"
### Context: CREATE TABLE table_23259077_1 (score_in_the_final VARCHAR, outcome VARCHAR, championship VARCHAR) ### Question: What were the scores of the Wimbledon final matches where Newcombe was the runner-up? ### Answer: SELECT score_in_the_final FROM table_23259077_1 WHERE outcome = "Runner-up" AND championship = "W...
On what year did Newcombe first face Clark Graebner in a final match?
CREATE TABLE table_23259077_1 (year INTEGER, opponent_in_the_final VARCHAR)
SELECT MIN(year) FROM table_23259077_1 WHERE opponent_in_the_final = "Clark Graebner"
### Context: CREATE TABLE table_23259077_1 (year INTEGER, opponent_in_the_final VARCHAR) ### Question: On what year did Newcombe first face Clark Graebner in a final match? ### Answer: SELECT MIN(year) FROM table_23259077_1 WHERE opponent_in_the_final = "Clark Graebner"
What was the outcome for Newcombe in the matches he played against Jan Kodeš?
CREATE TABLE table_23259077_1 (outcome VARCHAR, opponent_in_the_final VARCHAR)
SELECT outcome FROM table_23259077_1 WHERE opponent_in_the_final = "Jan Kodeš"
### Context: CREATE TABLE table_23259077_1 (outcome VARCHAR, opponent_in_the_final VARCHAR) ### Question: What was the outcome for Newcombe in the matches he played against Jan Kodeš? ### Answer: SELECT outcome FROM table_23259077_1 WHERE opponent_in_the_final = "Jan Kodeš"
How many writers were there in the episode directed by Charles Haid?
CREATE TABLE table_23255941_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(written_by) FROM table_23255941_1 WHERE directed_by = "Charles Haid"
### Context: CREATE TABLE table_23255941_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: How many writers were there in the episode directed by Charles Haid? ### Answer: SELECT COUNT(written_by) FROM table_23255941_1 WHERE directed_by = "Charles Haid"
What was the title of the episode written by Mark Goffman?
CREATE TABLE table_23255941_1 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_23255941_1 WHERE written_by = "Mark Goffman"
### Context: CREATE TABLE table_23255941_1 (title VARCHAR, written_by VARCHAR) ### Question: What was the title of the episode written by Mark Goffman? ### Answer: SELECT title FROM table_23255941_1 WHERE written_by = "Mark Goffman"
How many original air dates did episode 12 have?h
CREATE TABLE table_23255941_1 (original_air_date VARCHAR, episode__number VARCHAR)
SELECT COUNT(original_air_date) FROM table_23255941_1 WHERE episode__number = 12
### Context: CREATE TABLE table_23255941_1 (original_air_date VARCHAR, episode__number VARCHAR) ### Question: How many original air dates did episode 12 have?h ### Answer: SELECT COUNT(original_air_date) FROM table_23255941_1 WHERE episode__number = 12
How many millions of viewers watched the episode directed by Christine Moore?
CREATE TABLE table_23255941_1 (viewers__in_millions_ VARCHAR, directed_by VARCHAR)
SELECT viewers__in_millions_ FROM table_23255941_1 WHERE directed_by = "Christine Moore"
### Context: CREATE TABLE table_23255941_1 (viewers__in_millions_ VARCHAR, directed_by VARCHAR) ### Question: How many millions of viewers watched the episode directed by Christine Moore? ### Answer: SELECT viewers__in_millions_ FROM table_23255941_1 WHERE directed_by = "Christine Moore"
Name the number of date for w 107–97 (ot)
CREATE TABLE table_23274514_7 (date VARCHAR, score VARCHAR)
SELECT COUNT(date) FROM table_23274514_7 WHERE score = "W 107–97 (OT)"
### Context: CREATE TABLE table_23274514_7 (date VARCHAR, score VARCHAR) ### Question: Name the number of date for w 107–97 (ot) ### Answer: SELECT COUNT(date) FROM table_23274514_7 WHERE score = "W 107–97 (OT)"
Name the date for 17-32
CREATE TABLE table_23274514_7 (date VARCHAR, record VARCHAR)
SELECT date FROM table_23274514_7 WHERE record = "17-32"
### Context: CREATE TABLE table_23274514_7 (date VARCHAR, record VARCHAR) ### Question: Name the date for 17-32 ### Answer: SELECT date FROM table_23274514_7 WHERE record = "17-32"
Name the high rebounds for 17-33
CREATE TABLE table_23274514_7 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_23274514_7 WHERE record = "17-33"
### Context: CREATE TABLE table_23274514_7 (high_rebounds VARCHAR, record VARCHAR) ### Question: Name the high rebounds for 17-33 ### Answer: SELECT high_rebounds FROM table_23274514_7 WHERE record = "17-33"
Name the team for 19-34
CREATE TABLE table_23274514_7 (team VARCHAR, record VARCHAR)
SELECT team FROM table_23274514_7 WHERE record = "19-34"
### Context: CREATE TABLE table_23274514_7 (team VARCHAR, record VARCHAR) ### Question: Name the team for 19-34 ### Answer: SELECT team FROM table_23274514_7 WHERE record = "19-34"
How many models have maximum power output is 162kw (220 ps) at 6,300 rpm?
CREATE TABLE table_2326823_2 (model VARCHAR, max_power_output VARCHAR)
SELECT COUNT(model) FROM table_2326823_2 WHERE max_power_output = "162kW (220 PS) at 6,300 rpm"
### Context: CREATE TABLE table_2326823_2 (model VARCHAR, max_power_output VARCHAR) ### Question: How many models have maximum power output is 162kw (220 ps) at 6,300 rpm? ### Answer: SELECT COUNT(model) FROM table_2326823_2 WHERE max_power_output = "162kW (220 PS) at 6,300 rpm"
List the max power produced for model 2.0 ts with peak of n·m (lb·ft) at 3,500 rpm.
CREATE TABLE table_2326823_2 (max_power_output VARCHAR, model VARCHAR, peak_torque VARCHAR)
SELECT max_power_output FROM table_2326823_2 WHERE model = "2.0 TS" AND peak_torque = "N·m (lb·ft) at 3,500 rpm"
### Context: CREATE TABLE table_2326823_2 (max_power_output VARCHAR, model VARCHAR, peak_torque VARCHAR) ### Question: List the max power produced for model 2.0 ts with peak of n·m (lb·ft) at 3,500 rpm. ### Answer: SELECT max_power_output FROM table_2326823_2 WHERE model = "2.0 TS" AND peak_torque = "N·m (lb·ft) at 3,5...
Who had the highest points during the game with a record of 2-7?
CREATE TABLE table_23274514_4 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_23274514_4 WHERE record = "2-7"
### Context: CREATE TABLE table_23274514_4 (high_points VARCHAR, record VARCHAR) ### Question: Who had the highest points during the game with a record of 2-7? ### Answer: SELECT high_points FROM table_23274514_4 WHERE record = "2-7"
What team did the Wizards play against when their record was 2-5?
CREATE TABLE table_23274514_4 (team VARCHAR, record VARCHAR)
SELECT team FROM table_23274514_4 WHERE record = "2-5"
### Context: CREATE TABLE table_23274514_4 (team VARCHAR, record VARCHAR) ### Question: What team did the Wizards play against when their record was 2-5? ### Answer: SELECT team FROM table_23274514_4 WHERE record = "2-5"
Who tied in the highest point scorer when playing against Phoenix?
CREATE TABLE table_23274514_4 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_23274514_4 WHERE team = "Phoenix"
### Context: CREATE TABLE table_23274514_4 (high_points VARCHAR, team VARCHAR) ### Question: Who tied in the highest point scorer when playing against Phoenix? ### Answer: SELECT high_points FROM table_23274514_4 WHERE team = "Phoenix"
Which season used production code "am10"?
CREATE TABLE table_23279434_1 (season__number VARCHAR, production_code VARCHAR)
SELECT COUNT(season__number) FROM table_23279434_1 WHERE production_code = "AM10"
### Context: CREATE TABLE table_23279434_1 (season__number VARCHAR, production_code VARCHAR) ### Question: Which season used production code "am10"? ### Answer: SELECT COUNT(season__number) FROM table_23279434_1 WHERE production_code = "AM10"
When did Jeremy Kagan's episode first air?
CREATE TABLE table_23279434_1 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_23279434_1 WHERE directed_by = "Jeremy Kagan"
### Context: CREATE TABLE table_23279434_1 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: When did Jeremy Kagan's episode first air? ### Answer: SELECT original_air_date FROM table_23279434_1 WHERE directed_by = "Jeremy Kagan"
What seasons in series 7 did David E. Kelley write ?
CREATE TABLE table_23279434_1 (season__number VARCHAR, written_by VARCHAR, series__number VARCHAR)
SELECT COUNT(season__number) FROM table_23279434_1 WHERE written_by = "David E. Kelley" AND series__number = 7
### Context: CREATE TABLE table_23279434_1 (season__number VARCHAR, written_by VARCHAR, series__number VARCHAR) ### Question: What seasons in series 7 did David E. Kelley write ? ### Answer: SELECT COUNT(season__number) FROM table_23279434_1 WHERE written_by = "David E. Kelley" AND series__number = 7
Name the total number of date for score being l 106–116 (ot)
CREATE TABLE table_23281862_10 (date VARCHAR, score VARCHAR)
SELECT COUNT(date) FROM table_23281862_10 WHERE score = "L 106–116 (OT)"
### Context: CREATE TABLE table_23281862_10 (date VARCHAR, score VARCHAR) ### Question: Name the total number of date for score being l 106–116 (ot) ### Answer: SELECT COUNT(date) FROM table_23281862_10 WHERE score = "L 106–116 (OT)"
Name the record for charlotte
CREATE TABLE table_23281862_10 (record VARCHAR, team VARCHAR)
SELECT record FROM table_23281862_10 WHERE team = "Charlotte"
### Context: CREATE TABLE table_23281862_10 (record VARCHAR, team VARCHAR) ### Question: Name the record for charlotte ### Answer: SELECT record FROM table_23281862_10 WHERE team = "Charlotte"
Name the most game for w 113–96 (ot)
CREATE TABLE table_23281862_10 (game INTEGER, score VARCHAR)
SELECT MAX(game) FROM table_23281862_10 WHERE score = "W 113–96 (OT)"
### Context: CREATE TABLE table_23281862_10 (game INTEGER, score VARCHAR) ### Question: Name the most game for w 113–96 (ot) ### Answer: SELECT MAX(game) FROM table_23281862_10 WHERE score = "W 113–96 (OT)"
What was the score when the record was 22-53?
CREATE TABLE table_23274514_9 (score VARCHAR, record VARCHAR)
SELECT score FROM table_23274514_9 WHERE record = "22-53"
### Context: CREATE TABLE table_23274514_9 (score VARCHAR, record VARCHAR) ### Question: What was the score when the record was 22-53? ### Answer: SELECT score FROM table_23274514_9 WHERE record = "22-53"
What was the record when they played golden state?
CREATE TABLE table_23274514_9 (record VARCHAR, team VARCHAR)
SELECT record FROM table_23274514_9 WHERE team = "Golden State"
### Context: CREATE TABLE table_23274514_9 (record VARCHAR, team VARCHAR) ### Question: What was the record when they played golden state? ### Answer: SELECT record FROM table_23274514_9 WHERE team = "Golden State"
How many percentages (2006) are there for the population whose mother tongue is French?
CREATE TABLE table_2328113_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR)
SELECT COUNT(percentage__2006_) FROM table_2328113_1 WHERE mother_tongue = "French"
### Context: CREATE TABLE table_2328113_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR) ### Question: How many percentages (2006) are there for the population whose mother tongue is French? ### Answer: SELECT COUNT(percentage__2006_) FROM table_2328113_1 WHERE mother_tongue = "French"
What was the minimum population in 2011?
CREATE TABLE table_2328113_1 (population__2011_ INTEGER)
SELECT MIN(population__2011_) FROM table_2328113_1
### Context: CREATE TABLE table_2328113_1 (population__2011_ INTEGER) ### Question: What was the minimum population in 2011? ### Answer: SELECT MIN(population__2011_) FROM table_2328113_1
What was the percentage in 2006 whose natives is Polish?
CREATE TABLE table_2328113_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR)
SELECT percentage__2006_ FROM table_2328113_1 WHERE mother_tongue = "Polish"
### Context: CREATE TABLE table_2328113_1 (percentage__2006_ VARCHAR, mother_tongue VARCHAR) ### Question: What was the percentage in 2006 whose natives is Polish? ### Answer: SELECT percentage__2006_ FROM table_2328113_1 WHERE mother_tongue = "Polish"
Name the location attendance for dirk nowitzki , caron butler (17)
CREATE TABLE table_23284271_11 (location_attendance VARCHAR, high_points VARCHAR)
SELECT location_attendance FROM table_23284271_11 WHERE high_points = "Dirk Nowitzki , Caron Butler (17)"
### Context: CREATE TABLE table_23284271_11 (location_attendance VARCHAR, high_points VARCHAR) ### Question: Name the location attendance for dirk nowitzki , caron butler (17) ### Answer: SELECT location_attendance FROM table_23284271_11 WHERE high_points = "Dirk Nowitzki , Caron Butler (17)"
Name the location attendance for 4 game
CREATE TABLE table_23284271_11 (location_attendance VARCHAR, game VARCHAR)
SELECT location_attendance FROM table_23284271_11 WHERE game = 4
### Context: CREATE TABLE table_23284271_11 (location_attendance VARCHAR, game VARCHAR) ### Question: Name the location attendance for 4 game ### Answer: SELECT location_attendance FROM table_23284271_11 WHERE game = 4
Name the date for l 89–92 (ot)
CREATE TABLE table_23284271_11 (date VARCHAR, score VARCHAR)
SELECT date FROM table_23284271_11 WHERE score = "L 89–92 (OT)"
### Context: CREATE TABLE table_23284271_11 (date VARCHAR, score VARCHAR) ### Question: Name the date for l 89–92 (ot) ### Answer: SELECT date FROM table_23284271_11 WHERE score = "L 89–92 (OT)"
Name the high assists for 1-2 series
CREATE TABLE table_23284271_11 (high_assists VARCHAR, series VARCHAR)
SELECT high_assists FROM table_23284271_11 WHERE series = "1-2"
### Context: CREATE TABLE table_23284271_11 (high_assists VARCHAR, series VARCHAR) ### Question: Name the high assists for 1-2 series ### Answer: SELECT high_assists FROM table_23284271_11 WHERE series = "1-2"
Name the high rebounds for american airlines center 20,557
CREATE TABLE table_23284271_11 (high_rebounds VARCHAR, location_attendance VARCHAR)
SELECT high_rebounds FROM table_23284271_11 WHERE location_attendance = "American Airlines Center 20,557"
### Context: CREATE TABLE table_23284271_11 (high_rebounds VARCHAR, location_attendance VARCHAR) ### Question: Name the high rebounds for american airlines center 20,557 ### Answer: SELECT high_rebounds FROM table_23284271_11 WHERE location_attendance = "American Airlines Center 20,557"
Name the score for december 27
CREATE TABLE table_23284271_6 (score VARCHAR, date VARCHAR)
SELECT COUNT(score) FROM table_23284271_6 WHERE date = "December 27"
### Context: CREATE TABLE table_23284271_6 (score VARCHAR, date VARCHAR) ### Question: Name the score for december 27 ### Answer: SELECT COUNT(score) FROM table_23284271_6 WHERE date = "December 27"
Name the total number of high points for pepsi center 19,756
CREATE TABLE table_23284271_6 (high_points VARCHAR, location_attendance VARCHAR)
SELECT COUNT(high_points) FROM table_23284271_6 WHERE location_attendance = "Pepsi Center 19,756"
### Context: CREATE TABLE table_23284271_6 (high_points VARCHAR, location_attendance VARCHAR) ### Question: Name the total number of high points for pepsi center 19,756 ### Answer: SELECT COUNT(high_points) FROM table_23284271_6 WHERE location_attendance = "Pepsi Center 19,756"
Name the opponent in the final for 3–6, 1–6
CREATE TABLE table_23284597_3 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
SELECT opponent_in_the_final FROM table_23284597_3 WHERE score_in_the_final = "3–6, 1–6"
### Context: CREATE TABLE table_23284597_3 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) ### Question: Name the opponent in the final for 3–6, 1–6 ### Answer: SELECT opponent_in_the_final FROM table_23284597_3 WHERE score_in_the_final = "3–6, 1–6"