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