question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What championship had a final score of 6–4, 6–2, 6–2?
CREATE TABLE table_22839669_1 (championship VARCHAR, score_in_the_final VARCHAR)
{ "SQL_Query": "SELECT championship FROM table_22839669_1 WHERE score_in_the_final = \"6–4, 6–2, 6–2\"" }
If the year is 2007, what is the top ten?
CREATE TABLE table_22838521_3 (top_10s VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT top_10s FROM table_22838521_3 WHERE year = 2007" }
What is the possible maximum money list rank?
CREATE TABLE table_22838521_3 (money_list_rank INTEGER)
{ "SQL_Query": "SELECT MAX(money_list_rank) FROM table_22838521_3" }
If the scoring average is 72.46, what is the best finish?
CREATE TABLE table_22838521_3 (best_finish VARCHAR, scoring_average VARCHAR)
{ "SQL_Query": "SELECT best_finish FROM table_22838521_3 WHERE scoring_average = \"72.46\"" }
Name the result for wesley moodie
CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_22853654_9 WHERE opponent = \"Wesley Moodie\"" }
Name the surface against monaco
CREATE TABLE table_22853654_9 (surface VARCHAR, against VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_22853654_9 WHERE against = \"Monaco\"" }
Name the result for alexander shvec
CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_22853654_9 WHERE opponent = \"Alexander Shvec\"" }
Name the opponent for 3–6, 4–6, 6–1, 6–7 (7–9)
CREATE TABLE table_22853654_9 (opponent VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_22853654_9 WHERE result = \"3–6, 4–6, 6–1, 6–7 (7–9)\"" }
Name the annual rainfail for 2002 population being 493984
CREATE TABLE table_22854436_1 (average_annual_rainfall__mm_ VARCHAR, population__2002_census_data_ VARCHAR)
{ "SQL_Query": "SELECT average_annual_rainfall__mm_ FROM table_22854436_1 WHERE population__2002_census_data_ = 493984" }
Name the most population 2002
CREATE TABLE table_22854436_1 (population__2002_census_data_ INTEGER)
{ "SQL_Query": "SELECT MAX(population__2002_census_data_) FROM table_22854436_1" }
Name the total water resources m3 for rainfall being 650
CREATE TABLE table_22854436_1 (per_capita_average_annual_renewable_water_resources_m_3 VARCHAR, average_annual_rainfall__mm_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(per_capita_average_annual_renewable_water_resources_m_3) FROM table_22854436_1 WHERE average_annual_rainfall__mm_ = \"650\"" }
What were the carpet w-l in 1993?
CREATE TABLE table_22860698_8 (carpet_w_l VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT carpet_w_l FROM table_22860698_8 WHERE year = 1993" }
What is the amount of US open runner-up score?
CREATE TABLE table_22858557_1 (score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR)
{ "SQL_Query": "SELECT COUNT(score_in_final) FROM table_22858557_1 WHERE championship = \"US Open\" AND outcome = \"Runner-up\"" }
What is the year where the runner-up outcome was at its basic minimum?
CREATE TABLE table_22858557_1 (year INTEGER, outcome VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_22858557_1 WHERE outcome = \"Runner-up\"" }
How many championships have there been with Steffi Graf?
CREATE TABLE table_22858557_1 (championship VARCHAR, opponent_in_final VARCHAR)
{ "SQL_Query": "SELECT championship FROM table_22858557_1 WHERE opponent_in_final = \"Steffi Graf\"" }
How many opponents have wimbledon (2) as the championship?
CREATE TABLE table_22860698_2 (opponents VARCHAR, championship VARCHAR)
{ "SQL_Query": "SELECT COUNT(opponents) FROM table_22860698_2 WHERE championship = \"Wimbledon (2)\"" }
What is the surface when the us open is the championship in the year 1979?
CREATE TABLE table_22860698_2 (surface VARCHAR, championship VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_22860698_2 WHERE championship = \"US Open\" AND year = 1979" }
What is the game number that was on November 27?
CREATE TABLE table_22871239_5 (_number VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT _number FROM table_22871239_5 WHERE date = \"November 27\"" }
What was the score when the team was @ New Jersey?
CREATE TABLE table_22871239_5 (score VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT score FROM table_22871239_5 WHERE team = \"@ New Jersey\"" }
How many high rebound catagories are listed for game number 5?
CREATE TABLE table_22871239_5 (high_rebounds VARCHAR, _number VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_rebounds) FROM table_22871239_5 WHERE _number = 5" }
Who were the opponents when the record was 11-2?
CREATE TABLE table_22862203_2 (opponent VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_22862203_2 WHERE record = \"11-2\"" }
What were the records when the opponents had 50 points?
CREATE TABLE table_22862203_2 (record VARCHAR, opp_points VARCHAR)
{ "SQL_Query": "SELECT record FROM table_22862203_2 WHERE opp_points = 50" }
What are the terps points for the nov. 25/05 game?
CREATE TABLE table_22862203_2 (terps_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT terps_points FROM table_22862203_2 WHERE date = \"Nov. 25/05\"" }
Where were games played when the record was 9-1?
CREATE TABLE table_22862203_2 (location VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT location FROM table_22862203_2 WHERE record = \"9-1\"" }
What is the highest number of terps points in games where the opponent made 53 points?
CREATE TABLE table_22862203_2 (terps_points INTEGER, opp_points VARCHAR)
{ "SQL_Query": "SELECT MAX(terps_points) FROM table_22862203_2 WHERE opp_points = 53" }
Where was the game on jan. 16/06 played?
CREATE TABLE table_22862203_2 (location VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location FROM table_22862203_2 WHERE date = \"Jan. 16/06\"" }
Name the high points for 21-45 record
CREATE TABLE table_22871239_9 (high_points VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_22871239_9 WHERE record = \"21-45\"" }
Name the visitor for march 23
CREATE TABLE table_22871239_9 (visitor VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT visitor FROM table_22871239_9 WHERE date = \"March 23\"" }
Name the high rebounds for td garden 18,624
CREATE TABLE table_22871239_9 (high_rebounds VARCHAR, arena_attendance VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_22871239_9 WHERE arena_attendance = \"TD Garden 18,624\"" }
Name the record for march 16
CREATE TABLE table_22871239_9 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_22871239_9 WHERE date = \"March 16\"" }
Name the total number for score l 110-112
CREATE TABLE table_22871239_8 (_number VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT COUNT(_number) FROM table_22871239_8 WHERE score = \"L 110-112\"" }
Name the team for w 125-115 score
CREATE TABLE table_22871239_8 (team VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT team FROM table_22871239_8 WHERE score = \"W 125-115\"" }
Name the high assists for american airlines center 19,585
CREATE TABLE table_22871239_8 (high_assists VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_22871239_8 WHERE location_attendance = \"American Airlines Center 19,585\"" }
Who has the high points when 3-2 is the series?
CREATE TABLE table_22871316_11 (high_points VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_22871316_11 WHERE series = \"3-2\"" }
Who has the high assists when 0-1 is the series?
CREATE TABLE table_22871316_11 (high_assists VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_22871316_11 WHERE series = \"0-1\"" }
How many high rebounds are in series 3-3?
CREATE TABLE table_22871316_11 (high_rebounds VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_rebounds) FROM table_22871316_11 WHERE series = \"3-3\"" }
How many games are on the date of April 30?
CREATE TABLE table_22871316_11 (game INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT MIN(game) FROM table_22871316_11 WHERE date = \"April 30\"" }
Who did the high points in the game played on December 18?
CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_22871316_6 WHERE date = \"December 18\"" }
Who did the high points in the game played on December 2?
CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_22871316_6 WHERE date = \"December 2\"" }
What's the record of the game in which Carlos Delfino (17) did the most high points?
CREATE TABLE table_22871316_6 (record VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT record FROM table_22871316_6 WHERE high_points = \"Carlos Delfino (17)\"" }
Who did the high rebounds in the game in which Brandon Jennings (8) did the high assists?
CREATE TABLE table_22871316_6 (high_rebounds VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_22871316_6 WHERE high_assists = \"Brandon Jennings (8)\"" }
Which player has 18-50 .360 field goals?
CREATE TABLE table_22875514_3 (player VARCHAR, field_goals VARCHAR)
{ "SQL_Query": "SELECT player FROM table_22875514_3 WHERE field_goals = \"18-50 .360\"" }
What is the most assists for points 129-3.9?
CREATE TABLE table_22875514_3 (assists INTEGER, points VARCHAR)
{ "SQL_Query": "SELECT MAX(assists) FROM table_22875514_3 WHERE points = \"129-3.9\"" }
Name the date for irish points being 89
CREATE TABLE table_22875369_3 (date VARCHAR, irish_points VARCHAR)
{ "SQL_Query": "SELECT date FROM table_22875369_3 WHERE irish_points = 89" }
Name the number of location for 22-1
CREATE TABLE table_22875369_3 (location VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT COUNT(location) FROM table_22875369_3 WHERE record = \"22-1\"" }
Name the opponent for 2-27-10
CREATE TABLE table_22875369_3 (opponent VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_22875369_3 WHERE date = \"2-27-10\"" }
Name the max irish points for eastern michigan
CREATE TABLE table_22875369_3 (irish_points INTEGER, opponent VARCHAR)
{ "SQL_Query": "SELECT MAX(irish_points) FROM table_22875369_3 WHERE opponent = \"Eastern Michigan\"" }
Name the irish points for 23-1 record
CREATE TABLE table_22875369_3 (irish_points VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT irish_points FROM table_22875369_3 WHERE record = \"23-1\"" }
Name the number of high rebounds for l 92–96 (ot)
CREATE TABLE table_22879262_14 (high_rebounds VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_rebounds) FROM table_22879262_14 WHERE score = \"L 92–96 (OT)\"" }
what ist he date of game 29?
CREATE TABLE table_22879262_7 (date VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT date FROM table_22879262_7 WHERE game = 29" }
what is the location attendance for game 27?
CREATE TABLE table_22879262_7 (location_attendance VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_22879262_7 WHERE game = 27" }
what is the total number of high rebounds for minnesota?
CREATE TABLE table_22879262_7 (high_rebounds VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_rebounds) FROM table_22879262_7 WHERE team = \"Minnesota\"" }
What were the high rebounds on April 4?
CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_22879323_10 WHERE date = \"April 4\"" }
What was the score when the game was 80?
CREATE TABLE table_22879323_10 (score VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT score FROM table_22879323_10 WHERE game = 80" }
What date was the record 11-67?
CREATE TABLE table_22879323_10 (date VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_22879323_10 WHERE record = \"11-67\"" }
How many high rebounds were there on April 7?
CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_rebounds) FROM table_22879323_10 WHERE date = \"April 7\"" }
What was the high points when rebounds were Terrence Williams (8)?
CREATE TABLE table_22879323_10 (high_points VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_22879323_10 WHERE high_rebounds = \"Terrence Williams (8)\"" }
When the record was 2-29 who had the most assists?
CREATE TABLE table_22879323_6 (high_assists VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_22879323_6 WHERE record = \"2-29\"" }
When we played Houston who had the most points?
CREATE TABLE table_22879323_6 (high_points VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_22879323_6 WHERE team = \"Houston\"" }
Name the number of high points for ford center
CREATE TABLE table_22879323_9 (high_points VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_22879323_9 WHERE location_attendance = \"Ford Center\"" }
Name the high rebounds for american airlines center
CREATE TABLE table_22879323_9 (high_rebounds VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_22879323_9 WHERE location_attendance = \"American Airlines Center\"" }
Name the record for l 90–100 (ot)
CREATE TABLE table_22879323_9 (record VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT record FROM table_22879323_9 WHERE score = \"L 90–100 (OT)\"" }
Name the location attendance for l 83–106 (ot)
CREATE TABLE table_22879323_9 (location_attendance VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_22879323_9 WHERE score = \"L 83–106 (OT)\"" }
Name the score for 49-31
CREATE TABLE table_22883210_10 (score VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT score FROM table_22883210_10 WHERE record = \"49-31\"" }
Name the location attendance for minnesota
CREATE TABLE table_22883210_10 (location_attendance VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_22883210_10 WHERE team = \"Minnesota\"" }
What location had a record of 20-12, and how many people attended?
CREATE TABLE table_22883210_7 (location_attendance VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_22883210_7 WHERE record = \"20-12\"" }
What was the total score for january 18?
CREATE TABLE table_22883210_7 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(score) FROM table_22883210_7 WHERE date = \"January 18\"" }
Where was game 41 held, and how many people attended?
CREATE TABLE table_22883210_7 (location_attendance VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_22883210_7 WHERE game = 41" }
What was the date for the record 23-13?
CREATE TABLE table_22883210_7 (date VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_22883210_7 WHERE record = \"23-13\"" }
What was the high point for January 20?
CREATE TABLE table_22883210_7 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_22883210_7 WHERE date = \"January 20\"" }
What was the location and how many attended when Golden State played?
CREATE TABLE table_22883210_9 (location_attendance VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_22883210_9 WHERE team = \"Golden State\"" }
What is the highest game number where the team was Cleveland?
CREATE TABLE table_22883210_9 (game INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_22883210_9 WHERE team = \"Cleveland\"" }
What is the highest numbered nightly rank for any episode?
CREATE TABLE table_22892217_4 (nightly_rank INTEGER)
{ "SQL_Query": "SELECT MAX(nightly_rank) FROM table_22892217_4" }
How many attended on december 2?
CREATE TABLE table_22893781_5 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(location_attendance) FROM table_22893781_5 WHERE date = \"December 2\"" }
Who was he opponent on december 11?
CREATE TABLE table_22893781_5 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT team FROM table_22893781_5 WHERE date = \"December 11\"" }
What was the score against houston?
CREATE TABLE table_22893781_5 (score VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT score FROM table_22893781_5 WHERE team = \"Houston\"" }
when did the @ indiana game take place?
CREATE TABLE table_22893781_7 (date VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_22893781_7 WHERE team = \"@ Indiana\"" }
Name the score for madison square garden 18,828
CREATE TABLE table_22893781_6 (score VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT score FROM table_22893781_6 WHERE location_attendance = \"Madison Square Garden 18,828\"" }
Name the number of date for dallas
CREATE TABLE table_22893781_6 (date VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(date) FROM table_22893781_6 WHERE team = \"Dallas\"" }
Name the high assists for january 15
CREATE TABLE table_22893781_6 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_22893781_6 WHERE date = \"January 15\"" }
What is the name of the episode that aired originally on November 10, 1998?
CREATE TABLE table_228973_5 (title VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT title FROM table_228973_5 WHERE original_air_date = \"November 10, 1998\"" }
What episode number in the series originally aired on April 27, 1999?
CREATE TABLE table_228973_5 (no_in_series INTEGER, original_air_date VARCHAR)
{ "SQL_Query": "SELECT MAX(no_in_series) FROM table_228973_5 WHERE original_air_date = \"April 27, 1999\"" }
How many people wrote episode 68 in the series?
CREATE TABLE table_228973_5 (written_by VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT COUNT(written_by) FROM table_228973_5 WHERE no_in_series = 68" }
Who directed the episode that originally aired on February 16, 1999?
CREATE TABLE table_228973_5 (directed_by VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_228973_5 WHERE original_air_date = \"February 16, 1999\"" }
The episode which originally aired on February 11, 2005 had which episode # of the season?
CREATE TABLE table_228973_11 (no_in_season VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT no_in_season FROM table_228973_11 WHERE original_air_date = \"February 11, 2005\"" }
The episode which originally aired on December 17, 2004 was written by whom?
CREATE TABLE table_228973_11 (written_by VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_228973_11 WHERE original_air_date = \"December 17, 2004\"" }
David James Elliott directed which episode number within the series?
CREATE TABLE table_228973_11 (no_in_series VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT no_in_series FROM table_228973_11 WHERE directed_by = \"David James Elliott\"" }
Who directed the episode which originally aired February 4, 2005?
CREATE TABLE table_228973_11 (directed_by VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_228973_11 WHERE original_air_date = \"February 4, 2005\"" }
which is the number of the season episode whose premiere was in january 3, 1997?
CREATE TABLE table_228973_3 (no_in_season VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT COUNT(no_in_season) FROM table_228973_3 WHERE original_air_date = \"January 3, 1997\"" }
which is the number of the season episode whose writer is R. Scott Gemmill and the Director is Ray Austin?
CREATE TABLE table_228973_3 (no_in_season VARCHAR, written_by VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT no_in_season FROM table_228973_3 WHERE written_by = \"R. Scott Gemmill\" AND directed_by = \"Ray Austin\"" }
what is the name of the episode whose number of the series episode was 31?
CREATE TABLE table_228973_3 (title VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT title FROM table_228973_3 WHERE no_in_series = 31" }
When 129 is the number in the series who is the writer?
CREATE TABLE table_228973_7 (written_by VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_228973_7 WHERE no_in_series = 129" }
How many product # have episode 1?
CREATE TABLE table_2289806_1 (prod__number INTEGER, episode__number VARCHAR)
{ "SQL_Query": "SELECT MAX(prod__number) FROM table_2289806_1 WHERE episode__number = 1" }
Name the windows builders for apache gump
CREATE TABLE table_22903426_1 (windows_builders VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT windows_builders FROM table_22903426_1 WHERE name = \"Apache Gump\"" }
Name the number of scm system for nant, visual studio
CREATE TABLE table_22903426_1 (scm_system VARCHAR, windows_builders VARCHAR)
{ "SQL_Query": "SELECT COUNT(scm_system) FROM table_22903426_1 WHERE windows_builders = \"NAnt, Visual Studio\"" }
Name the number of other builders for nant, visual studio
CREATE TABLE table_22903426_1 (other_builders VARCHAR, windows_builders VARCHAR)
{ "SQL_Query": "SELECT COUNT(other_builders) FROM table_22903426_1 WHERE windows_builders = \"NAnt, Visual Studio\"" }
What is the minimum for 2nd runner-up?
CREATE TABLE table_2290097_4 (Id VARCHAR)
{ "SQL_Query": "SELECT MIN(2 AS nd_runner_up) FROM table_2290097_4" }
If the original air date is February 4, 2003, what is the episode title?
CREATE TABLE table_228973_9 (title VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT title FROM table_228973_9 WHERE original_air_date = \"February 4, 2003\"" }
If the original air date is April 1, 2003, what number in the series is this episode?
CREATE TABLE table_228973_9 (no_in_series VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT no_in_series FROM table_228973_9 WHERE original_air_date = \"April 1, 2003\"" }
What is the maximum number in the series for the episode directed by Harvey S. Laidman?
CREATE TABLE table_228973_9 (no_in_series INTEGER, directed_by VARCHAR)
{ "SQL_Query": "SELECT MAX(no_in_series) FROM table_228973_9 WHERE directed_by = \"Harvey S. Laidman\"" }