Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
36,100
<question>: Name the year for guillermo cañas <context>: CREATE TABLE table_23284597_3 (year VARCHAR, opponent_in_the_final VARCHAR)
SELECT year FROM table_23284597_3 WHERE opponent_in_the_final = "Guillermo Cañas"
36,101
<question>: What was the score for the game against Houston? <context>: CREATE TABLE table_23285761_10 (score VARCHAR, team VARCHAR)
SELECT score FROM table_23285761_10 WHERE team = "Houston"
36,102
<question>: Name the number of records for 30 game <context>: CREATE TABLE table_23285805_5 (record VARCHAR, game VARCHAR)
SELECT COUNT(record) FROM table_23285805_5 WHERE game = 30
36,103
<question>: Name the team for december 19 <context>: CREATE TABLE table_23285805_5 (team VARCHAR, date VARCHAR)
SELECT team FROM table_23285805_5 WHERE date = "December 19"
36,104
<question>: What location and how many people were in attendance where the record was 9-4 for the season? <context>: CREATE TABLE table_23285849_5 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_23285849_5 WHERE record = "9-4"
36,105
<question>: How scored the most points where the record is 3-0 for the season? <context>: CREATE TABLE table_23285849_5 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_23285849_5 WHERE record = "3-0"
36,106
<question>: When chauncey billups (7) has the highest amount of assists what is the score? <context>: CREATE TABLE table_23285849_10 (score VARCHAR, high_assists VARCHAR)
SELECT score FROM table_23285849_10 WHERE high_assists = "Chauncey Billups (7)"
36,107
<question>: When j.r. smith (26) has the highest amount of points what is the score? <context>: CREATE TABLE table_23285849_10 (score VARCHAR, high_points VARCHAR)
SELECT score FROM table_23285849_10 WHERE high_points = "J.R. Smith (26)"
36,108
<question>: When the clippers are the team how many games are there? <context>: CREATE TABLE table_23285849_10 (game VARCHAR, team VARCHAR)
SELECT COUNT(game) FROM table_23285849_10 WHERE team = "Clippers"
36,109
<question>: When aaron afflalo (9) has the highest amount of rebounds what is the score? <context>: CREATE TABLE table_23285849_10 (score VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_23285849_10 WHERE high_rebounds = "Aaron Afflalo (9)"
36,110
<question>: When chauncey billups (4) has the highest amount of assists who has the highest amount of points? <context>: CREATE TABLE table_23285849_10 (high_points VARCHAR, high_assists VARCHAR)
SELECT high_points FROM table_23285849_10 WHERE high_assists = "Chauncey Billups (4)"
36,111
<question>: When carmelo anthony (39) has the highest amount of points where is the location and what is the attendance? <context>: CREATE TABLE table_23285849_11 (location_attendance VARCHAR, high_points VARCHAR)
SELECT location_attendance FROM table_23285849_11 WHERE high_points = "Carmelo Anthony (39)"
36,112
<question>: When carmelo anthony (42) has the highest amount of points how many measurements of highest rebounds are there? <context>: CREATE TABLE table_23285849_11 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT COUNT(high_rebounds) FROM table_23285849_11 WHERE high_points = "Carmelo Anthony (42)"
36,113
<question>: Name the record for l 106–116 (ot) <context>: CREATE TABLE table_23285849_8 (record VARCHAR, score VARCHAR)
SELECT record FROM table_23285849_8 WHERE score = "L 106–116 (OT)"
36,114
<question>: Name the high points for the staples center 18,997 <context>: CREATE TABLE table_23285849_8 (high_points VARCHAR, location_attendance VARCHAR)
SELECT high_points FROM table_23285849_8 WHERE location_attendance = "Staples Center 18,997"
36,115
<question>: What was the date of the game when the record was 27-14? <context>: CREATE TABLE table_23285849_7 (date VARCHAR, record VARCHAR)
SELECT date FROM table_23285849_7 WHERE record = "27-14"
36,116
<question>: Who had the most points in the game where the score was w 97–92 (ot)? <context>: CREATE TABLE table_23285849_7 (high_points VARCHAR, score VARCHAR)
SELECT high_points FROM table_23285849_7 WHERE score = "W 97–92 (OT)"
36,117
<question>: What was the record when the timberwolves were played? <context>: CREATE TABLE table_23285849_7 (record VARCHAR, team VARCHAR)
SELECT record FROM table_23285849_7 WHERE team = "Timberwolves"
36,118
<question>: How many players has the highest points in the game against the Heat? <context>: CREATE TABLE table_23285849_6 (high_points VARCHAR, team VARCHAR)
SELECT COUNT(high_points) FROM table_23285849_6 WHERE team = "Heat"
36,119
<question>: Who tied for highest rebounds in game 29? <context>: CREATE TABLE table_23285849_6 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_23285849_6 WHERE game = 29
36,120
<question>: Where was game number 5 played? <context>: CREATE TABLE table_23286112_12 (location_attendance VARCHAR, game VARCHAR)
SELECT location_attendance FROM table_23286112_12 WHERE game = 5
36,121
<question>: Who had the highest rebounds in game 2? <context>: CREATE TABLE table_23286112_12 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_23286112_12 WHERE game = 2
36,122
<question>: What date was the series 0-2? <context>: CREATE TABLE table_23286112_12 (date VARCHAR, series VARCHAR)
SELECT date FROM table_23286112_12 WHERE series = "0-2"
36,123
<question>: Which series were played on April 18? <context>: CREATE TABLE table_23286112_12 (series VARCHAR, date VARCHAR)
SELECT series FROM table_23286112_12 WHERE date = "April 18"
36,124
<question>: What series had high rebounds with Marcus Camby (11)? <context>: CREATE TABLE table_23286158_11 (series VARCHAR, high_rebounds VARCHAR)
SELECT series FROM table_23286158_11 WHERE high_rebounds = "Marcus Camby (11)"
36,125
<question>: What was the series where the game was 5? <context>: CREATE TABLE table_23286158_11 (series VARCHAR, game VARCHAR)
SELECT series FROM table_23286158_11 WHERE game = 5
36,126
<question>: What is the score when high points were Andre Miller (31)? <context>: CREATE TABLE table_23286158_11 (score VARCHAR, high_points VARCHAR)
SELECT score FROM table_23286158_11 WHERE high_points = "Andre Miller (31)"
36,127
<question>: What is the score in game 3? <context>: CREATE TABLE table_23286158_11 (score VARCHAR, game VARCHAR)
SELECT score FROM table_23286158_11 WHERE game = 3
36,128
<question>: When marcus camby (15) has the highest amount of rebounds who has the highest amount of assists? <context>: CREATE TABLE table_23286158_10 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT high_assists FROM table_23286158_10 WHERE high_rebounds = "Marcus Camby (15)"
36,129
<question>: When 48-30 is the record who has the highest amount of points? <context>: CREATE TABLE table_23286158_10 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_23286158_10 WHERE record = "48-30"
36,130
<question>: When 78 is the game and brandon roy (6) has the highest amount of assists how many locations/attendances are there? <context>: CREATE TABLE table_23286158_10 (location_attendance VARCHAR, high_assists VARCHAR, game VARCHAR)
SELECT COUNT(location_attendance) FROM table_23286158_10 WHERE high_assists = "Brandon Roy (6)" AND game = 78
36,131
<question>: When marcus camby (15) has the highest amount of rebounds what is the date? <context>: CREATE TABLE table_23286158_10 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_23286158_10 WHERE high_rebounds = "Marcus Camby (15)"
36,132
<question>: When did the Portland Trail Blazers play against Cleveland? <context>: CREATE TABLE table_23286158_7 (date VARCHAR, team VARCHAR)
SELECT date FROM table_23286158_7 WHERE team = "Cleveland"
36,133
<question>: How many episodes were directed by Sarah Pia Anderson? <context>: CREATE TABLE table_23287683_1 (title VARCHAR, directed_by VARCHAR)
SELECT COUNT(title) FROM table_23287683_1 WHERE directed_by = "Sarah Pia Anderson"
36,134
<question>: List all season numbers with production codes of 5m21. <context>: CREATE TABLE table_23287683_1 (season__number VARCHAR, production_code VARCHAR)
SELECT season__number FROM table_23287683_1 WHERE production_code = "5M21"
36,135
<question>: How many episodes had a series number of 95? <context>: CREATE TABLE table_23287683_1 (title VARCHAR, series__number VARCHAR)
SELECT COUNT(title) FROM table_23287683_1 WHERE series__number = 95
36,136
<question>: Name the total number of season for production code 3m17 <context>: CREATE TABLE table_23286722_1 (season__number VARCHAR, production_code VARCHAR)
SELECT COUNT(season__number) FROM table_23286722_1 WHERE production_code = "3M17"
36,137
<question>: Name the directed by season # 2 <context>: CREATE TABLE table_23286722_1 (directed_by VARCHAR, season__number VARCHAR)
SELECT directed_by FROM table_23286722_1 WHERE season__number = 2
36,138
<question>: Name least series number for writers david e. kelley & jill goldsmith <context>: CREATE TABLE table_23286722_1 (series__number INTEGER, written_by VARCHAR)
SELECT MIN(series__number) FROM table_23286722_1 WHERE written_by = "David E. Kelley & Jill Goldsmith"
36,139
<question>: How many episodes are numbered 12x03? <context>: CREATE TABLE table_23292220_13 (first_broadcast VARCHAR, episode VARCHAR)
SELECT COUNT(first_broadcast) FROM table_23292220_13 WHERE episode = "12x03"
36,140
<question>: Who was on Jon's team when Sean's team had Matthew Crosby and Kimberly Wyatt? <context>: CREATE TABLE table_23292220_13 (jons_team VARCHAR, seans_team VARCHAR)
SELECT jons_team FROM table_23292220_13 WHERE seans_team = "Matthew Crosby and Kimberly Wyatt"
36,141
<question>: What was the episode that had Jack Dee and Stacey Solomon on Sean's team? <context>: CREATE TABLE table_23292220_13 (episode VARCHAR, seans_team VARCHAR)
SELECT episode FROM table_23292220_13 WHERE seans_team = "Jack Dee and Stacey Solomon"
36,142
<question>: What was the score in the episode that had Louie Spence and Joe Wilkinson on Sean's team? <context>: CREATE TABLE table_23292220_13 (scores VARCHAR, seans_team VARCHAR)
SELECT scores FROM table_23292220_13 WHERE seans_team = "Louie Spence and Joe Wilkinson"
36,143
<question>: What was the score on the episode that had Russell Kane and Louise Redknapp on Sean's team? <context>: CREATE TABLE table_23292220_13 (scores VARCHAR, seans_team VARCHAR)
SELECT scores FROM table_23292220_13 WHERE seans_team = "Russell Kane and Louise Redknapp"
36,144
<question>: In which episode is Sean's team made up of Krishnan Guru-Murthy and Vic Reeves? <context>: CREATE TABLE table_23292220_3 (episode VARCHAR, seans_team VARCHAR)
SELECT episode FROM table_23292220_3 WHERE seans_team = "Krishnan Guru-Murthy and Vic Reeves"
36,145
<question>: What is the first broadcast date of the episode in which Dave's team is made up of Dave Johns and Sally Lindsay? <context>: CREATE TABLE table_23292220_3 (first_broadcast VARCHAR, daves_team VARCHAR)
SELECT first_broadcast FROM table_23292220_3 WHERE daves_team = "Dave Johns and Sally Lindsay"
36,146
<question>: What was the first broadcast date of the episode in which Sean's team is made up of Peter Serafinowicz and Johnny Vegas? <context>: CREATE TABLE table_23292220_3 (first_broadcast VARCHAR, seans_team VARCHAR)
SELECT first_broadcast FROM table_23292220_3 WHERE seans_team = "Peter Serafinowicz and Johnny Vegas"
36,147
<question>: In how many episodes was Dave's team made up of David Walliams and Louis Walsh? <context>: CREATE TABLE table_23292220_3 (episode VARCHAR, daves_team VARCHAR)
SELECT COUNT(episode) FROM table_23292220_3 WHERE daves_team = "David Walliams and Louis Walsh"
36,148
<question>: Which episode has boy george and lee mack on dave's team? <context>: CREATE TABLE table_23292220_4 (episode VARCHAR, daves_team VARCHAR)
SELECT episode FROM table_23292220_4 WHERE daves_team = "Boy George and Lee Mack"
36,149
<question>: How many daves team entries are there on 27 october 2006? <context>: CREATE TABLE table_23292220_4 (daves_team VARCHAR, first_broadcast VARCHAR)
SELECT COUNT(daves_team) FROM table_23292220_4 WHERE first_broadcast = "27 October 2006"
36,150
<question>: Which episode has ulrika jonsson and michael mcintyre on sean's team? <context>: CREATE TABLE table_23292220_4 (episode VARCHAR, seans_team VARCHAR)
SELECT episode FROM table_23292220_4 WHERE seans_team = "Ulrika Jonsson and Michael McIntyre"
36,151
<question>: What was the score in the episode with john barrowman and vic reeves on sean's team? <context>: CREATE TABLE table_23292220_4 (scores VARCHAR, seans_team VARCHAR)
SELECT scores FROM table_23292220_4 WHERE seans_team = "John Barrowman and Vic Reeves"
36,152
<question>: What was the first broadcast date of episode 4x03? <context>: CREATE TABLE table_23292220_4 (first_broadcast VARCHAR, episode VARCHAR)
SELECT first_broadcast FROM table_23292220_4 WHERE episode = "4x03"
36,153
<question>: Name the first broadcast for trisha goddard and glenn wool <context>: CREATE TABLE table_23292220_5 (first_broadcast VARCHAR, jasons_team VARCHAR)
SELECT first_broadcast FROM table_23292220_5 WHERE jasons_team = "Trisha Goddard and Glenn Wool"
36,154
<question>: Name the number of scores for 5x06 <context>: CREATE TABLE table_23292220_5 (scores VARCHAR, episode VARCHAR)
SELECT COUNT(scores) FROM table_23292220_5 WHERE episode = "5x06"
36,155
<question>: Name the first broadcast for tina malone and joe wilkinson <context>: CREATE TABLE table_23292220_17 (first_broadcast VARCHAR, seans_team VARCHAR)
SELECT first_broadcast FROM table_23292220_17 WHERE seans_team = "Tina Malone and Joe Wilkinson"
36,156
<question>: Name the number of jons team for 15x10 <context>: CREATE TABLE table_23292220_17 (jons_team VARCHAR, episode VARCHAR)
SELECT COUNT(jons_team) FROM table_23292220_17 WHERE episode = "15x10"
36,157
<question>: Name the scores for chris ramsey and carol vorderman <context>: CREATE TABLE table_23292220_17 (scores VARCHAR, seans_team VARCHAR)
SELECT scores FROM table_23292220_17 WHERE seans_team = "Chris Ramsey and Carol Vorderman"
36,158
<question>: Name the total number of jons team for 15x07 <context>: CREATE TABLE table_23292220_17 (jons_team VARCHAR, episode VARCHAR)
SELECT COUNT(jons_team) FROM table_23292220_17 WHERE episode = "15x07"
36,159
<question>: Name all of Jason's teams that appeared on episode 6x02? <context>: CREATE TABLE table_23292220_6 (jasons_team VARCHAR, episode VARCHAR)
SELECT jasons_team FROM table_23292220_6 WHERE episode = "6x02"
36,160
<question>: In how many episodes were Vanessa Feltz and Lee Mack the team for Sean? <context>: CREATE TABLE table_23292220_6 (episode VARCHAR, seans_team VARCHAR)
SELECT COUNT(episode) FROM table_23292220_6 WHERE seans_team = "Vanessa Feltz and Lee Mack"
36,161
<question>: Name the episode(s) that featured Duncan James and Johnny Vegas as Jason's team. <context>: CREATE TABLE table_23292220_6 (episode VARCHAR, jasons_team VARCHAR)
SELECT episode FROM table_23292220_6 WHERE jasons_team = "Duncan James and Johnny Vegas"
36,162
<question>: What round does Duncan Tappy drive in? <context>: CREATE TABLE table_23293785_3 (sf_round INTEGER, driver VARCHAR)
SELECT MAX(sf_round) FROM table_23293785_3 WHERE driver = "Duncan Tappy"
36,163
<question>: How many racing points did England get? <context>: CREATE TABLE table_23293785_3 (race_total_pts_ INTEGER, country VARCHAR)
SELECT MAX(race_total_pts_) FROM table_23293785_3 WHERE country = "England"
36,164
<question>: How many are the Race 2 points when Race 1 was 12? <context>: CREATE TABLE table_23293785_3 (race_2_pts_ VARCHAR, race_1_pts_ VARCHAR)
SELECT race_2_pts_ FROM table_23293785_3 WHERE race_1_pts_ = 12
36,165
<question>: How many millions of people in the US saw the episode number 226? <context>: CREATE TABLE table_23294081_11 (us_viewers__millions_ VARCHAR, no VARCHAR)
SELECT us_viewers__millions_ FROM table_23294081_11 WHERE no = 226
36,166
<question>: What is the highest episode number? <context>: CREATE TABLE table_23294081_11 (no INTEGER)
SELECT MAX(no) FROM table_23294081_11
36,167
<question>: Who was performer 1 in the episode number 7 where Heather Anne Campbell was performer 2? <context>: CREATE TABLE table_23294081_11 (performer_1 VARCHAR, performer_2 VARCHAR, _number VARCHAR)
SELECT performer_1 FROM table_23294081_11 WHERE performer_2 = "Heather Anne Campbell" AND _number = 7
36,168
<question>: What's the number of the episode seen by 2.99 millions of people in the US, where performer 2 was Heather Anne Campbell? <context>: CREATE TABLE table_23294081_11 (_number INTEGER, performer_2 VARCHAR, us_viewers__millions_ VARCHAR)
SELECT MIN(_number) FROM table_23294081_11 WHERE performer_2 = "Heather Anne Campbell" AND us_viewers__millions_ = "2.99"
36,169
<question>: Name the episode for vic reeves and claudia winkleman <context>: CREATE TABLE table_23292220_7 (episode VARCHAR, seans_team VARCHAR)
SELECT episode FROM table_23292220_7 WHERE seans_team = "Vic Reeves and Claudia Winkleman"
36,170
<question>: Name the number of scores for episode 7x05 <context>: CREATE TABLE table_23292220_7 (scores VARCHAR, episode VARCHAR)
SELECT COUNT(scores) FROM table_23292220_7 WHERE episode = "7x05"
36,171
<question>: Name the seans team being 13 november 2008 <context>: CREATE TABLE table_23292220_7 (seans_team VARCHAR, first_broadcast VARCHAR)
SELECT seans_team FROM table_23292220_7 WHERE first_broadcast = "13 November 2008"
36,172
<question>: Name the total number of seans team being 7x04 <context>: CREATE TABLE table_23292220_7 (seans_team VARCHAR, episode VARCHAR)
SELECT COUNT(seans_team) FROM table_23292220_7 WHERE episode = "7x04"
36,173
<question>: Name the total number of scores for 7x10 <context>: CREATE TABLE table_23292220_7 (scores VARCHAR, episode VARCHAR)
SELECT COUNT(scores) FROM table_23292220_7 WHERE episode = "7x10"
36,174
<question>: How many dates have a total points for race of 180? <context>: CREATE TABLE table_23293785_2 (date VARCHAR, race_total_pts_ VARCHAR)
SELECT COUNT(date) FROM table_23293785_2 WHERE race_total_pts_ = 180
36,175
<question>: What is every points value for race 1 if the total race points is 180? <context>: CREATE TABLE table_23293785_2 (race_1_pts_ VARCHAR, race_total_pts_ VARCHAR)
SELECT race_1_pts_ FROM table_23293785_2 WHERE race_total_pts_ = 180
36,176
<question>: What is the lowest number of total race points for the country of Belgium? <context>: CREATE TABLE table_23293785_2 (race_total_pts_ INTEGER, country VARCHAR)
SELECT MIN(race_total_pts_) FROM table_23293785_2 WHERE country = "Belgium"
36,177
<question>: Who is every driver for the location of Estoril Circuit? <context>: CREATE TABLE table_23293785_2 (driver VARCHAR, location VARCHAR)
SELECT driver FROM table_23293785_2 WHERE location = "Estoril Circuit"
36,178
<question>: What is the highest value for SF round for the country of England? <context>: CREATE TABLE table_23293785_2 (sf_round INTEGER, country VARCHAR)
SELECT MAX(sf_round) FROM table_23293785_2 WHERE country = "England"
36,179
<question>: What is the surface for the year 2001? <context>: CREATE TABLE table_23297_3 (surface VARCHAR, year VARCHAR)
SELECT surface FROM table_23297_3 WHERE year = 2001
36,180
<question>: What was the score on October 29? <context>: CREATE TABLE table_23308178_4 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23308178_4 WHERE date = "October 29"
36,181
<question>: How many opponents were there with the record of 3-2-2? <context>: CREATE TABLE table_23308178_4 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_23308178_4 WHERE record = "3-2-2"
36,182
<question>: What was the record on October 17? <context>: CREATE TABLE table_23308178_4 (record VARCHAR, date VARCHAR)
SELECT record FROM table_23308178_4 WHERE date = "October 17"
36,183
<question>: What date did they play agains the New York Rangers? <context>: CREATE TABLE table_23308178_4 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_23308178_4 WHERE opponent = "New York Rangers"
36,184
<question>: How many points were there scored on October 27? <context>: CREATE TABLE table_23308178_4 (points INTEGER, date VARCHAR)
SELECT MAX(points) FROM table_23308178_4 WHERE date = "October 27"
36,185
<question>: How many different scores are there for the game with 10-3-4 record? <context>: CREATE TABLE table_23308178_5 (score VARCHAR, record VARCHAR)
SELECT COUNT(score) FROM table_23308178_5 WHERE record = "10-3-4"
36,186
<question>: When was the game with 13-5-6 record played? <context>: CREATE TABLE table_23308178_5 (date VARCHAR, record VARCHAR)
SELECT date FROM table_23308178_5 WHERE record = "13-5-6"
36,187
<question>: What's the minimal number of points scored in any game? <context>: CREATE TABLE table_23308178_5 (points INTEGER)
SELECT MIN(points) FROM table_23308178_5
36,188
<question>: How many different games against Florida Panthers were played in Verizon Center? <context>: CREATE TABLE table_23308178_5 (game VARCHAR, opponent VARCHAR, location VARCHAR)
SELECT COUNT(game) FROM table_23308178_5 WHERE opponent = "Florida Panthers" AND location = "Verizon Center"
36,189
<question>: What was the record in the November 7 game? <context>: CREATE TABLE table_23308178_5 (record VARCHAR, date VARCHAR)
SELECT record FROM table_23308178_5 WHERE date = "November 7"
36,190
<question>: How many times was there a record of 49-15-11? <context>: CREATE TABLE table_23308178_9 (attendance VARCHAR, record VARCHAR)
SELECT COUNT(attendance) FROM table_23308178_9 WHERE record = "49-15-11"
36,191
<question>: How many scores had a date of March 6? <context>: CREATE TABLE table_23308178_9 (score VARCHAR, date VARCHAR)
SELECT COUNT(score) FROM table_23308178_9 WHERE date = "March 6"
36,192
<question>: If the date is 7-21-2006, who was the opponent? <context>: CREATE TABLE table_23314951_4 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_23314951_4 WHERE date = "7-21-2006"
36,193
<question>: If the opponent is Kristian Pless, who was it against? <context>: CREATE TABLE table_23314951_4 (against VARCHAR, opponent VARCHAR)
SELECT against FROM table_23314951_4 WHERE opponent = "Kristian Pless"
36,194
<question>: Who is the winning team when max busnelli is the winning driver? <context>: CREATE TABLE table_23315271_2 (winning_team VARCHAR, winning_driver VARCHAR)
SELECT winning_team FROM table_23315271_2 WHERE winning_driver = "Max Busnelli"
36,195
<question>: In which location is aci vallelunga circuit? <context>: CREATE TABLE table_23315271_2 (location VARCHAR, circuit VARCHAR)
SELECT location FROM table_23315271_2 WHERE circuit = "ACI Vallelunga circuit"
36,196
<question>: Who held the pole position in misano world circuit? <context>: CREATE TABLE table_23315271_2 (pole_position VARCHAR, circuit VARCHAR)
SELECT pole_position FROM table_23315271_2 WHERE circuit = "Misano World circuit"
36,197
<question>: List the results for all games which involved the detroit red wings. <context>: CREATE TABLE table_23308178_7 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_23308178_7 WHERE opponent = "Detroit Red Wings"
36,198
<question>: Calculate the highest points where the win,loss, tie ratio is 28-12-6 <context>: CREATE TABLE table_23308178_7 (points INTEGER, record VARCHAR)
SELECT MAX(points) FROM table_23308178_7 WHERE record = "28-12-6"
36,199
<question>: what are the previous performance details for games involving the montreal canadiens? <context>: CREATE TABLE table_23308178_7 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_23308178_7 WHERE opponent = "Montreal Canadiens"