question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the record where high assists is pierce (6)?
CREATE TABLE table_11959669_6 (record VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT record FROM table_11959669_6 WHERE high_assists = \"Pierce (6)\"" }
What was the result of the game when the raptors played @ cleveland?
CREATE TABLE table_11960407_2 (score VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11960407_2 WHERE team = \"@ Cleveland\"" }
Who did the high points of game 5?
CREATE TABLE table_11960196_3 (high_points VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_11960196_3 WHERE game = 5" }
How many high points were at the wachovia center 18,347?
CREATE TABLE table_11960196_3 (high_points VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_11960196_3 WHERE location_attendance = \"Wachovia Center 18,347\"" }
What is the team of april 25?
CREATE TABLE table_11960196_3 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11960196_3 WHERE date = \"April 25\"" }
Who had the high rebounds when Chris Bosh (16) had the high points?
CREATE TABLE table_11960407_4 (high_rebounds VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_11960407_4 WHERE high_points = \"Chris Bosh (16)\"" }
What was the score when the location attendance was Air Canada Centre 18,067?
CREATE TABLE table_11960407_4 (score VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11960407_4 WHERE location_attendance = \"Air Canada Centre 18,067\"" }
When did Chris Bosh (14) have the high rebounds?
CREATE TABLE table_11960407_4 (date VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT date FROM table_11960407_4 WHERE high_rebounds = \"Chris Bosh (14)\"" }
Who had the high points on January 23?
CREATE TABLE table_11960407_4 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_11960407_4 WHERE date = \"January 23\"" }
How many times was the game 39?
CREATE TABLE table_11960407_4 (record VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT COUNT(record) FROM table_11960407_4 WHERE game = 39" }
What is San Antonio game number?
CREATE TABLE table_11960610_10 (game INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_11960610_10 WHERE team = \"San Antonio\"" }
Who had high points when high rebound is gray (8)?
CREATE TABLE table_11960610_10 (high_points VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_11960610_10 WHERE high_rebounds = \"Gray (8)\"" }
What is the date deng (20) had high points?
CREATE TABLE table_11960610_10 (date VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT date FROM table_11960610_10 WHERE high_points = \"Deng (20)\"" }
What was the score of united center 22,097?
CREATE TABLE table_11960610_10 (score VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11960610_10 WHERE location_attendance = \"United Center 22,097\"" }
When gordon (27) had high points, what was the number of high assists?
CREATE TABLE table_11960610_10 (high_assists VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_assists) FROM table_11960610_10 WHERE high_points = \"Gordon (27)\"" }
What was the location attendance on the date of November 15?
CREATE TABLE table_11960610_6 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_11960610_6 WHERE date = \"November 15\"" }
Where was the game played when the high assists were scored by billups , stuckey (4)?
CREATE TABLE table_11960944_11 (location_attendance VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_11960944_11 WHERE high_assists = \"Billups , Stuckey (4)\"" }
What date was the game for the score L 88–79?
CREATE TABLE table_11960944_11 (date VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT date FROM table_11960944_11 WHERE score = \"L 88–79\"" }
How many high points were there in the game 67?
CREATE TABLE table_11960944_7 (high_points VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_11960944_7 WHERE game = 67" }
Which team was played when the high points was from Wallace (20)?
CREATE TABLE table_11960944_4 (team VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11960944_4 WHERE high_points = \"Wallace (20)\"" }
Which date was the team playing @ Memphis?
CREATE TABLE table_11960944_4 (date VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_11960944_4 WHERE team = \"@ Memphis\"" }
how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)?
CREATE TABLE table_11960944_4 (high_points VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_11960944_4 WHERE high_rebounds = \"McDyess (9)\" AND high_assists = \"Billups (10)\"" }
Who had the high assists on the date December 12?
CREATE TABLE table_11960944_4 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_11960944_4 WHERE date = \"December 12\"" }
What date was game 57 held on?
CREATE TABLE table_11960944_6 (date VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT date FROM table_11960944_6 WHERE game = 57" }
How many players had the most points in the game @ Milwaukee?
CREATE TABLE table_11960944_6 (high_points VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_11960944_6 WHERE team = \"@ Milwaukee\"" }
Who did the most high rebounds in the game 24?
CREATE TABLE table_11961582_4 (high_rebounds VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_11961582_4 WHERE game = 24" }
What was the score of the game played on December 8?
CREATE TABLE table_11961582_4 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11961582_4 WHERE date = \"December 8\"" }
What was the total number of games where A. Johnson (6) gave the most high assists?
CREATE TABLE table_11961582_4 (game VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT COUNT(game) FROM table_11961582_4 WHERE high_assists = \"A. Johnson (6)\"" }
What's the minimal game number in the season?
CREATE TABLE table_11961582_4 (game INTEGER)
{ "SQL_Query": "SELECT MIN(game) FROM table_11961582_4" }
What is the location when the high rebounds was from A. Horford (13)?
CREATE TABLE table_11961582_10 (location_attendance VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_11961582_10 WHERE high_rebounds = \"A. Horford (13)\"" }
How had the high points when the high assists were from J. Johnson (7)?
CREATE TABLE table_11961582_10 (high_points VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_11961582_10 WHERE high_assists = \"J. Johnson (7)\"" }
Who had the high rebounds when the high assists were from J. Johnson (7)?
CREATE TABLE table_11961582_10 (high_rebounds VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_11961582_10 WHERE high_assists = \"J. Johnson (7)\"" }
Which team was played on April 20?
CREATE TABLE table_11961582_10 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11961582_10 WHERE date = \"April 20\"" }
Who had the high rebounds for the game on april 23?
CREATE TABLE table_11961582_10 (high_rebounds VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_11961582_10 WHERE date = \"April 23\"" }
What was the score in the game on May 11?
CREATE TABLE table_11963601_11 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11963601_11 WHERE date = \"May 11\"" }
Who was the high scorer and how much did they score in the game on May 3?
CREATE TABLE table_11963601_11 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_11963601_11 WHERE date = \"May 3\"" }
What was the series count at for game 5?
CREATE TABLE table_11963601_11 (series VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT series FROM table_11963601_11 WHERE game = 5" }
Where was the game on May 15 and how many were in attendance?
CREATE TABLE table_11963601_11 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_11963601_11 WHERE date = \"May 15\"" }
What was the attendance on March 17?
CREATE TABLE table_11961582_7 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_11961582_7 WHERE date = \"March 17\"" }
What was the high assist total on May 11?
CREATE TABLE table_11963536_11 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_11963536_11 WHERE date = \"May 11\"" }
What is the lowest #?
CREATE TABLE table_11964047_10 (_number INTEGER)
{ "SQL_Query": "SELECT MIN(_number) FROM table_11964047_10" }
What is the score of the game with the streak l5
CREATE TABLE table_11964047_10 (score VARCHAR, streak VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11964047_10 WHERE streak = \"L5\"" }
What is the attendance for the home game at Los Angeles Lakers?
CREATE TABLE table_11964047_10 (attendance VARCHAR, home VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_11964047_10 WHERE home = \"Los Angeles Lakers\"" }
What is the record for the game at home Los Angeles Lakers?
CREATE TABLE table_11964047_10 (record VARCHAR, home VARCHAR)
{ "SQL_Query": "SELECT record FROM table_11964047_10 WHERE home = \"Los Angeles Lakers\"" }
What was the result and score of Game #29?
CREATE TABLE table_11964047_6 (score VARCHAR, _number VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11964047_6 WHERE _number = 29" }
Who was the leading scorer in Game #26?
CREATE TABLE table_11964047_6 (leading_scorer VARCHAR, _number VARCHAR)
{ "SQL_Query": "SELECT leading_scorer FROM table_11964047_6 WHERE _number = 26" }
Who had the high rebounds when the score was l 84–102 (ot)?
CREATE TABLE table_11964154_11 (high_rebounds VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_11964154_11 WHERE score = \"L 84–102 (OT)\"" }
Who had the high assists when the high rebounds were from Nick Collison (15)?
CREATE TABLE table_11964154_11 (high_assists VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_11964154_11 WHERE high_rebounds = \"Nick Collison (15)\"" }
Who had the high assists @ Dallas?
CREATE TABLE table_11964154_11 (high_assists VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_11964154_11 WHERE team = \"@ Dallas\"" }
Who had the high assists when the location attendance was Toyota Center 18,370?
CREATE TABLE table_11964154_11 (high_assists VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_11964154_11 WHERE location_attendance = \"Toyota Center 18,370\"" }
What was the record when the high rebounds was from Nick Collison (11)?
CREATE TABLE table_11964154_11 (record VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT record FROM table_11964154_11 WHERE high_rebounds = \"Nick Collison (11)\"" }
How many times was the final score l 96–123 (ot)?
CREATE TABLE table_11964154_7 (record VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT COUNT(record) FROM table_11964154_7 WHERE score = \"L 96–123 (OT)\"" }
How many times was the high assists earl watson (5) and the date of the game was december 2?
CREATE TABLE table_11964154_7 (score VARCHAR, high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(score) FROM table_11964154_7 WHERE high_assists = \"Earl Watson (5)\" AND date = \"December 2\"" }
Whom did they play on game number 25?
CREATE TABLE table_11964154_7 (team VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11964154_7 WHERE game = 25" }
What is the number of the leading scorer for keyarena 16,640?
CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT COUNT(leading_scorer) FROM table_11964047_8 WHERE attendance = \"KeyArena 16,640\"" }
What is the number of leading scorer of february 21?
CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(leading_scorer) FROM table_11964047_8 WHERE date = \"February 21\"" }
What is the leading scorer on february 1?
CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT leading_scorer FROM table_11964047_8 WHERE date = \"February 1\"" }
what's the score where record is 35–33
CREATE TABLE table_11964047_9 (score VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11964047_9 WHERE record = \"35–33\"" }
what's the home where date is march 27
CREATE TABLE table_11964047_9 (home VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT home FROM table_11964047_9 WHERE date = \"March 27\"" }
what's the date where visitor is phoenix suns and record is 31–30
CREATE TABLE table_11964047_9 (date VARCHAR, visitor VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_11964047_9 WHERE visitor = \"Phoenix Suns\" AND record = \"31–30\"" }
what's the home team where score is l 80–88
CREATE TABLE table_11964047_9 (home VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT home FROM table_11964047_9 WHERE score = \"L 80–88\"" }
what's the leading scorer on march 2
CREATE TABLE table_11964047_9 (leading_scorer VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT leading_scorer FROM table_11964047_9 WHERE date = \"March 2\"" }
what's the leading scorer where home is sacramento kings
CREATE TABLE table_11964047_9 (leading_scorer VARCHAR, home VARCHAR)
{ "SQL_Query": "SELECT leading_scorer FROM table_11964047_9 WHERE home = \"Sacramento Kings\"" }
what's the team where date is february 8
CREATE TABLE table_11964154_9 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11964154_9 WHERE date = \"February 8\"" }
what's the location attendance where high rebounds is nick collison (14)
CREATE TABLE table_11964154_9 (location_attendance VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_11964154_9 WHERE high_rebounds = \"Nick Collison (14)\"" }
what's the record where score is w 105–92 (ot)
CREATE TABLE table_11964154_9 (record VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT record FROM table_11964154_9 WHERE score = \"W 105–92 (OT)\"" }
what's the location attendance where record is 14–39
CREATE TABLE table_11964154_9 (location_attendance VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_11964154_9 WHERE record = \"14–39\"" }
what is the maximum game where high points is mickaël gelabale (21)
CREATE TABLE table_11964154_9 (game INTEGER, high_points VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_11964154_9 WHERE high_points = \"Mickaël Gelabale (21)\"" }
what's the record where location attendance is keyarena 13,627
CREATE TABLE table_11964154_9 (record VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT record FROM table_11964154_9 WHERE location_attendance = \"KeyArena 13,627\"" }
What is the score for april 29?
CREATE TABLE table_11964263_13 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11964263_13 WHERE date = \"April 29\"" }
Name the minimum game
CREATE TABLE table_11964263_13 (game INTEGER)
{ "SQL_Query": "SELECT MIN(game) FROM table_11964263_13" }
Name the high points for toyota center 18,269?
CREATE TABLE table_11964263_13 (high_points VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_11964263_13 WHERE location_attendance = \"Toyota Center 18,269\"" }
what's the preliminaries with average being 9.135
CREATE TABLE table_11970261_2 (preliminaries VARCHAR, average VARCHAR)
{ "SQL_Query": "SELECT preliminaries FROM table_11970261_2 WHERE average = \"9.135\"" }
what's the evening gown with preliminaries being 9.212
CREATE TABLE table_11970261_2 (evening_gown VARCHAR, preliminaries VARCHAR)
{ "SQL_Query": "SELECT evening_gown FROM table_11970261_2 WHERE preliminaries = \"9.212\"" }
what's the interview with swimsuit being 9.140
CREATE TABLE table_11970261_2 (interview VARCHAR, swimsuit VARCHAR)
{ "SQL_Query": "SELECT interview FROM table_11970261_2 WHERE swimsuit = \"9.140\"" }
what's the evening gown with swimsuit being 9.134
CREATE TABLE table_11970261_2 (evening_gown VARCHAR, swimsuit VARCHAR)
{ "SQL_Query": "SELECT evening_gown FROM table_11970261_2 WHERE swimsuit = \"9.134\"" }
what's the preliminaries with average being 9.360
CREATE TABLE table_11970261_2 (preliminaries VARCHAR, average VARCHAR)
{ "SQL_Query": "SELECT preliminaries FROM table_11970261_2 WHERE average = \"9.360\"" }
How many successors were seated in the New York 20th district?
CREATE TABLE table_1199219_2 (successor VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT COUNT(successor) FROM table_1199219_2 WHERE district = \"New York 20th\"" }
What playoff result happened during the season in which they finished 1st, southern?
CREATE TABLE table_12002388_1 (playoffs VARCHAR, reg_season VARCHAR)
{ "SQL_Query": "SELECT playoffs FROM table_12002388_1 WHERE reg_season = \"1st, Southern\"" }
How many teams placed 4th in the regular season?
CREATE TABLE table_12002388_1 (division VARCHAR, reg_season VARCHAR)
{ "SQL_Query": "SELECT COUNT(division) FROM table_12002388_1 WHERE reg_season = \"4th\"" }
What was the result of the open cup when they finished 4th in the regular season?
CREATE TABLE table_12002388_1 (open_cup VARCHAR, reg_season VARCHAR)
{ "SQL_Query": "SELECT open_cup FROM table_12002388_1 WHERE reg_season = \"4th\"" }
How many open cups were hosted in 1993?
CREATE TABLE table_12002388_1 (open_cup VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT COUNT(open_cup) FROM table_12002388_1 WHERE year = 1993" }
What year did they finish 1st, southern?
CREATE TABLE table_12002388_1 (year INTEGER, reg_season VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_12002388_1 WHERE reg_season = \"1st, Southern\"" }
What was the playoff result for theteam in the apsl in 1992?
CREATE TABLE table_12002388_1 (playoffs VARCHAR, league VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT playoffs FROM table_12002388_1 WHERE league = \"APSL\" AND year = 1992" }
What was the status of tropartic?
CREATE TABLE table_12001616_4 (status VARCHAR, car_name VARCHAR)
{ "SQL_Query": "SELECT status FROM table_12001616_4 WHERE car_name = \"TropArtic\"" }
What is the status of joe gibbs racing?
CREATE TABLE table_12001616_4 (status VARCHAR, entrant VARCHAR)
{ "SQL_Query": "SELECT status FROM table_12001616_4 WHERE entrant = \"Joe Gibbs Racing\"" }
What is the laops of marcis auto racing?
CREATE TABLE table_12001616_4 (laps VARCHAR, entrant VARCHAR)
{ "SQL_Query": "SELECT laps FROM table_12001616_4 WHERE entrant = \"Marcis Auto Racing\"" }
what's the author / editor / source with index (year) being press freedom (2007)
CREATE TABLE table_12000368_1 (author___editor___source VARCHAR, index__year_ VARCHAR)
{ "SQL_Query": "SELECT author___editor___source FROM table_12000368_1 WHERE index__year_ = \"Press Freedom (2007)\"" }
how many countries sampled with year of publication being 2007 and ranking l.a. (2) being 7th
CREATE TABLE table_12000368_1 (countries_sampled VARCHAR, year_of_publication VARCHAR, ranking_la__2_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(countries_sampled) FROM table_12000368_1 WHERE year_of_publication = \"2007\" AND ranking_la__2_ = \"7th\"" }
what's the author / editor / source with world ranking (1) being 73rd
CREATE TABLE table_12000368_1 (author___editor___source VARCHAR, world_ranking__1_ VARCHAR)
{ "SQL_Query": "SELECT author___editor___source FROM table_12000368_1 WHERE world_ranking__1_ = \"73rd\"" }
How many losingteams were for the cup finaldate 20 August 1989?
CREATE TABLE table_12028543_3 (losingteam VARCHAR, cup_finaldate VARCHAR)
{ "SQL_Query": "SELECT COUNT(losingteam) FROM table_12028543_3 WHERE cup_finaldate = \"20 August 1989\"" }
How many seasons was the losing team Adelaide City?
CREATE TABLE table_12028543_3 (season VARCHAR, losingteam VARCHAR)
{ "SQL_Query": "SELECT COUNT(season) FROM table_12028543_3 WHERE losingteam = \"Adelaide City\"" }
Who was the winning team in the 1989 season?
CREATE TABLE table_12028543_3 (winningteam VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT winningteam FROM table_12028543_3 WHERE season = \"1989\"" }
Who won the womens doubles when wu jianqui won the womens singles?
CREATE TABLE table_12027364_1 (womens_doubles VARCHAR, womens_singles VARCHAR)
{ "SQL_Query": "SELECT womens_doubles FROM table_12027364_1 WHERE womens_singles = \"Wu Jianqui\"" }
Who won the mixed doubles when ji xinpeng won the mens singles?
CREATE TABLE table_12027364_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)
{ "SQL_Query": "SELECT mixed_doubles FROM table_12027364_1 WHERE mens_singles = \"Ji Xinpeng\"" }
How many womens singles winners were there when peter rasmussen won the mens singles?
CREATE TABLE table_12027364_1 (womens_singles VARCHAR, mens_singles VARCHAR)
{ "SQL_Query": "SELECT COUNT(womens_singles) FROM table_12027364_1 WHERE mens_singles = \"Peter Rasmussen\"" }
WHO WROTE THE STORY WITH THE PRODUCTION CODE OF 1ADK-03
CREATE TABLE table_12033013_1 (written_by VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_12033013_1 WHERE production_code = \"1ADK-03\"" }
Name the number of titles written by adam i. lapidus
CREATE TABLE table_12030612_9 (title VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT COUNT(title) FROM table_12030612_9 WHERE written_by = \"Adam I. Lapidus\"" }
Who directed the episode with a production code 3ADK-03?
CREATE TABLE table_12033013_3 (directed_by VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_12033013_3 WHERE production_code = \"3ADK-03\"" }
When pinyin is xīnluó qū, what is the simplified value?
CREATE TABLE table_1204998_2 (simplified VARCHAR, pinyin VARCHAR)
{ "SQL_Query": "SELECT COUNT(simplified) FROM table_1204998_2 WHERE pinyin = \"Xīnluó Qū\"" }