Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
32,100
<question>: Name the gs for points being 12.1 <context>: CREATE TABLE table_17309500_1 (gs VARCHAR, points VARCHAR)
SELECT gs FROM table_17309500_1 WHERE points = "12.1"
32,101
<question>: Name the assists for 157 games <context>: CREATE TABLE table_17309500_1 (assists VARCHAR, games VARCHAR)
SELECT assists FROM table_17309500_1 WHERE games = 157
32,102
<question>: Name the steals for season 2007/2008 <context>: CREATE TABLE table_17309500_1 (steals VARCHAR, season VARCHAR)
SELECT steals FROM table_17309500_1 WHERE season = "2007/2008"
32,103
<question>: Name the total number of assists for 77 blocks <context>: CREATE TABLE table_17309500_1 (assists VARCHAR, blocks VARCHAR)
SELECT COUNT(assists) FROM table_17309500_1 WHERE blocks = "77"
32,104
<question>: When mike bibby (8) had the highest amount of assists what is the record? <context>: CREATE TABLE table_17311759_9 (record VARCHAR, high_assists VARCHAR)
SELECT record FROM table_17311759_9 WHERE high_assists = "Mike Bibby (8)"
32,105
<question>: When mike bibby (9) has the highest amount of assists what is the location and attendance? <context>: CREATE TABLE table_17311759_9 (location_attendance VARCHAR, high_assists VARCHAR)
SELECT location_attendance FROM table_17311759_9 WHERE high_assists = "Mike Bibby (9)"
32,106
<question>: Who was the team played on January 23? <context>: CREATE TABLE table_17311759_6 (team VARCHAR, date VARCHAR)
SELECT team FROM table_17311759_6 WHERE date = "January 23"
32,107
<question>: Where was the game held and what was the attendance when they played Orlando? <context>: CREATE TABLE table_17311759_6 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_17311759_6 WHERE team = "Orlando"
32,108
<question>: In what game did Miami play Charlotte? <context>: CREATE TABLE table_17311783_8 (game INTEGER, team VARCHAR)
SELECT MAX(game) FROM table_17311783_8 WHERE team = "Charlotte"
32,109
<question>: Who had the high points on February 6? <context>: CREATE TABLE table_17311797_8 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_17311797_8 WHERE date = "February 6"
32,110
<question>: What is the highest number of laps led with 16 points? <context>: CREATE TABLE table_17319931_1 (laps INTEGER, points VARCHAR)
SELECT MAX(laps) AS Led FROM table_17319931_1 WHERE points = "16"
32,111
<question>: How many drivers were there for Samax Motorsport? <context>: CREATE TABLE table_17319931_1 (driver VARCHAR, team VARCHAR)
SELECT COUNT(driver) FROM table_17319931_1 WHERE team = "SAMAX Motorsport"
32,112
<question>: What is the team whose driver Jeff Simmons? <context>: CREATE TABLE table_17319931_1 (team VARCHAR, driver VARCHAR)
SELECT team FROM table_17319931_1 WHERE driver = "Jeff Simmons"
32,113
<question>: How many drivers where there when the time/retired +3 laps and points were 24? <context>: CREATE TABLE table_17319931_1 (driver VARCHAR, time_retired VARCHAR, points VARCHAR)
SELECT COUNT(driver) FROM table_17319931_1 WHERE time_retired = "+3 laps" AND points = "24"
32,114
<question>: What is the highest number of laps for Darren Manning? <context>: CREATE TABLE table_17319931_1 (laps INTEGER, driver VARCHAR)
SELECT MAX(laps) FROM table_17319931_1 WHERE driver = "Darren Manning"
32,115
<question>: How many car numbers were recorded when the time/retired is +4.0019? <context>: CREATE TABLE table_17319931_1 (car_no VARCHAR, time_retired VARCHAR)
SELECT COUNT(car_no) FROM table_17319931_1 WHERE time_retired = "+4.0019"
32,116
<question>: What game number was played on January 28? <context>: CREATE TABLE table_17311812_7 (game VARCHAR, date VARCHAR)
SELECT game FROM table_17311812_7 WHERE date = "January 28"
32,117
<question>: What is the high amount of points on February 11? <context>: CREATE TABLE table_17311812_8 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_17311812_8 WHERE date = "February 11"
32,118
<question>: Who has the most assists on Denver? <context>: CREATE TABLE table_17311812_8 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_17311812_8 WHERE team = "Denver"
32,119
<question>: Name the location attendance for april 13 <context>: CREATE TABLE table_17322817_10 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_17322817_10 WHERE date = "April 13"
32,120
<question>: Name the location attendance for april 5 <context>: CREATE TABLE table_17322817_10 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_17322817_10 WHERE date = "April 5"
32,121
<question>: Who had the high points on December 17? <context>: CREATE TABLE table_17323042_6 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_17323042_6 WHERE date = "December 17"
32,122
<question>: How many scores are listed for the game against Houston <context>: CREATE TABLE table_17323042_7 (score VARCHAR, team VARCHAR)
SELECT COUNT(score) FROM table_17323042_7 WHERE team = "Houston"
32,123
<question>: What was the location and attendance of the game when High Assists were Andre Miller (7)? <context>: CREATE TABLE table_17323042_11 (location_attendance VARCHAR, high_assists VARCHAR)
SELECT location_attendance FROM table_17323042_11 WHERE high_assists = "Andre Miller (7)"
32,124
<question>: Who was the High Assist in game 1? <context>: CREATE TABLE table_17323042_11 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_17323042_11 WHERE game = 1
32,125
<question>: Who was the High Assist when the High Rebounds was andre iguodala (8)? <context>: CREATE TABLE table_17323042_11 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT high_assists FROM table_17323042_11 WHERE high_rebounds = "Andre Iguodala (8)"
32,126
<question>: What was the W-L record when HIgh Points was andre miller (30)? <context>: CREATE TABLE table_17323042_11 (record VARCHAR, high_points VARCHAR)
SELECT record FROM table_17323042_11 WHERE high_points = "Andre Miller (30)"
32,127
<question>: What was the score and game outcome when High Points was andre miller (17)? <context>: CREATE TABLE table_17323042_11 (score VARCHAR, high_points VARCHAR)
SELECT score FROM table_17323042_11 WHERE high_points = "Andre Miller (17)"
32,128
<question>: How many games was High Points andre iguodala (29)? <context>: CREATE TABLE table_17323042_11 (game VARCHAR, high_points VARCHAR)
SELECT COUNT(game) FROM table_17323042_11 WHERE high_points = "Andre Iguodala (29)"
32,129
<question>: How many games were played on March 15? <context>: CREATE TABLE table_17323042_9 (game VARCHAR, date VARCHAR)
SELECT COUNT(game) FROM table_17323042_9 WHERE date = "March 15"
32,130
<question>: What was the team's record when they faced orlando? <context>: CREATE TABLE table_17323042_5 (record VARCHAR, team VARCHAR)
SELECT record FROM table_17323042_5 WHERE team = "Orlando"
32,131
<question>: Whic teams scored l 97–107 (ot) <context>: CREATE TABLE table_17323092_5 (team VARCHAR, score VARCHAR)
SELECT team FROM table_17323092_5 WHERE score = "L 97–107 (OT)"
32,132
<question>: Who had the high assists when the team was @ Minnesota? <context>: CREATE TABLE table_17323092_7 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_17323092_7 WHERE team = "@ Minnesota"
32,133
<question>: On what date did the Team Minnesota play? <context>: CREATE TABLE table_17323092_7 (date VARCHAR, team VARCHAR)
SELECT date FROM table_17323092_7 WHERE team = "Minnesota"
32,134
<question>: Who had the high points on the date February 10? <context>: CREATE TABLE table_17323092_7 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_17323092_7 WHERE date = "February 10"
32,135
<question>: How many players had high points in the location/attendance FedexForum 11,498 respectively? <context>: CREATE TABLE table_17323092_7 (high_points VARCHAR, location_attendance VARCHAR)
SELECT COUNT(high_points) FROM table_17323092_7 WHERE location_attendance = "FedExForum 11,498"
32,136
<question>: When the high assists were Shawn Marion (6) who had high rebounds? <context>: CREATE TABLE table_17323092_7 (high_rebounds VARCHAR, high_assists VARCHAR)
SELECT high_rebounds FROM table_17323092_7 WHERE high_assists = "Shawn Marion (6)"
32,137
<question>: What dates did they play Miami? <context>: CREATE TABLE table_17323092_8 (date VARCHAR, team VARCHAR)
SELECT date FROM table_17323092_8 WHERE team = "Miami"
32,138
<question>: What dates did Chris Bosh (18) score the high points? <context>: CREATE TABLE table_17323092_8 (date VARCHAR, high_points VARCHAR)
SELECT date FROM table_17323092_8 WHERE high_points = "Chris Bosh (18)"
32,139
<question>: Where was the location and what was the attendance in the game that Anthony Parker (7) earned high assists? <context>: CREATE TABLE table_17323092_8 (location_attendance VARCHAR, high_assists VARCHAR)
SELECT location_attendance FROM table_17323092_8 WHERE high_assists = "Anthony Parker (7)"
32,140
<question>: Who earned high points in game 69? <context>: CREATE TABLE table_17323092_8 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_17323092_8 WHERE game = 69
32,141
<question>: What is the total number of high points on January 21? <context>: CREATE TABLE table_17323092_6 (high_points VARCHAR, date VARCHAR)
SELECT COUNT(high_points) FROM table_17323092_6 WHERE date = "January 21"
32,142
<question>: What is the location and attendance for the Orlando team? <context>: CREATE TABLE table_17323092_6 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_17323092_6 WHERE team = "Orlando"
32,143
<question>: what was the final score of the game versus Milwaukee? <context>: CREATE TABLE table_17325580_5 (score VARCHAR, team VARCHAR)
SELECT score FROM table_17325580_5 WHERE team = "Milwaukee"
32,144
<question>: What is the record against Boston? <context>: CREATE TABLE table_17323529_8 (record VARCHAR, team VARCHAR)
SELECT record FROM table_17323529_8 WHERE team = "Boston"
32,145
<question>: What is every high point when the team is Washington? <context>: CREATE TABLE table_17325580_6 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_17325580_6 WHERE team = "Washington"
32,146
<question>: How many games occur on the date December 12? <context>: CREATE TABLE table_17325580_6 (game VARCHAR, date VARCHAR)
SELECT COUNT(game) FROM table_17325580_6 WHERE date = "December 12"
32,147
<question>: How many high assist are on the date December 13? <context>: CREATE TABLE table_17325580_6 (high_assists VARCHAR, date VARCHAR)
SELECT COUNT(high_assists) FROM table_17325580_6 WHERE date = "December 13"
32,148
<question>: What is every location attendance on the date December 12? <context>: CREATE TABLE table_17325580_6 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_17325580_6 WHERE date = "December 12"
32,149
<question>: What was the high rebounds on November 26? <context>: CREATE TABLE table_17325937_5 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_17325937_5 WHERE date = "November 26"
32,150
<question>: What was the high assists on November 14? <context>: CREATE TABLE table_17325937_5 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_17325937_5 WHERE date = "November 14"
32,151
<question>: Who had the most assists in the game against Miami? <context>: CREATE TABLE table_17325937_8 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_17325937_8 WHERE team = "Miami"
32,152
<question>: How many assists were made in the game against San Antonio? <context>: CREATE TABLE table_17325937_8 (high_assists VARCHAR, team VARCHAR)
SELECT COUNT(high_assists) FROM table_17325937_8 WHERE team = "San Antonio"
32,153
<question>: Who did the most high rebounds in the game played on November 1? <context>: CREATE TABLE table_17326036_5 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_17326036_5 WHERE date = "November 1"
32,154
<question>: What team was the game on November 21 played against? <context>: CREATE TABLE table_17326036_5 (team VARCHAR, date VARCHAR)
SELECT team FROM table_17326036_5 WHERE date = "November 21"
32,155
<question>: What was the score in the game against Boston? <context>: CREATE TABLE table_17326036_5 (score VARCHAR, team VARCHAR)
SELECT score FROM table_17326036_5 WHERE team = "Boston"
32,156
<question>: Name the date of appointment for petrik sander <context>: CREATE TABLE table_17327264_3 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT date_of_appointment FROM table_17327264_3 WHERE replaced_by = "Petrik Sander"
32,157
<question>: Name the date of appointment for sacked and 14th position replaced by marco kostmann <context>: CREATE TABLE table_17327264_3 (date_of_appointment VARCHAR, replaced_by VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)
SELECT date_of_appointment FROM table_17327264_3 WHERE manner_of_departure = "Sacked" AND position_in_table = "14th" AND replaced_by = "Marco Kostmann"
32,158
<question>: How many location attendance was recorded for December 5? <context>: CREATE TABLE table_17326036_6 (location_attendance VARCHAR, date VARCHAR)
SELECT COUNT(location_attendance) FROM table_17326036_6 WHERE date = "December 5"
32,159
<question>: What was the attendance and location on December 15? <context>: CREATE TABLE table_17326036_6 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_17326036_6 WHERE date = "December 15"
32,160
<question>: How many games were recorded when the team was @ Memphis? <context>: CREATE TABLE table_17326036_6 (game VARCHAR, team VARCHAR)
SELECT COUNT(game) FROM table_17326036_6 WHERE team = "@ Memphis"
32,161
<question>: What was the score of the game when the high rebounds Jeff Foster (10)? <context>: CREATE TABLE table_17326036_6 (score VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_17326036_6 WHERE high_rebounds = "Jeff Foster (10)"
32,162
<question>: What team appointed a manager on 12 June? <context>: CREATE TABLE table_17327458_1 (team VARCHAR, date_of_appointment VARCHAR)
SELECT team FROM table_17327458_1 WHERE date_of_appointment = "12 June"
32,163
<question>: Who was replaced on 11 July? <context>: CREATE TABLE table_17327458_1 (replaced_by VARCHAR, date_of_appointment VARCHAR)
SELECT replaced_by FROM table_17327458_1 WHERE date_of_appointment = "11 July"
32,164
<question>: Who left a position on 29 May? <context>: CREATE TABLE table_17327458_1 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)
SELECT outgoing_manager FROM table_17327458_1 WHERE date_of_vacancy = "29 May"
32,165
<question>: Who left a position on 24 January? <context>: CREATE TABLE table_17327458_1 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)
SELECT outgoing_manager FROM table_17327458_1 WHERE date_of_vacancy = "24 January"
32,166
<question>: How many vacancies happened on 25 May? <context>: CREATE TABLE table_17327458_1 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)
SELECT COUNT(manner_of_departure) FROM table_17327458_1 WHERE date_of_vacancy = "25 May"
32,167
<question>: If the points is 15, what is the fin. pos? <context>: CREATE TABLE table_17330069_1 (fin_pos VARCHAR, points VARCHAR)
SELECT COUNT(fin_pos) FROM table_17330069_1 WHERE points = "15"
32,168
<question>: What is the car number for driver Hélio Castroneves <context>: CREATE TABLE table_17330069_1 (car_no INTEGER, driver VARCHAR)
SELECT MIN(car_no) FROM table_17330069_1 WHERE driver = "Hélio Castroneves"
32,169
<question>: If grid is 2, what is the minimum fin. pos number? <context>: CREATE TABLE table_17330069_1 (fin_pos INTEGER, grid VARCHAR)
SELECT MIN(fin_pos) FROM table_17330069_1 WHERE grid = 2
32,170
<question>: If there are 28 points, what is the time/retired? <context>: CREATE TABLE table_17330069_1 (time_retired VARCHAR, points VARCHAR)
SELECT time_retired FROM table_17330069_1 WHERE points = "28"
32,171
<question>: How many winning scores were there in the rr donnelley lpga founders cup? <context>: CREATE TABLE table_17335602_1 (winning_score VARCHAR, tournament VARCHAR)
SELECT COUNT(winning_score) FROM table_17335602_1 WHERE tournament = "RR Donnelley LPGA Founders Cup"
32,172
<question>: When was the mcdonald's lpga championship? <context>: CREATE TABLE table_17335602_1 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_17335602_1 WHERE tournament = "McDonald's LPGA Championship"
32,173
<question>: What was the winner's share in the wegmans lpga championship? <context>: CREATE TABLE table_17335602_1 (winners_share___ INTEGER, tournament VARCHAR)
SELECT MAX(winners_share___) AS $__ FROM table_17335602_1 WHERE tournament = "Wegmans LPGA Championship"
32,174
<question>: Name the kerry # for others# is 44 <context>: CREATE TABLE table_1733457_1 (kerry_number VARCHAR, others_number VARCHAR)
SELECT kerry_number FROM table_1733457_1 WHERE others_number = 44
32,175
<question>: Name the minimum kerry # for bush % for 50.9% <context>: CREATE TABLE table_1733457_1 (kerry_number INTEGER, bush_percentage VARCHAR)
SELECT MIN(kerry_number) FROM table_1733457_1 WHERE bush_percentage = "50.9%"
32,176
<question>: Name the others % for johnson <context>: CREATE TABLE table_1733457_1 (others_percentage VARCHAR, county VARCHAR)
SELECT others_percentage FROM table_1733457_1 WHERE county = "Johnson"
32,177
<question>: Name the maximum kerry # for where others is 47 <context>: CREATE TABLE table_1733457_1 (kerry_number INTEGER, others_number VARCHAR)
SELECT MAX(kerry_number) FROM table_1733457_1 WHERE others_number = 47
32,178
<question>: Name the bush% for where others # is 90 <context>: CREATE TABLE table_1733457_1 (bush_percentage VARCHAR, others_number VARCHAR)
SELECT bush_percentage FROM table_1733457_1 WHERE others_number = 90
32,179
<question>: Name the others % for cleveland <context>: CREATE TABLE table_1733457_1 (others_percentage VARCHAR, county VARCHAR)
SELECT others_percentage FROM table_1733457_1 WHERE county = "Cleveland"
32,180
<question>: What is the percentage of others when the number of others is 2286? <context>: CREATE TABLE table_1733513_1 (others_percentage VARCHAR, others_number VARCHAR)
SELECT others_percentage FROM table_1733513_1 WHERE others_number = 2286
32,181
<question>: What was the percentage of others when the number for Bush was 3196? <context>: CREATE TABLE table_1733513_1 (others_percentage VARCHAR, bush_number VARCHAR)
SELECT others_percentage FROM table_1733513_1 WHERE bush_number = 3196
32,182
<question>: What is the percentage of others when the number for Bush is 1329? <context>: CREATE TABLE table_1733513_1 (others_percentage VARCHAR, bush_number VARCHAR)
SELECT others_percentage FROM table_1733513_1 WHERE bush_number = 1329
32,183
<question>: Which game was played by team milwaukee <context>: CREATE TABLE table_17340355_6 (game VARCHAR, team VARCHAR)
SELECT game FROM table_17340355_6 WHERE team = "Milwaukee"
32,184
<question>: Who made high points on games of score w 106–104 (ot) <context>: CREATE TABLE table_17340355_6 (high_assists VARCHAR, score VARCHAR)
SELECT high_assists FROM table_17340355_6 WHERE score = "W 106–104 (OT)"
32,185
<question>: What are the records of games where high rebounds is amar'e stoudemire (11) <context>: CREATE TABLE table_17340355_6 (record VARCHAR, high_rebounds VARCHAR)
SELECT COUNT(record) FROM table_17340355_6 WHERE high_rebounds = "Amar'e Stoudemire (11)"
32,186
<question>: What is the location of the the game on december 10 <context>: CREATE TABLE table_17340355_6 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_17340355_6 WHERE date = "December 10"
32,187
<question>: List the all the scores where the high assis is b. shaw (5) <context>: CREATE TABLE table_17344582_11 (score VARCHAR, high_assists VARCHAR)
SELECT score FROM table_17344582_11 WHERE high_assists = "B. Shaw (5)"
32,188
<question>: List of high assists with high rebounds for k. mchale (10) <context>: CREATE TABLE table_17344582_11 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT high_assists FROM table_17344582_11 WHERE high_rebounds = "K. McHale (10)"
32,189
<question>: List all location attendance for series 1-1. <context>: CREATE TABLE table_17344582_11 (location_attendance VARCHAR, series VARCHAR)
SELECT location_attendance FROM table_17344582_11 WHERE series = "1-1"
32,190
<question>: What day(s) did the team play indiana? <context>: CREATE TABLE table_17340355_7 (date VARCHAR, team VARCHAR)
SELECT date FROM table_17340355_7 WHERE team = "Indiana"
32,191
<question>: Who had the high assist total on january 2? <context>: CREATE TABLE table_17340355_7 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_17340355_7 WHERE date = "January 2"
32,192
<question>: What was the title used in nomination in the original Bābǎi Zhuàngshì (八百壯士)? <context>: CREATE TABLE table_17350255_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
SELECT film_title_used_in_nomination FROM table_17350255_1 WHERE original_title = "Bābǎi zhuàngshì (八百壯士)"
32,193
<question>: What was the year when Chūnqiū Cháshì (春秋茶室) was submitted? <context>: CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT year__ceremony_ FROM table_17350255_1 WHERE original_title = "Chūnqiū cháshì (春秋茶室)"
32,194
<question>: Old Mo's Second Spring was the film title used in nomination in what year? <context>: CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT year__ceremony_ FROM table_17350255_1 WHERE film_title_used_in_nomination = "Old Mo's Second Spring"
32,195
<question>: What was the year when My Mother's Teahouse was not nominated? <context>: CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT year__ceremony_ FROM table_17350255_1 WHERE result = "Not Nominated" AND film_title_used_in_nomination = "My Mother's Teahouse"
32,196
<question>: What titles were released in 2006? <context>: CREATE TABLE table_173475_1 (title VARCHAR, release VARCHAR)
SELECT title FROM table_173475_1 WHERE release = 2006
32,197
<question>: What year(s) was axis & allies: d-day released? <context>: CREATE TABLE table_173475_1 (release VARCHAR, title VARCHAR)
SELECT release FROM table_173475_1 WHERE title = "Axis & Allies: D-Day"
32,198
<question>: What game was on May 25? <context>: CREATE TABLE table_17355408_12 (game VARCHAR, date VARCHAR)
SELECT game FROM table_17355408_12 WHERE date = "May 25"
32,199
<question>: What game was the record 2-3? <context>: CREATE TABLE table_17355408_12 (game VARCHAR, record VARCHAR)
SELECT COUNT(game) FROM table_17355408_12 WHERE record = "2-3"