training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_18602462_21 (final__bronze_medal_match VARCHAR, quarterfinals VARCHAR) ###human: When houdet ( fra ) w 6-2, 6-1 is the quarterfinals what is the final/bronze medal match? ###assistant: SELECT final__bronze_medal_match FROM table_18602462_21 WHERE quarterfinals = "Houdet ( FRA ) W 6...
###context:CREATE TABLE table_18602462_21 (round_of_32 VARCHAR, round_of_16 VARCHAR) ###human: When in round of 16 it was did not advance what was it in round of 32? ###assistant: SELECT round_of_32 FROM table_18602462_21 WHERE round_of_16 = "Did not advance"
###context:CREATE TABLE table_18602462_21 (event VARCHAR, final__bronze_medal_match VARCHAR) ###human: When scheffers ( ned ) l 3-6, 1-6 is the final/ bronze medal match what was the event? ###assistant: SELECT event FROM table_18602462_21 WHERE final__bronze_medal_match = "Scheffers ( NED ) L 3-6, 1-6"
###context:CREATE TABLE table_18602462_21 (final__bronze_medal_match VARCHAR, event VARCHAR) ###human: When mixed quad singles is the event what is the final/bronze medal match? ###assistant: SELECT final__bronze_medal_match FROM table_18602462_21 WHERE event = "Mixed Quad Singles"
###context:CREATE TABLE table_18602462_21 (quarterfinals VARCHAR, athlete VARCHAR) ###human: When bas van erp was the athlete what was the quarterfinals? ###assistant: SELECT quarterfinals FROM table_18602462_21 WHERE athlete = "Bas van Erp"
###context:CREATE TABLE table_18602462_22 (semifinals VARCHAR, athlete VARCHAR) ###human: What is the semifinal result for Dorrie Timmermans-Van Hall? ###assistant: SELECT semifinals FROM table_18602462_22 WHERE athlete = "Dorrie Timmermans-Van Hall"
###context:CREATE TABLE table_18602462_22 (round_of_16 VARCHAR, athlete VARCHAR) ###human: What is the round of 16 result for Jiske Griffioen Esther Vergeer? ###assistant: SELECT round_of_16 FROM table_18602462_22 WHERE athlete = "Jiske Griffioen Esther Vergeer"
###context:CREATE TABLE table_18602462_22 (round_of_16 VARCHAR, semifinals VARCHAR) ###human: The semifinal score of vergeer ( ned ) l 0-6, 1-6 follows a round of 16 result of what? ###assistant: SELECT round_of_16 FROM table_18602462_22 WHERE semifinals = "Vergeer ( NED ) L 0-6, 1-6"
###context:CREATE TABLE table_18602462_22 (round_of_32 VARCHAR, round_of_16 VARCHAR) ###human: How many round of 32 results are followed by Polidori ( Ita ) w 6-1, 3-6, 6-3 in the round of 16? ###assistant: SELECT COUNT(round_of_32) FROM table_18602462_22 WHERE round_of_16 = "Polidori ( ITA ) W 6-1, 3-6, 6-3"
###context:CREATE TABLE table_18607260_6 (points INTEGER, team VARCHAR) ###human: Name the maximum points for libertad ###assistant: SELECT MAX(points) FROM table_18607260_6 WHERE team = "Libertad"
###context:CREATE TABLE table_18607260_6 (wins INTEGER, losses VARCHAR) ###human: Name the least wins for 5 losses ###assistant: SELECT MIN(wins) FROM table_18607260_6 WHERE losses = 5
###context:CREATE TABLE table_18607260_6 (draws INTEGER) ###human: Name the most draws ###assistant: SELECT MAX(draws) FROM table_18607260_6
###context:CREATE TABLE table_18607260_6 (played INTEGER) ###human: Name the least played ###assistant: SELECT MIN(played) FROM table_18607260_6
###context:CREATE TABLE table_18618707_1 (geographical_regions VARCHAR, contestant VARCHAR) ###human: When cristina peña garzon is the contestant what is the geographical region? ###assistant: SELECT geographical_regions FROM table_18618707_1 WHERE contestant = "Cristina Peña Garzon"
###context:CREATE TABLE table_18618707_1 (geographical_regions VARCHAR, height VARCHAR) ###human: When 1.79 is the height what is the geographical region? ###assistant: SELECT geographical_regions FROM table_18618707_1 WHERE height = "1.79"
###context:CREATE TABLE table_18618707_1 (contestant VARCHAR, height VARCHAR) ###human: When 1.67 is the height how many contestants are there? ###assistant: SELECT COUNT(contestant) FROM table_18618707_1 WHERE height = "1.67"
###context:CREATE TABLE table_18618707_1 (contestant VARCHAR, height VARCHAR, geographical_regions VARCHAR) ###human: When el cibao is the geographical region and the height is 1.80 who is the contestant? ###assistant: SELECT contestant FROM table_18618707_1 WHERE height = "1.80" AND geographical_regions = "El ...
###context:CREATE TABLE table_18618707_1 (height VARCHAR, hometown VARCHAR) ###human: When toronto is the hometown how many height measurements are there? ###assistant: SELECT COUNT(height) FROM table_18618707_1 WHERE hometown = "Toronto"
###context:CREATE TABLE table_18618672_2 (year VARCHAR) ###human: What is the 3rd place team for the year of 1955? ###assistant: SELECT 3 AS rd_place_team FROM table_18618672_2 WHERE year = 1955
###context:CREATE TABLE table_186462_1 (sanskrit VARCHAR, western_name VARCHAR) ###human: When Sagittarius is the wester name what is the sanskrit gloss? ###assistant: SELECT sanskrit AS gloss FROM table_186462_1 WHERE western_name = "Sagittarius"
###context:CREATE TABLE table_186462_1 (western_name VARCHAR, sanskrit VARCHAR) ###human: When धनुष is the sankrit how many western names are there? ###assistant: SELECT COUNT(western_name) FROM table_186462_1 WHERE sanskrit = "धनुष"
###context:CREATE TABLE table_18638067_1 (actor_actress VARCHAR, film_title_used_in_nomination VARCHAR) ###human: In the film Mrs. Miniver, what is the actresses name? ###assistant: SELECT actor_actress FROM table_18638067_1 WHERE film_title_used_in_nomination = "Mrs. Miniver"
###context:CREATE TABLE table_18638067_1 (year__ceremony_ VARCHAR, actor_actress VARCHAR, category VARCHAR) ###human: What year was Teresa Wright nominated best supporting actress? ###assistant: SELECT year__ceremony_ FROM table_18638067_1 WHERE actor_actress = "Teresa Wright" AND category = "Best Supporting Ac...
###context:CREATE TABLE table_18638067_1 (category VARCHAR, film_title_used_in_nomination VARCHAR) ###human: What category was the movie Working Girl nominated? ###assistant: SELECT category FROM table_18638067_1 WHERE film_title_used_in_nomination = "Working Girl"
###context:CREATE TABLE table_18638067_1 (actor_actress VARCHAR, film_title_used_in_nomination VARCHAR, category VARCHAR) ###human: Who was nominated for best supporting actor in the movie Going My Way? ###assistant: SELECT actor_actress FROM table_18638067_1 WHERE film_title_used_in_nomination = "Going My Way"...
###context:CREATE TABLE table_18646432_1 (series__number VARCHAR, original_air_date VARCHAR) ###human: Name the series number that aired on november 11, 1996 ###assistant: SELECT series__number FROM table_18646432_1 WHERE original_air_date = "November 11, 1996"
###context:CREATE TABLE table_18646432_4 (written_by VARCHAR, original_air_date VARCHAR) ###human: Who wrote the episode originally aired on September 29, 1999? ###assistant: SELECT written_by FROM table_18646432_4 WHERE original_air_date = "September 29, 1999"
###context:CREATE TABLE table_18646432_4 (title VARCHAR, original_air_date VARCHAR) ###human: What is the name of the episode originally aired on September 29, 1999? ###assistant: SELECT title FROM table_18646432_4 WHERE original_air_date = "September 29, 1999"
###context:CREATE TABLE table_18662026_1 (horizontal_bar VARCHAR, rings VARCHAR) ###human: If the rings is 58.975, what is the number for the horizontal bar? ###assistant: SELECT horizontal_bar FROM table_18662026_1 WHERE rings = "58.975"
###context:CREATE TABLE table_18662026_1 (position VARCHAR, country VARCHAR) ###human: How many positions was the United States in? ###assistant: SELECT COUNT(position) FROM table_18662026_1 WHERE country = "United States"
###context:CREATE TABLE table_18662026_1 (parallel_bars VARCHAR, rings VARCHAR) ###human: If the rings are 60.500, what is the parallel bars number? ###assistant: SELECT parallel_bars FROM table_18662026_1 WHERE rings = "60.500"
###context:CREATE TABLE table_18662026_1 (vault VARCHAR, rings VARCHAR) ###human: If the rings number is 60.000, what is the number for the vault? ###assistant: SELECT COUNT(vault) FROM table_18662026_1 WHERE rings = "60.000"
###context:CREATE TABLE table_18662026_1 (floor VARCHAR, parallel_bars VARCHAR) ###human: If the parallel bars numbers is 61.500, what is the total number for the flood? ###assistant: SELECT COUNT(floor) FROM table_18662026_1 WHERE parallel_bars = "61.500"
###context:CREATE TABLE table_18676973_3 (most_recent_date VARCHAR, country VARCHAR) ###human: When united kingdom is the country what is the most recent date? ###assistant: SELECT most_recent_date FROM table_18676973_3 WHERE country = "United Kingdom"
###context:CREATE TABLE table_18676973_3 (combo INTEGER, rank VARCHAR) ###human: When 3 is the rank what is the highest combo? ###assistant: SELECT MAX(combo) FROM table_18676973_3 WHERE rank = "3"
###context:CREATE TABLE table_18676973_3 (most_recent_cyclist VARCHAR, rank VARCHAR) ###human: When 12 is the rank who is the most recent cyclist? ###assistant: SELECT most_recent_cyclist FROM table_18676973_3 WHERE rank = "12"
###context:CREATE TABLE table_18676973_3 (different_holders INTEGER, jerseys VARCHAR) ###human: When 155 is the jersey what is the highest amount of different holders? ###assistant: SELECT MAX(different_holders) FROM table_18676973_3 WHERE jerseys = 155
###context:CREATE TABLE table_1868929_1 (upper_index_kcal__nm_3 VARCHAR, lower_index_mj__nm_3 VARCHAR) ###human: Name the upper index kcal/nm3 for 62.47 ###assistant: SELECT upper_index_kcal__nm_3 FROM table_1868929_1 WHERE lower_index_mj__nm_3 = "62.47"
###context:CREATE TABLE table_1868929_1 (fuel_gas VARCHAR, upper_index_mj__nm_3 VARCHAR) ###human: Name the fuel gas for upper index mj/nm3 for 92.32 ###assistant: SELECT fuel_gas FROM table_1868929_1 WHERE upper_index_mj__nm_3 = "92.32"
###context:CREATE TABLE table_1868929_1 (lower_index_kcal__nm_3 VARCHAR, upper_index_mj__nm_3 VARCHAR) ###human: Name the lower index kcal/ nm3 for 61.32 ###assistant: SELECT lower_index_kcal__nm_3 FROM table_1868929_1 WHERE upper_index_mj__nm_3 = "61.32"
###context:CREATE TABLE table_18686317_1 (qb_rating VARCHAR, comp__percentage VARCHAR) ###human: What is the Quarterback rating of the player who got a comp percentage of 62.0? ###assistant: SELECT qb_rating FROM table_18686317_1 WHERE comp__percentage = "62.0"
###context:CREATE TABLE table_18686317_1 (rank VARCHAR, yardage VARCHAR) ###human: What is the rank of the player who got 58179 in yardage? ###assistant: SELECT rank FROM table_18686317_1 WHERE yardage = 58179
###context:CREATE TABLE table_18686317_1 (leagues VARCHAR, comp__percentage VARCHAR) ###human: In which league would you find the player with a comp percentage of 54.0? ###assistant: SELECT leagues FROM table_18686317_1 WHERE comp__percentage = "54.0"
###context:CREATE TABLE table_18666752_3 (nation VARCHAR, rider VARCHAR) ###human: Which nation is where rider phillip dutton from? ###assistant: SELECT nation FROM table_18666752_3 WHERE rider = "Phillip Dutton"
###context:CREATE TABLE table_18666752_3 (nation VARCHAR, horse VARCHAR) ###human: Which nation is where the horse parkmore ed is? ###assistant: SELECT nation FROM table_18666752_3 WHERE horse = "Parkmore Ed"
###context:CREATE TABLE table_18666752_3 (total_team_penalties VARCHAR, cross_country_penalties VARCHAR) ###human: How many total team penalties are there when cross country penalties is 30.40? ###assistant: SELECT total_team_penalties FROM table_18666752_3 WHERE cross_country_penalties = "30.40"
###context:CREATE TABLE table_18666752_3 (rider VARCHAR, horse VARCHAR) ###human: Who is the rider where the horse is galan de sauvagere? ###assistant: SELECT rider FROM table_18666752_3 WHERE horse = "Galan De Sauvagere"
###context:CREATE TABLE table_18666752_3 (total_penalties VARCHAR, rider VARCHAR) ###human: How many penalties are there when Eric Vigeanel is the rider? ###assistant: SELECT COUNT(total_penalties) FROM table_18666752_3 WHERE rider = "Eric Vigeanel"
###context:CREATE TABLE table_18710512_3 (record_label VARCHAR, single VARCHAR) ###human: What record label corresponds to the single "I can't stay"? ###assistant: SELECT record_label FROM table_18710512_3 WHERE single = "I Can't Stay"
###context:CREATE TABLE table_18710512_3 (format VARCHAR, other_details VARCHAR) ###human: What format for the release that had 2000 copies? ###assistant: SELECT format FROM table_18710512_3 WHERE other_details = "2000 copies"
###context:CREATE TABLE table_18710512_3 (single VARCHAR, date VARCHAR, other_details VARCHAR) ###human: What single(s) released in 2008 and had 4000 copies? ###assistant: SELECT single FROM table_18710512_3 WHERE date = 2008 AND other_details = "4000 copies"
###context:CREATE TABLE table_18710512_3 (other_details VARCHAR, single VARCHAR) ###human: What were the "other details" (number released) for "is my love will follow me"? ###assistant: SELECT other_details FROM table_18710512_3 WHERE single = "My Love Will Follow Me"
###context:CREATE TABLE table_18710512_3 (date VARCHAR, single VARCHAR) ###human: What year was "moped girls" released? ###assistant: SELECT date FROM table_18710512_3 WHERE single = "Moped Girls"
###context:CREATE TABLE table_18703133_1 (losses INTEGER, points VARCHAR) ###human: Name the least amount of losses for 23 points ###assistant: SELECT MIN(losses) FROM table_18703133_1 WHERE points = 23
###context:CREATE TABLE table_18703133_1 (wins INTEGER, team VARCHAR) ###human: Name the most wins for sport colombia ###assistant: SELECT MAX(wins) FROM table_18703133_1 WHERE team = "Sport Colombia"
###context:CREATE TABLE table_18703133_1 (played VARCHAR, losses VARCHAR) ###human: Namr the total number of played for 5 losses ###assistant: SELECT COUNT(played) FROM table_18703133_1 WHERE losses = 5
###context:CREATE TABLE table_18703133_6 (scored INTEGER, position VARCHAR) ###human: What is scored with the position of 6? ###assistant: SELECT MIN(scored) FROM table_18703133_6 WHERE position = 6
###context:CREATE TABLE table_18703133_6 (losses VARCHAR, team VARCHAR) ###human: How many losses are there for team tembetary? ###assistant: SELECT losses FROM table_18703133_6 WHERE team = "Tembetary"
###context:CREATE TABLE table_18703133_6 (wins VARCHAR, points VARCHAR) ###human: How many wins have 24 points? ###assistant: SELECT wins FROM table_18703133_6 WHERE points = 24
###context:CREATE TABLE table_18703133_6 (wins INTEGER) ###human: How many wins? ###assistant: SELECT MAX(wins) FROM table_18703133_6
###context:CREATE TABLE table_18712423_3 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR) ###human: What is the original air date of the episode directed by Ian Barry and written by Philip Dalkin? ###assistant: SELECT original_air_date FROM table_18712423_3 WHERE directed_by = "Ian Barry" AN...
###context:CREATE TABLE table_18712423_3 (series_episode INTEGER, viewers__millions_ VARCHAR) ###human: What is the show episode number of the episode that reached 1.215 millions views? ###assistant: SELECT MIN(series_episode) FROM table_18712423_3 WHERE viewers__millions_ = "1.215"
###context:CREATE TABLE table_18712423_3 (directed_by VARCHAR, written_by VARCHAR) ###human: Who directed the episode written by Matt Ford? ###assistant: SELECT directed_by FROM table_18712423_3 WHERE written_by = "Matt Ford"
###context:CREATE TABLE table_18733480_1 (players_left_after_round_1 VARCHAR, team_1 VARCHAR) ###human: How many times was team 1 the wykeham wonderers? ###assistant: SELECT COUNT(players_left_after_round_1) FROM table_18733480_1 WHERE team_1 = "Wykeham Wonderers"
###context:CREATE TABLE table_18733480_1 (air_date VARCHAR, team_1 VARCHAR) ###human: What is the original air date that had the wykeham wonderers as team 1? ###assistant: SELECT air_date FROM table_18733480_1 WHERE team_1 = "Wykeham Wonderers"
###context:CREATE TABLE table_18733480_1 (team_1 VARCHAR, team_2 VARCHAR) ###human: Who was team 1 when the chalkheads were team 2? ###assistant: SELECT team_1 FROM table_18733480_1 WHERE team_2 = "Chalkheads"
###context:CREATE TABLE table_18734298_1 (title VARCHAR, production_code VARCHAR) ###human: What is the title of the production code 1acx09? ###assistant: SELECT title FROM table_18734298_1 WHERE production_code = "1ACX09"
###context:CREATE TABLE table_18734298_1 (no_in_series VARCHAR, directed_by VARCHAR) ###human: How many series were directed by Rob Renzetti? ###assistant: SELECT COUNT(no_in_series) FROM table_18734298_1 WHERE directed_by = "Rob Renzetti"
###context:CREATE TABLE table_18734298_1 (written_by VARCHAR, no_in_series VARCHAR) ###human: Who wrote the series number 14? ###assistant: SELECT written_by FROM table_18734298_1 WHERE no_in_series = 14
###context:CREATE TABLE table_1875157_1 (winnings VARCHAR, starts VARCHAR) ###human: Did this driver have any winnings the season he had 32 starts ###assistant: SELECT COUNT(winnings) FROM table_1875157_1 WHERE starts = 32
###context:CREATE TABLE table_1875157_1 (winnings VARCHAR, position VARCHAR) ###human: How many wins in the season he finished 33rd ###assistant: SELECT winnings FROM table_1875157_1 WHERE position = "33rd"
###context:CREATE TABLE table_1875157_1 (top_10 INTEGER) ###human: What is the lowest number of top 10 finishes ###assistant: SELECT MIN(top_10) FROM table_1875157_1
###context:CREATE TABLE table_1875157_1 (poles INTEGER, year VARCHAR) ###human: How many poles in the year 2000 ###assistant: SELECT MAX(poles) FROM table_1875157_1 WHERE year = 2000
###context:CREATE TABLE table_1875157_2 (avg_finish VARCHAR, winnings VARCHAR) ###human: What is the average finish for winnings of $1,400? ###assistant: SELECT avg_finish FROM table_1875157_2 WHERE winnings = "$1,400"
###context:CREATE TABLE table_1875157_2 (starts INTEGER, avg_finish VARCHAR) ###human: What is the maximum starts that result in an average finish of 16.5? ###assistant: SELECT MAX(starts) FROM table_1875157_2 WHERE avg_finish = "16.5"
###context:CREATE TABLE table_1875157_2 (starts INTEGER, winnings VARCHAR) ###human: How many starts were there when the winnings are $690,321? ###assistant: SELECT MIN(starts) FROM table_1875157_2 WHERE winnings = "$690,321"
###context:CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, safari VARCHAR) ###human: If Safari is 3.76%, what is the other Mozilla amount? ###assistant: SELECT other_mozilla FROM table_1876262_10 WHERE safari = "3.76%"
###context:CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, firefox VARCHAR) ###human: If Firefox is 30.45%, what is the other Mozilla amount? ###assistant: SELECT other_mozilla FROM table_1876262_10 WHERE firefox = "30.45%"
###context:CREATE TABLE table_1876262_10 (safari VARCHAR, internet_explorer VARCHAR) ###human: If Internet Explorer is 47.22%, what is the Safari total? ###assistant: SELECT safari FROM table_1876262_10 WHERE internet_explorer = "47.22%"
###context:CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, period VARCHAR) ###human: For period September 2009, what is the other Mozilla total number? ###assistant: SELECT COUNT(other_mozilla) FROM table_1876262_10 WHERE period = "September 2009"
###context:CREATE TABLE table_1876825_2 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR) ###human: Name the total number of production code by david richardson and todd holland ###assistant: SELECT COUNT(production_code) FROM table_1876825_2 WHERE written_by = "David Richardson" AND directed_b...
###context:CREATE TABLE table_1876825_2 (no_in_series VARCHAR, original_air_date VARCHAR) ###human: Name the total number of series for march 19, 2000 ###assistant: SELECT COUNT(no_in_series) FROM table_1876825_2 WHERE original_air_date = "March 19, 2000"
###context:CREATE TABLE table_1876825_3 (no_in_series VARCHAR, original_air_date VARCHAR) ###human: What episode number in the series originally aired on February 25, 2001? ###assistant: SELECT no_in_series FROM table_1876825_3 WHERE original_air_date = "February 25, 2001"
###context:CREATE TABLE table_1876825_3 (title VARCHAR, production_code VARCHAR) ###human: What is the name of the episode with the production code of 06-00-218? ###assistant: SELECT title FROM table_1876825_3 WHERE production_code = "06-00-218"
###context:CREATE TABLE table_1876825_3 (production_code VARCHAR, no_in_series VARCHAR) ###human: What is the production code for episode 26 in the series? ###assistant: SELECT production_code FROM table_1876825_3 WHERE no_in_series = 26
###context:CREATE TABLE table_1876825_3 (production_code VARCHAR, no_in_season VARCHAR) ###human: What is the production code for episode 6 in the season? ###assistant: SELECT production_code FROM table_1876825_3 WHERE no_in_season = 6
###context:CREATE TABLE table_1876825_8 (title VARCHAR, no_in_season VARCHAR) ###human: what is the title no in season 2? ###assistant: SELECT title FROM table_1876825_8 WHERE no_in_season = 2
###context:CREATE TABLE table_18788823_5 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) ###human: What date did Micky Adams vacate his position? ###assistant: SELECT date_of_vacancy FROM table_18788823_5 WHERE outgoing_manager = "Micky Adams"
###context:CREATE TABLE table_18788823_5 (position_in_table VARCHAR, date_of_vacancy VARCHAR) ###human: Which vacancy happened on 4 November 2008? ###assistant: SELECT position_in_table FROM table_18788823_5 WHERE date_of_vacancy = "4 November 2008"
###context:CREATE TABLE table_18788823_5 (position_in_table VARCHAR, outgoing_manager VARCHAR) ###human: How many times did Keith Downing depart a position? ###assistant: SELECT COUNT(position_in_table) FROM table_18788823_5 WHERE outgoing_manager = "Keith Downing"
###context:CREATE TABLE table_18788823_5 (team VARCHAR, date_of_appointment VARCHAR) ###human: Which team appointed a person on 23 December 2008? ###assistant: SELECT team FROM table_18788823_5 WHERE date_of_appointment = "23 December 2008"
###context:CREATE TABLE table_18788823_5 (date_of_appointment VARCHAR, team VARCHAR) ###human: What date did the Milton Keynes Dons appoint? ###assistant: SELECT date_of_appointment FROM table_18788823_5 WHERE team = "Milton Keynes Dons"
###context:CREATE TABLE table_18788823_5 (position_in_table VARCHAR, date_of_vacancy VARCHAR) ###human: Which vacancy occurred on 16 February 2009? ###assistant: SELECT position_in_table FROM table_18788823_5 WHERE date_of_vacancy = "16 February 2009"
###context:CREATE TABLE table_1876825_5 (title VARCHAR, production_code VARCHAR) ###human: What is title of episode 06-02-407? ###assistant: SELECT title FROM table_1876825_5 WHERE production_code = "06-02-407"
###context:CREATE TABLE table_1876825_5 (title VARCHAR, production_code VARCHAR) ###human: What is title of episode 06-02-406? ###assistant: SELECT title FROM table_1876825_5 WHERE production_code = "06-02-406"
###context:CREATE TABLE table_1876825_5 (title VARCHAR, original_air_date VARCHAR) ###human: What is title of episode aired on March 2, 2003? ###assistant: SELECT title FROM table_1876825_5 WHERE original_air_date = "March 2, 2003"
###context:CREATE TABLE table_1876825_5 (written_by VARCHAR, no_in_series VARCHAR) ###human: Who wrote episode 74? ###assistant: SELECT written_by FROM table_1876825_5 WHERE no_in_series = 74
###context:CREATE TABLE table_18784280_3 (position_in_table VARCHAR, team VARCHAR) ###human: Which position in the table is the team watford? ###assistant: SELECT position_in_table FROM table_18784280_3 WHERE team = "Watford"
###context:CREATE TABLE table_1876825_7 (no_in_series VARCHAR, production_code VARCHAR) ###human: Name the number of number in series for production code of 06-04-621 ###assistant: SELECT COUNT(no_in_series) FROM table_1876825_7 WHERE production_code = "06-04-621"
###context:CREATE TABLE table_1876825_7 (written_by VARCHAR, original_air_date VARCHAR) ###human: Name the total number of written by for original air date for may 8, 2005 ###assistant: SELECT COUNT(written_by) FROM table_1876825_7 WHERE original_air_date = "May 8, 2005"