question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the title of the episode directed by Rodney Clouden? | CREATE TABLE table_23242958_1 (title VARCHAR, directed_by VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT score FROM table_23248869_10 WHERE location_attendance = \"Madison Square Garden 19,763\" AND game < 80.0"
} |
What is every record for the team Boston? | CREATE TABLE table_23248869_10 (record VARCHAR, team VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT COUNT(rank) FROM table_23248420_1 WHERE country = \"England\" AND county = \"Merseyside\" AND city_town = \"Birkenhead\""
} |
When 2 is the rank what is the city/town? | CREATE TABLE table_23248420_1 (city_town VARCHAR, rank VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT location_attendance FROM table_23248940_10 WHERE team = \"Washington\""
} |
Name the record for milwaukee | CREATE TABLE table_23248940_7 (record VARCHAR, team VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT score_in_the_final FROM table_23259077_1 WHERE outcome = \"Runner-up\" AND championship = \"Wimbledon\""
} |
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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT max_power_output FROM table_2326823_2 WHERE model = \"2.0 TS\" AND peak_torque = \"N·m (lb·ft) at 3,500 rpm\""
} |
Who had the highest points during the game with a record of 2-7? | CREATE TABLE table_23274514_4 (high_points VARCHAR, record VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT opponent_in_the_final FROM table_23284597_3 WHERE score_in_the_final = \"3–6, 1–6\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.