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