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