Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
7,100
<question>: How many directors directed episode 3 of the season? <context>: CREATE TABLE table_23097214_1 (directed_by VARCHAR, season__number VARCHAR)
SELECT COUNT(directed_by) FROM table_23097214_1 WHERE season__number = 3
7,101
<question>: Who wrote the episode directed by Ken Whittingham? <context>: CREATE TABLE table_23097214_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_23097214_1 WHERE directed_by = "Ken Whittingham"
7,102
<question>: What is the production code for Episode 153 in the series? <context>: CREATE TABLE table_23097214_1 (production_code INTEGER, series__number VARCHAR)
SELECT MIN(production_code) FROM table_23097214_1 WHERE series__number = 153
7,103
<question>: What is the name of the episode where the season number is 13? <context>: CREATE TABLE table_23114705_3 (title VARCHAR, no_in_season VARCHAR)
SELECT title FROM table_23114705_3 WHERE no_in_season = 13
7,104
<question>: If the episode was written by Tim Balme, what was the original air date? <context>: CREATE TABLE table_23114705_3 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_23114705_3 WHERE written_by = "Tim Balme"
7,105
<question>: What date did the show air when Rhod Gilbert was the headliner? <context>: CREATE TABLE table_23122988_1 (airdate VARCHAR, headliner VARCHAR)
SELECT airdate FROM table_23122988_1 WHERE headliner = "Rhod Gilbert"
7,106
<question>: What date did the show air when Sean Lock was the headliner? <context>: CREATE TABLE table_23122988_1 (airdate VARCHAR, headliner VARCHAR)
SELECT airdate FROM table_23122988_1 WHERE headliner = "Sean Lock"
7,107
<question>: Who were the comedians on episode 1x03? <context>: CREATE TABLE table_23122988_1 (comedians VARCHAR, episode VARCHAR)
SELECT comedians FROM table_23122988_1 WHERE episode = "1x03"
7,108
<question>: What episode took place in Belfast Waterfront Hall? <context>: CREATE TABLE table_23122988_1 (episode VARCHAR, location VARCHAR)
SELECT episode FROM table_23122988_1 WHERE location = "Belfast Waterfront Hall"
7,109
<question>: Who were the comedians during the episode located in Birmingham Hippodrome? <context>: CREATE TABLE table_23122988_1 (comedians VARCHAR, location VARCHAR)
SELECT comedians FROM table_23122988_1 WHERE location = "Birmingham Hippodrome"
7,110
<question>: Name the total number of director for vesničko má středisková <context>: CREATE TABLE table_23141790_1 (director VARCHAR, original_title VARCHAR)
SELECT COUNT(director) FROM table_23141790_1 WHERE original_title = "Vesničko má středisková"
7,111
<question>: Name the growth rate for density of 1087 <context>: CREATE TABLE table_231623_3 (growth_rate VARCHAR, density_per_kilometer VARCHAR)
SELECT COUNT(growth_rate) FROM table_231623_3 WHERE density_per_kilometer = 1087
7,112
<question>: Name the sex ratio lowest for population 4773138 <context>: CREATE TABLE table_231623_3 (sex_ratio INTEGER, population VARCHAR)
SELECT MAX(sex_ratio) FROM table_231623_3 WHERE population = 4773138
7,113
<question>: What is the original air date of the episode that had a week ranking of 21? <context>: CREATE TABLE table_23177573_1 (original_air_date VARCHAR, rank__week_ VARCHAR)
SELECT original_air_date FROM table_23177573_1 WHERE rank__week_ = 21
7,114
<question>: What was the week ranking of the episode written by Russel Friend & Garrett Lerner? <context>: CREATE TABLE table_23177573_1 (rank__week_ VARCHAR, written_by VARCHAR)
SELECT rank__week_ FROM table_23177573_1 WHERE written_by = "Russel Friend & Garrett Lerner"
7,115
<question>: What was the week ranking of the episode written by Thomas L. Moran and directed by Andrew Bernstein? <context>: CREATE TABLE table_23177573_1 (rank__week_ VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT rank__week_ FROM table_23177573_1 WHERE written_by = "Thomas L. Moran" AND directed_by = "Andrew Bernstein"
7,116
<question>: Name the position for chivu <context>: CREATE TABLE table (position VARCHAR, player VARCHAR, Chivu VARCHAR)
SELECT position FROM table WHERE player = Chivu
7,117
<question>: Name the total number of r for coppa italia larger than 1.0 <context>: CREATE TABLE table (r VARCHAR, coppa_italia INTEGER)
SELECT COUNT(r) FROM table WHERE coppa_italia > 1.0
7,118
<question>: Which charts had debut sales of of more than 339333.011497678? <context>: CREATE TABLE table_23180638_1 (oricon_albums_chart VARCHAR, debut_sales__copies_ INTEGER)
SELECT oricon_albums_chart FROM table_23180638_1 WHERE debut_sales__copies_ > 339333.011497678
7,119
<question>: How many peak positions were there on the weekly charts? <context>: CREATE TABLE table_23180638_1 (peak_position VARCHAR, oricon_albums_chart VARCHAR)
SELECT COUNT(peak_position) FROM table_23180638_1 WHERE oricon_albums_chart = "Weekly Charts"
7,120
<question>: How many peak positions were there on the daily charts? <context>: CREATE TABLE table_23180638_1 (peak_position VARCHAR, oricon_albums_chart VARCHAR)
SELECT peak_position FROM table_23180638_1 WHERE oricon_albums_chart = "Daily Charts"
7,121
<question>: Which charts had debut sales of 101976? <context>: CREATE TABLE table_23180638_1 (oricon_albums_chart VARCHAR, debut_sales__copies_ VARCHAR)
SELECT oricon_albums_chart FROM table_23180638_1 WHERE debut_sales__copies_ = 101976
7,122
<question>: What was the score when playing Milwaukee? <context>: CREATE TABLE table_23186738_10 (score VARCHAR, team VARCHAR)
SELECT score FROM table_23186738_10 WHERE team = "Milwaukee"
7,123
<question>: Who had the highest rebounds in the game where the record was 27-54? <context>: CREATE TABLE table_23186738_10 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_23186738_10 WHERE record = "27-54"
7,124
<question>: When did the team play against Niagara? <context>: CREATE TABLE table_23184448_3 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_23184448_3 WHERE opponent = "Niagara"
7,125
<question>: How many points did the opposing team get in the game with 6-2 record? <context>: CREATE TABLE table_23184448_3 (opp_points INTEGER, record VARCHAR)
SELECT MIN(opp_points) FROM table_23184448_3 WHERE record = "6-2"
7,126
<question>: When did the Cyclones get 46 points? <context>: CREATE TABLE table_23184448_3 (date VARCHAR, cyclones_points VARCHAR)
SELECT date FROM table_23184448_3 WHERE cyclones_points = 46
7,127
<question>: On how many different dates did the team play a game in Cedar Falls, Iowa? <context>: CREATE TABLE table_23184448_3 (date VARCHAR, location VARCHAR)
SELECT COUNT(date) FROM table_23184448_3 WHERE location = "Cedar Falls, Iowa"
7,128
<question>: Name the date for air canada centre 18,736 <context>: CREATE TABLE table_23186738_9 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_23186738_9 WHERE location_attendance = "Air Canada Centre 18,736"
7,129
<question>: Name the score for chicago <context>: CREATE TABLE table_23186738_9 (score VARCHAR, team VARCHAR)
SELECT score FROM table_23186738_9 WHERE team = "Chicago"
7,130
<question>: Name the least game for march 20 <context>: CREATE TABLE table_23186738_9 (game INTEGER, date VARCHAR)
SELECT MIN(game) FROM table_23186738_9 WHERE date = "March 20"
7,131
<question>: Name the least game for score of l 93–109 (ot) <context>: CREATE TABLE table_23186738_9 (game INTEGER, score VARCHAR)
SELECT MIN(game) FROM table_23186738_9 WHERE score = "L 93–109 (OT)"
7,132
<question>: If the location attendance is the Verizon Center 20,173, what is the date? <context>: CREATE TABLE table_23211041_7 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_23211041_7 WHERE location_attendance = "Verizon Center 20,173"
7,133
<question>: Who's captain of the team whose stadium has a capacity of 17800 people? <context>: CREATE TABLE table_23214833_1 (team_captain VARCHAR, capacity VARCHAR)
SELECT team_captain FROM table_23214833_1 WHERE capacity = 17800
7,134
<question>: How many different team captains does the club Sliven 2000 have? <context>: CREATE TABLE table_23214833_1 (team_captain VARCHAR, club VARCHAR)
SELECT COUNT(team_captain) FROM table_23214833_1 WHERE club = "Sliven 2000"
7,135
<question>: Who's the captain of the team whose stadium is Gradski Stadion? <context>: CREATE TABLE table_23214833_1 (team_captain VARCHAR, stadium VARCHAR)
SELECT team_captain FROM table_23214833_1 WHERE stadium = "Gradski Stadion"
7,136
<question>: What stadium has capacity for 13800? <context>: CREATE TABLE table_23214833_1 (stadium VARCHAR, capacity VARCHAR)
SELECT stadium FROM table_23214833_1 WHERE capacity = 13800
7,137
<question>: How many people can attend games in the stadium of the team whose captain is Vasil Vasilev? <context>: CREATE TABLE table_23214833_1 (capacity VARCHAR, team_captain VARCHAR)
SELECT capacity FROM table_23214833_1 WHERE team_captain = "Vasil Vasilev"
7,138
<question>: When asv nürnberg-süd is the mittelfranken süd what is the season? <context>: CREATE TABLE table_23224961_2 (season VARCHAR, mittelfranken_süd VARCHAR)
SELECT season FROM table_23224961_2 WHERE mittelfranken_süd = "ASV Nürnberg-Süd"
7,139
<question>: When sv neuses is the oberfranken west what is the season? <context>: CREATE TABLE table_23224961_2 (season VARCHAR, oberfranken_west VARCHAR)
SELECT season FROM table_23224961_2 WHERE oberfranken_west = "SV Neuses"
7,140
<question>: When wacker marktredwitz is the oberfranken ost how many unterfranken wests are there? <context>: CREATE TABLE table_23224961_2 (unterfranken_west VARCHAR, oberfranken_ost VARCHAR)
SELECT COUNT(unterfranken_west) FROM table_23224961_2 WHERE oberfranken_ost = "Wacker Marktredwitz"
7,141
<question>: When atsv erlangen is the mittelfranken nord and alemannia haibach is the unterfranken west what is the mittelfranken süd? <context>: CREATE TABLE table_23224961_2 (mittelfranken_süd VARCHAR, unterfranken_west VARCHAR, mittelfranken_nord VARCHAR)
SELECT mittelfranken_süd FROM table_23224961_2 WHERE unterfranken_west = "Alemannia Haibach" AND mittelfranken_nord = "ATSV Erlangen"
7,142
<question>: Who tied for the highest rebounds during the game against Orlando? <context>: CREATE TABLE table_23248940_8 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_23248940_8 WHERE team = "Orlando"
7,143
<question>: Who are all high points in game 14? <context>: CREATE TABLE table_23248940_6 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_23248940_6 WHERE game = 14
7,144
<question>: What is every value for location attendance on date of November 18? <context>: CREATE TABLE table_23248940_6 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_23248940_6 WHERE date = "November 18"
7,145
<question>: What is every score when date is November 10? <context>: CREATE TABLE table_23248940_6 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23248940_6 WHERE date = "November 10"
7,146
<question>: What is every record for game 11? <context>: CREATE TABLE table_23248940_6 (record VARCHAR, game VARCHAR)
SELECT record FROM table_23248940_6 WHERE game = 11
7,147
<question>: How many locations was game 3 played at? <context>: CREATE TABLE table_23248967_5 (location_attendance VARCHAR, game VARCHAR)
SELECT COUNT(location_attendance) FROM table_23248967_5 WHERE game = 3
7,148
<question>: What was the score against New Orleans? <context>: CREATE TABLE table_23248967_5 (score VARCHAR, team VARCHAR)
SELECT score FROM table_23248967_5 WHERE team = "New Orleans"
7,149
<question>: How many game locations occurred on March 6? <context>: CREATE TABLE table_23248967_9 (location_attendance VARCHAR, date VARCHAR)
SELECT COUNT(location_attendance) FROM table_23248967_9 WHERE date = "March 6"
7,150
<question>: What was the surface during wimbledon in 1974? <context>: CREATE TABLE table_23258574_2 (surface VARCHAR, championship VARCHAR, year VARCHAR)
SELECT surface FROM table_23258574_2 WHERE championship = "Wimbledon" AND year = 1974
7,151
<question>: Name the overall for mark steenhuis <context>: CREATE TABLE table_23265433_2 (overall VARCHAR, offensive VARCHAR)
SELECT overall FROM table_23265433_2 WHERE offensive = "Mark Steenhuis"
7,152
<question>: Name the total number of offensive for colin doyle <context>: CREATE TABLE table_23265433_2 (offensive VARCHAR, overall VARCHAR)
SELECT COUNT(offensive) FROM table_23265433_2 WHERE overall = "Colin Doyle"
7,153
<question>: Name the week for steve toll <context>: CREATE TABLE table_23265433_2 (week VARCHAR, transition VARCHAR)
SELECT week FROM table_23265433_2 WHERE transition = "Steve Toll"
7,154
<question>: Name the rookie for ryan powell <context>: CREATE TABLE table_23265433_2 (rookie VARCHAR, offensive VARCHAR)
SELECT rookie FROM table_23265433_2 WHERE offensive = "Ryan Powell"
7,155
<question>: Name the defensive for week 9 <context>: CREATE TABLE table_23265433_2 (defensive VARCHAR, week VARCHAR)
SELECT defensive FROM table_23265433_2 WHERE week = 9
7,156
<question>: Name the high rebounds for record 10-19 <context>: CREATE TABLE table_23274514_5 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_23274514_5 WHERE record = "10-19"
7,157
<question>: Name the high points for l 109–112 (ot) <context>: CREATE TABLE table_23274514_5 (high_points VARCHAR, score VARCHAR)
SELECT high_points FROM table_23274514_5 WHERE score = "L 109–112 (OT)"
7,158
<question>: Name the high assists for 4-3 <context>: CREATE TABLE table_23281862_5 (high_assists VARCHAR, record VARCHAR)
SELECT high_assists FROM table_23281862_5 WHERE record = "4-3"
7,159
<question>: Name the location attendance for memphis <context>: CREATE TABLE table_23281862_5 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_23281862_5 WHERE team = "Memphis"
7,160
<question>: Name the number of score for sacramento <context>: CREATE TABLE table_23281862_5 (score VARCHAR, team VARCHAR)
SELECT COUNT(score) FROM table_23281862_5 WHERE team = "Sacramento"
7,161
<question>: Who has the high points when 53-27 is the record? <context>: CREATE TABLE table_23284271_10 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_23284271_10 WHERE record = "53-27"
7,162
<question>: Which team has dirk nowitski (13) as high rebounds? <context>: CREATE TABLE table_23284271_10 (team VARCHAR, high_rebounds VARCHAR)
SELECT team FROM table_23284271_10 WHERE high_rebounds = "Dirk Nowitski (13)"
7,163
<question>: What is the score for game 78? <context>: CREATE TABLE table_23284271_10 (score VARCHAR, game VARCHAR)
SELECT score FROM table_23284271_10 WHERE game = 78
7,164
<question>: Who has the high assists when 50-26 is the record? <context>: CREATE TABLE table_23284271_10 (high_assists VARCHAR, record VARCHAR)
SELECT high_assists FROM table_23284271_10 WHERE record = "50-26"
7,165
<question>: Who has high points when 50-26 is the record? <context>: CREATE TABLE table_23284271_10 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_23284271_10 WHERE record = "50-26"
7,166
<question>: Which date is the team @ la clippers? <context>: CREATE TABLE table_23284271_10 (date VARCHAR, team VARCHAR)
SELECT date FROM table_23284271_10 WHERE team = "@ LA Clippers"
7,167
<question>: Who is the high rebounds for game 64? <context>: CREATE TABLE table_23281862_9 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_23281862_9 WHERE game = 64
7,168
<question>: What is the record where aaron brooks (6) is high assists? <context>: CREATE TABLE table_23281862_9 (record VARCHAR, high_assists VARCHAR)
SELECT record FROM table_23281862_9 WHERE high_assists = "Aaron Brooks (6)"
7,169
<question>: What is the score when 36-33 is the record? <context>: CREATE TABLE table_23281862_9 (score VARCHAR, record VARCHAR)
SELECT score FROM table_23281862_9 WHERE record = "36-33"
7,170
<question>: How many teams played against the Mavericks in a game where the score was w 99–91 (ot)? <context>: CREATE TABLE table_23284271_7 (team VARCHAR, score VARCHAR)
SELECT COUNT(team) FROM table_23284271_7 WHERE score = "W 99–91 (OT)"
7,171
<question>: How many teams have channing frye, jason richardson (8) as high rebounds? <context>: CREATE TABLE table_23285761_11 (team VARCHAR, high_rebounds VARCHAR)
SELECT COUNT(team) FROM table_23285761_11 WHERE high_rebounds = "Channing Frye, Jason Richardson (8)"
7,172
<question>: Who has the high assists when April 26 is the date? <context>: CREATE TABLE table_23285761_11 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_23285761_11 WHERE date = "April 26"
7,173
<question>: Which team has 5 as a game? <context>: CREATE TABLE table_23285761_11 (team VARCHAR, game VARCHAR)
SELECT team FROM table_23285761_11 WHERE game = 5
7,174
<question>: Who did the high assists in the game where Amar'e Stoudemire (10) did the high rebounds? <context>: CREATE TABLE table_23285761_7 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT high_assists FROM table_23285761_7 WHERE high_rebounds = "Amar'e Stoudemire (10)"
7,175
<question>: Who was the game on January 26 played against? <context>: CREATE TABLE table_23285761_7 (team VARCHAR, date VARCHAR)
SELECT team FROM table_23285761_7 WHERE date = "January 26"
7,176
<question>: What was the record of the game played on January 5? <context>: CREATE TABLE table_23285761_7 (record VARCHAR, date VARCHAR)
SELECT record FROM table_23285761_7 WHERE date = "January 5"
7,177
<question>: What's the record of the game with number 40? <context>: CREATE TABLE table_23285761_7 (record VARCHAR, game VARCHAR)
SELECT record FROM table_23285761_7 WHERE game = 40
7,178
<question>: What was the score with the team record was 15-25? <context>: CREATE TABLE table_23285805_6 (score VARCHAR, record VARCHAR)
SELECT score FROM table_23285805_6 WHERE record = "15-25"
7,179
<question>: Who has the most rebounds for game 42? <context>: CREATE TABLE table_23285805_6 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_23285805_6 WHERE game = 42
7,180
<question>: Who had the most rebounds when the team record was 15-27? <context>: CREATE TABLE table_23285805_6 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_23285805_6 WHERE record = "15-27"
7,181
<question>: Who has the high assists when the team is Oklahoma City? <context>: CREATE TABLE table_23285805_8 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_23285805_8 WHERE team = "Oklahoma City"
7,182
<question>: On which datebis arco arena 17361 the location attendance? <context>: CREATE TABLE table_23285805_8 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_23285805_8 WHERE location_attendance = "Arco Arena 17361"
7,183
<question>: Which team has the location attendance of American Airlines Center 19954? <context>: CREATE TABLE table_23285805_8 (team VARCHAR, location_attendance VARCHAR)
SELECT team FROM table_23285805_8 WHERE location_attendance = "American Airlines Center 19954"
7,184
<question>: What is the record where arco arena 17361 is location attendance? <context>: CREATE TABLE table_23285805_8 (record VARCHAR, location_attendance VARCHAR)
SELECT record FROM table_23285805_8 WHERE location_attendance = "Arco Arena 17361"
7,185
<question>: Who has the high points for the 69 game? <context>: CREATE TABLE table_23285805_8 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_23285805_8 WHERE game = 69
7,186
<question>: Name the record for rose garden 20,565 attendance <context>: CREATE TABLE table_23286158_8 (record VARCHAR, location_attendance VARCHAR)
SELECT record FROM table_23286158_8 WHERE location_attendance = "Rose Garden 20,565"
7,187
<question>: Name the game for andre miller , rudy fernandez (7) <context>: CREATE TABLE table_23286158_8 (game VARCHAR, high_rebounds VARCHAR)
SELECT game FROM table_23286158_8 WHERE high_rebounds = "Andre Miller , Rudy Fernandez (7)"
7,188
<question>: Name the high points for 30-23 <context>: CREATE TABLE table_23286158_8 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_23286158_8 WHERE record = "30-23"
7,189
<question>: Name the team at the rose garden 20,565 <context>: CREATE TABLE table_23286158_8 (team VARCHAR, location_attendance VARCHAR)
SELECT team FROM table_23286158_8 WHERE location_attendance = "Rose Garden 20,565"
7,190
<question>: What was the score for the game when the record was 37-27? <context>: CREATE TABLE table_23286158_9 (score VARCHAR, record VARCHAR)
SELECT score FROM table_23286158_9 WHERE record = "37-27"
7,191
<question>: Who led with the highest points during the game against Indiana? <context>: CREATE TABLE table_23286158_9 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_23286158_9 WHERE team = "Indiana"
7,192
<question>: Name the most number in series for production code of 3abc11 <context>: CREATE TABLE table_23289934_1 (no_in_series INTEGER, production_code VARCHAR)
SELECT MAX(no_in_series) FROM table_23289934_1 WHERE production_code = "3ABC11"
7,193
<question>: Name the most number in season for production code 3abc12 <context>: CREATE TABLE table_23289934_1 (no_in_season INTEGER, production_code VARCHAR)
SELECT MAX(no_in_season) FROM table_23289934_1 WHERE production_code = "3ABC12"
7,194
<question>: Name the title for number 16 <context>: CREATE TABLE table_23289934_1 (title VARCHAR, no_in_season VARCHAR)
SELECT title FROM table_23289934_1 WHERE no_in_season = 16
7,195
<question>: Name the least number for production code for 3abc21 <context>: CREATE TABLE table_23289934_1 (no_in_series INTEGER, production_code VARCHAR)
SELECT MIN(no_in_series) FROM table_23289934_1 WHERE production_code = "3ABC21"
7,196
<question>: What was the date that the episode with Jeff Davis as the second performer originally aired? <context>: CREATE TABLE table_23294081_10 (original_airdate VARCHAR, performer_2 VARCHAR)
SELECT original_airdate FROM table_23294081_10 WHERE performer_2 = "Jeff Davis"
7,197
<question>: How many episodes were series episode 214? <context>: CREATE TABLE table_23294081_10 (_number VARCHAR, no VARCHAR)
SELECT COUNT(_number) FROM table_23294081_10 WHERE no = 214
7,198
<question>: What date did the capitols play the toronto maple leafs? <context>: CREATE TABLE table_23308178_6 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_23308178_6 WHERE opponent = "Toronto Maple Leafs"
7,199
<question>: Where was the game played when the record was 20-6-6? <context>: CREATE TABLE table_23308178_6 (location VARCHAR, record VARCHAR)
SELECT location FROM table_23308178_6 WHERE record = "20-6-6"