Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
28,200
<question>: What is the record where high assists is pierce (6)? <context>: CREATE TABLE table_11959669_6 (record VARCHAR, high_assists VARCHAR)
SELECT record FROM table_11959669_6 WHERE high_assists = "Pierce (6)"
28,201
<question>: What was the result of the game when the raptors played @ cleveland? <context>: CREATE TABLE table_11960407_2 (score VARCHAR, team VARCHAR)
SELECT score FROM table_11960407_2 WHERE team = "@ Cleveland"
28,202
<question>: Who did the high points of game 5? <context>: CREATE TABLE table_11960196_3 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_11960196_3 WHERE game = 5
28,203
<question>: How many high points were at the wachovia center 18,347? <context>: CREATE TABLE table_11960196_3 (high_points VARCHAR, location_attendance VARCHAR)
SELECT COUNT(high_points) FROM table_11960196_3 WHERE location_attendance = "Wachovia Center 18,347"
28,204
<question>: What is the team of april 25? <context>: CREATE TABLE table_11960196_3 (team VARCHAR, date VARCHAR)
SELECT team FROM table_11960196_3 WHERE date = "April 25"
28,205
<question>: Who had the high rebounds when Chris Bosh (16) had the high points? <context>: CREATE TABLE table_11960407_4 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT high_rebounds FROM table_11960407_4 WHERE high_points = "Chris Bosh (16)"
28,206
<question>: What was the score when the location attendance was Air Canada Centre 18,067? <context>: CREATE TABLE table_11960407_4 (score VARCHAR, location_attendance VARCHAR)
SELECT score FROM table_11960407_4 WHERE location_attendance = "Air Canada Centre 18,067"
28,207
<question>: When did Chris Bosh (14) have the high rebounds? <context>: CREATE TABLE table_11960407_4 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_11960407_4 WHERE high_rebounds = "Chris Bosh (14)"
28,208
<question>: Who had the high points on January 23? <context>: CREATE TABLE table_11960407_4 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_11960407_4 WHERE date = "January 23"
28,209
<question>: How many times was the game 39? <context>: CREATE TABLE table_11960407_4 (record VARCHAR, game VARCHAR)
SELECT COUNT(record) FROM table_11960407_4 WHERE game = 39
28,210
<question>: What is San Antonio game number? <context>: CREATE TABLE table_11960610_10 (game INTEGER, team VARCHAR)
SELECT MAX(game) FROM table_11960610_10 WHERE team = "San Antonio"
28,211
<question>: Who had high points when high rebound is gray (8)? <context>: CREATE TABLE table_11960610_10 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT high_points FROM table_11960610_10 WHERE high_rebounds = "Gray (8)"
28,212
<question>: What is the date deng (20) had high points? <context>: CREATE TABLE table_11960610_10 (date VARCHAR, high_points VARCHAR)
SELECT date FROM table_11960610_10 WHERE high_points = "Deng (20)"
28,213
<question>: What was the score of united center 22,097? <context>: CREATE TABLE table_11960610_10 (score VARCHAR, location_attendance VARCHAR)
SELECT score FROM table_11960610_10 WHERE location_attendance = "United Center 22,097"
28,214
<question>: When gordon (27) had high points, what was the number of high assists? <context>: CREATE TABLE table_11960610_10 (high_assists VARCHAR, high_points VARCHAR)
SELECT COUNT(high_assists) FROM table_11960610_10 WHERE high_points = "Gordon (27)"
28,215
<question>: What was the location attendance on the date of November 15? <context>: CREATE TABLE table_11960610_6 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_11960610_6 WHERE date = "November 15"
28,216
<question>: Where was the game played when the high assists were scored by billups , stuckey (4)? <context>: CREATE TABLE table_11960944_11 (location_attendance VARCHAR, high_assists VARCHAR)
SELECT location_attendance FROM table_11960944_11 WHERE high_assists = "Billups , Stuckey (4)"
28,217
<question>: What date was the game for the score L 88–79? <context>: CREATE TABLE table_11960944_11 (date VARCHAR, score VARCHAR)
SELECT date FROM table_11960944_11 WHERE score = "L 88–79"
28,218
<question>: How many high points were there in the game 67? <context>: CREATE TABLE table_11960944_7 (high_points VARCHAR, game VARCHAR)
SELECT COUNT(high_points) FROM table_11960944_7 WHERE game = 67
28,219
<question>: Which team was played when the high points was from Wallace (20)? <context>: CREATE TABLE table_11960944_4 (team VARCHAR, high_points VARCHAR)
SELECT team FROM table_11960944_4 WHERE high_points = "Wallace (20)"
28,220
<question>: Which date was the team playing @ Memphis? <context>: CREATE TABLE table_11960944_4 (date VARCHAR, team VARCHAR)
SELECT date FROM table_11960944_4 WHERE team = "@ Memphis"
28,221
<question>: how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)? <context>: CREATE TABLE table_11960944_4 (high_points VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR)
SELECT COUNT(high_points) FROM table_11960944_4 WHERE high_rebounds = "McDyess (9)" AND high_assists = "Billups (10)"
28,222
<question>: Who had the high assists on the date December 12? <context>: CREATE TABLE table_11960944_4 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_11960944_4 WHERE date = "December 12"
28,223
<question>: What date was game 57 held on? <context>: CREATE TABLE table_11960944_6 (date VARCHAR, game VARCHAR)
SELECT date FROM table_11960944_6 WHERE game = 57
28,224
<question>: How many players had the most points in the game @ Milwaukee? <context>: CREATE TABLE table_11960944_6 (high_points VARCHAR, team VARCHAR)
SELECT COUNT(high_points) FROM table_11960944_6 WHERE team = "@ Milwaukee"
28,225
<question>: Who did the most high rebounds in the game 24? <context>: CREATE TABLE table_11961582_4 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_11961582_4 WHERE game = 24
28,226
<question>: What was the score of the game played on December 8? <context>: CREATE TABLE table_11961582_4 (score VARCHAR, date VARCHAR)
SELECT score FROM table_11961582_4 WHERE date = "December 8"
28,227
<question>: What was the total number of games where A. Johnson (6) gave the most high assists? <context>: CREATE TABLE table_11961582_4 (game VARCHAR, high_assists VARCHAR)
SELECT COUNT(game) FROM table_11961582_4 WHERE high_assists = "A. Johnson (6)"
28,228
<question>: What's the minimal game number in the season? <context>: CREATE TABLE table_11961582_4 (game INTEGER)
SELECT MIN(game) FROM table_11961582_4
28,229
<question>: What is the location when the high rebounds was from A. Horford (13)? <context>: CREATE TABLE table_11961582_10 (location_attendance VARCHAR, high_rebounds VARCHAR)
SELECT location_attendance FROM table_11961582_10 WHERE high_rebounds = "A. Horford (13)"
28,230
<question>: How had the high points when the high assists were from J. Johnson (7)? <context>: CREATE TABLE table_11961582_10 (high_points VARCHAR, high_assists VARCHAR)
SELECT high_points FROM table_11961582_10 WHERE high_assists = "J. Johnson (7)"
28,231
<question>: Who had the high rebounds when the high assists were from J. Johnson (7)? <context>: CREATE TABLE table_11961582_10 (high_rebounds VARCHAR, high_assists VARCHAR)
SELECT high_rebounds FROM table_11961582_10 WHERE high_assists = "J. Johnson (7)"
28,232
<question>: Which team was played on April 20? <context>: CREATE TABLE table_11961582_10 (team VARCHAR, date VARCHAR)
SELECT team FROM table_11961582_10 WHERE date = "April 20"
28,233
<question>: Who had the high rebounds for the game on april 23? <context>: CREATE TABLE table_11961582_10 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_11961582_10 WHERE date = "April 23"
28,234
<question>: What was the score in the game on May 11? <context>: CREATE TABLE table_11963601_11 (score VARCHAR, date VARCHAR)
SELECT score FROM table_11963601_11 WHERE date = "May 11"
28,235
<question>: Who was the high scorer and how much did they score in the game on May 3? <context>: CREATE TABLE table_11963601_11 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_11963601_11 WHERE date = "May 3"
28,236
<question>: What was the series count at for game 5? <context>: CREATE TABLE table_11963601_11 (series VARCHAR, game VARCHAR)
SELECT series FROM table_11963601_11 WHERE game = 5
28,237
<question>: Where was the game on May 15 and how many were in attendance? <context>: CREATE TABLE table_11963601_11 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_11963601_11 WHERE date = "May 15"
28,238
<question>: What was the attendance on March 17? <context>: CREATE TABLE table_11961582_7 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_11961582_7 WHERE date = "March 17"
28,239
<question>: What was the high assist total on May 11? <context>: CREATE TABLE table_11963536_11 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_11963536_11 WHERE date = "May 11"
28,240
<question>: What is the lowest #? <context>: CREATE TABLE table_11964047_10 (_number INTEGER)
SELECT MIN(_number) FROM table_11964047_10
28,241
<question>: What is the score of the game with the streak l5 <context>: CREATE TABLE table_11964047_10 (score VARCHAR, streak VARCHAR)
SELECT score FROM table_11964047_10 WHERE streak = "L5"
28,242
<question>: What is the attendance for the home game at Los Angeles Lakers? <context>: CREATE TABLE table_11964047_10 (attendance VARCHAR, home VARCHAR)
SELECT attendance FROM table_11964047_10 WHERE home = "Los Angeles Lakers"
28,243
<question>: What is the record for the game at home Los Angeles Lakers? <context>: CREATE TABLE table_11964047_10 (record VARCHAR, home VARCHAR)
SELECT record FROM table_11964047_10 WHERE home = "Los Angeles Lakers"
28,244
<question>: What was the result and score of Game #29? <context>: CREATE TABLE table_11964047_6 (score VARCHAR, _number VARCHAR)
SELECT score FROM table_11964047_6 WHERE _number = 29
28,245
<question>: Who was the leading scorer in Game #26? <context>: CREATE TABLE table_11964047_6 (leading_scorer VARCHAR, _number VARCHAR)
SELECT leading_scorer FROM table_11964047_6 WHERE _number = 26
28,246
<question>: Who had the high rebounds when the score was l 84–102 (ot)? <context>: CREATE TABLE table_11964154_11 (high_rebounds VARCHAR, score VARCHAR)
SELECT high_rebounds FROM table_11964154_11 WHERE score = "L 84–102 (OT)"
28,247
<question>: Who had the high assists when the high rebounds were from Nick Collison (15)? <context>: CREATE TABLE table_11964154_11 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT high_assists FROM table_11964154_11 WHERE high_rebounds = "Nick Collison (15)"
28,248
<question>: Who had the high assists @ Dallas? <context>: CREATE TABLE table_11964154_11 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_11964154_11 WHERE team = "@ Dallas"
28,249
<question>: Who had the high assists when the location attendance was Toyota Center 18,370? <context>: CREATE TABLE table_11964154_11 (high_assists VARCHAR, location_attendance VARCHAR)
SELECT high_assists FROM table_11964154_11 WHERE location_attendance = "Toyota Center 18,370"
28,250
<question>: What was the record when the high rebounds was from Nick Collison (11)? <context>: CREATE TABLE table_11964154_11 (record VARCHAR, high_rebounds VARCHAR)
SELECT record FROM table_11964154_11 WHERE high_rebounds = "Nick Collison (11)"
28,251
<question>: How many times was the final score l 96–123 (ot)? <context>: CREATE TABLE table_11964154_7 (record VARCHAR, score VARCHAR)
SELECT COUNT(record) FROM table_11964154_7 WHERE score = "L 96–123 (OT)"
28,252
<question>: How many times was the high assists earl watson (5) and the date of the game was december 2? <context>: CREATE TABLE table_11964154_7 (score VARCHAR, high_assists VARCHAR, date VARCHAR)
SELECT COUNT(score) FROM table_11964154_7 WHERE high_assists = "Earl Watson (5)" AND date = "December 2"
28,253
<question>: Whom did they play on game number 25? <context>: CREATE TABLE table_11964154_7 (team VARCHAR, game VARCHAR)
SELECT team FROM table_11964154_7 WHERE game = 25
28,254
<question>: What is the number of the leading scorer for keyarena 16,640? <context>: CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, attendance VARCHAR)
SELECT COUNT(leading_scorer) FROM table_11964047_8 WHERE attendance = "KeyArena 16,640"
28,255
<question>: What is the number of leading scorer of february 21? <context>: CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, date VARCHAR)
SELECT COUNT(leading_scorer) FROM table_11964047_8 WHERE date = "February 21"
28,256
<question>: What is the leading scorer on february 1? <context>: CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_11964047_8 WHERE date = "February 1"
28,257
<question>: what's the score where record is 35–33 <context>: CREATE TABLE table_11964047_9 (score VARCHAR, record VARCHAR)
SELECT score FROM table_11964047_9 WHERE record = "35–33"
28,258
<question>: what's the home where date is march 27 <context>: CREATE TABLE table_11964047_9 (home VARCHAR, date VARCHAR)
SELECT home FROM table_11964047_9 WHERE date = "March 27"
28,259
<question>: what's the date where visitor is phoenix suns and record is 31–30 <context>: CREATE TABLE table_11964047_9 (date VARCHAR, visitor VARCHAR, record VARCHAR)
SELECT date FROM table_11964047_9 WHERE visitor = "Phoenix Suns" AND record = "31–30"
28,260
<question>: what's the home team where score is l 80–88 <context>: CREATE TABLE table_11964047_9 (home VARCHAR, score VARCHAR)
SELECT home FROM table_11964047_9 WHERE score = "L 80–88"
28,261
<question>: what's the leading scorer on march 2 <context>: CREATE TABLE table_11964047_9 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_11964047_9 WHERE date = "March 2"
28,262
<question>: what's the leading scorer where home is sacramento kings <context>: CREATE TABLE table_11964047_9 (leading_scorer VARCHAR, home VARCHAR)
SELECT leading_scorer FROM table_11964047_9 WHERE home = "Sacramento Kings"
28,263
<question>: what's the team where date is february 8 <context>: CREATE TABLE table_11964154_9 (team VARCHAR, date VARCHAR)
SELECT team FROM table_11964154_9 WHERE date = "February 8"
28,264
<question>: what's the location attendance where high rebounds is nick collison (14) <context>: CREATE TABLE table_11964154_9 (location_attendance VARCHAR, high_rebounds VARCHAR)
SELECT location_attendance FROM table_11964154_9 WHERE high_rebounds = "Nick Collison (14)"
28,265
<question>: what's the record where score is w 105–92 (ot) <context>: CREATE TABLE table_11964154_9 (record VARCHAR, score VARCHAR)
SELECT record FROM table_11964154_9 WHERE score = "W 105–92 (OT)"
28,266
<question>: what's the location attendance where record is 14–39 <context>: CREATE TABLE table_11964154_9 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_11964154_9 WHERE record = "14–39"
28,267
<question>: what is the maximum game where high points is mickaël gelabale (21) <context>: CREATE TABLE table_11964154_9 (game INTEGER, high_points VARCHAR)
SELECT MAX(game) FROM table_11964154_9 WHERE high_points = "Mickaël Gelabale (21)"
28,268
<question>: what's the record where location attendance is keyarena 13,627 <context>: CREATE TABLE table_11964154_9 (record VARCHAR, location_attendance VARCHAR)
SELECT record FROM table_11964154_9 WHERE location_attendance = "KeyArena 13,627"
28,269
<question>: What is the score for april 29? <context>: CREATE TABLE table_11964263_13 (score VARCHAR, date VARCHAR)
SELECT score FROM table_11964263_13 WHERE date = "April 29"
28,270
<question>: Name the minimum game <context>: CREATE TABLE table_11964263_13 (game INTEGER)
SELECT MIN(game) FROM table_11964263_13
28,271
<question>: Name the high points for toyota center 18,269? <context>: CREATE TABLE table_11964263_13 (high_points VARCHAR, location_attendance VARCHAR)
SELECT high_points FROM table_11964263_13 WHERE location_attendance = "Toyota Center 18,269"
28,272
<question>: what's the preliminaries with average being 9.135 <context>: CREATE TABLE table_11970261_2 (preliminaries VARCHAR, average VARCHAR)
SELECT preliminaries FROM table_11970261_2 WHERE average = "9.135"
28,273
<question>: what's the evening gown with preliminaries being 9.212 <context>: CREATE TABLE table_11970261_2 (evening_gown VARCHAR, preliminaries VARCHAR)
SELECT evening_gown FROM table_11970261_2 WHERE preliminaries = "9.212"
28,274
<question>: what's the interview with swimsuit being 9.140 <context>: CREATE TABLE table_11970261_2 (interview VARCHAR, swimsuit VARCHAR)
SELECT interview FROM table_11970261_2 WHERE swimsuit = "9.140"
28,275
<question>: what's the evening gown with swimsuit being 9.134 <context>: CREATE TABLE table_11970261_2 (evening_gown VARCHAR, swimsuit VARCHAR)
SELECT evening_gown FROM table_11970261_2 WHERE swimsuit = "9.134"
28,276
<question>: what's the preliminaries with average being 9.360 <context>: CREATE TABLE table_11970261_2 (preliminaries VARCHAR, average VARCHAR)
SELECT preliminaries FROM table_11970261_2 WHERE average = "9.360"
28,277
<question>: How many successors were seated in the New York 20th district? <context>: CREATE TABLE table_1199219_2 (successor VARCHAR, district VARCHAR)
SELECT COUNT(successor) FROM table_1199219_2 WHERE district = "New York 20th"
28,278
<question>: What playoff result happened during the season in which they finished 1st, southern? <context>: CREATE TABLE table_12002388_1 (playoffs VARCHAR, reg_season VARCHAR)
SELECT playoffs FROM table_12002388_1 WHERE reg_season = "1st, Southern"
28,279
<question>: How many teams placed 4th in the regular season? <context>: CREATE TABLE table_12002388_1 (division VARCHAR, reg_season VARCHAR)
SELECT COUNT(division) FROM table_12002388_1 WHERE reg_season = "4th"
28,280
<question>: What was the result of the open cup when they finished 4th in the regular season? <context>: CREATE TABLE table_12002388_1 (open_cup VARCHAR, reg_season VARCHAR)
SELECT open_cup FROM table_12002388_1 WHERE reg_season = "4th"
28,281
<question>: How many open cups were hosted in 1993? <context>: CREATE TABLE table_12002388_1 (open_cup VARCHAR, year VARCHAR)
SELECT COUNT(open_cup) FROM table_12002388_1 WHERE year = 1993
28,282
<question>: What year did they finish 1st, southern? <context>: CREATE TABLE table_12002388_1 (year INTEGER, reg_season VARCHAR)
SELECT MAX(year) FROM table_12002388_1 WHERE reg_season = "1st, Southern"
28,283
<question>: What was the playoff result for theteam in the apsl in 1992? <context>: CREATE TABLE table_12002388_1 (playoffs VARCHAR, league VARCHAR, year VARCHAR)
SELECT playoffs FROM table_12002388_1 WHERE league = "APSL" AND year = 1992
28,284
<question>: What was the status of tropartic? <context>: CREATE TABLE table_12001616_4 (status VARCHAR, car_name VARCHAR)
SELECT status FROM table_12001616_4 WHERE car_name = "TropArtic"
28,285
<question>: What is the status of joe gibbs racing? <context>: CREATE TABLE table_12001616_4 (status VARCHAR, entrant VARCHAR)
SELECT status FROM table_12001616_4 WHERE entrant = "Joe Gibbs Racing"
28,286
<question>: What is the laops of marcis auto racing? <context>: CREATE TABLE table_12001616_4 (laps VARCHAR, entrant VARCHAR)
SELECT laps FROM table_12001616_4 WHERE entrant = "Marcis Auto Racing"
28,287
<question>: what's the author / editor / source with index (year) being press freedom (2007) <context>: CREATE TABLE table_12000368_1 (author___editor___source VARCHAR, index__year_ VARCHAR)
SELECT author___editor___source FROM table_12000368_1 WHERE index__year_ = "Press Freedom (2007)"
28,288
<question>: how many countries sampled with year of publication being 2007 and ranking l.a. (2) being 7th <context>: CREATE TABLE table_12000368_1 (countries_sampled VARCHAR, year_of_publication VARCHAR, ranking_la__2_ VARCHAR)
SELECT COUNT(countries_sampled) FROM table_12000368_1 WHERE year_of_publication = "2007" AND ranking_la__2_ = "7th"
28,289
<question>: what's the author / editor / source with world ranking (1) being 73rd <context>: CREATE TABLE table_12000368_1 (author___editor___source VARCHAR, world_ranking__1_ VARCHAR)
SELECT author___editor___source FROM table_12000368_1 WHERE world_ranking__1_ = "73rd"
28,290
<question>: How many losingteams were for the cup finaldate 20 August 1989? <context>: CREATE TABLE table_12028543_3 (losingteam VARCHAR, cup_finaldate VARCHAR)
SELECT COUNT(losingteam) FROM table_12028543_3 WHERE cup_finaldate = "20 August 1989"
28,291
<question>: How many seasons was the losing team Adelaide City? <context>: CREATE TABLE table_12028543_3 (season VARCHAR, losingteam VARCHAR)
SELECT COUNT(season) FROM table_12028543_3 WHERE losingteam = "Adelaide City"
28,292
<question>: Who was the winning team in the 1989 season? <context>: CREATE TABLE table_12028543_3 (winningteam VARCHAR, season VARCHAR)
SELECT winningteam FROM table_12028543_3 WHERE season = "1989"
28,293
<question>: Who won the womens doubles when wu jianqui won the womens singles? <context>: CREATE TABLE table_12027364_1 (womens_doubles VARCHAR, womens_singles VARCHAR)
SELECT womens_doubles FROM table_12027364_1 WHERE womens_singles = "Wu Jianqui"
28,294
<question>: Who won the mixed doubles when ji xinpeng won the mens singles? <context>: CREATE TABLE table_12027364_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)
SELECT mixed_doubles FROM table_12027364_1 WHERE mens_singles = "Ji Xinpeng"
28,295
<question>: How many womens singles winners were there when peter rasmussen won the mens singles? <context>: CREATE TABLE table_12027364_1 (womens_singles VARCHAR, mens_singles VARCHAR)
SELECT COUNT(womens_singles) FROM table_12027364_1 WHERE mens_singles = "Peter Rasmussen"
28,296
<question>: WHO WROTE THE STORY WITH THE PRODUCTION CODE OF 1ADK-03 <context>: CREATE TABLE table_12033013_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_12033013_1 WHERE production_code = "1ADK-03"
28,297
<question>: Name the number of titles written by adam i. lapidus <context>: CREATE TABLE table_12030612_9 (title VARCHAR, written_by VARCHAR)
SELECT COUNT(title) FROM table_12030612_9 WHERE written_by = "Adam I. Lapidus"
28,298
<question>: Who directed the episode with a production code 3ADK-03? <context>: CREATE TABLE table_12033013_3 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_12033013_3 WHERE production_code = "3ADK-03"
28,299
<question>: When pinyin is xīnluó qū, what is the simplified value? <context>: CREATE TABLE table_1204998_2 (simplified VARCHAR, pinyin VARCHAR)
SELECT COUNT(simplified) FROM table_1204998_2 WHERE pinyin = "Xīnluó Qū"