question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Name the athlete for 3
CREATE TABLE table_21276428_21 (athlete VARCHAR, place VARCHAR)
SELECT athlete FROM table_21276428_21 WHERE place = 3
### Context: CREATE TABLE table_21276428_21 (athlete VARCHAR, place VARCHAR) ### Question: Name the athlete for 3 ### Answer: SELECT athlete FROM table_21276428_21 WHERE place = 3
Name the result for round 13
CREATE TABLE table_21269143_1 (result VARCHAR, round VARCHAR)
SELECT result FROM table_21269143_1 WHERE round = "13"
### Context: CREATE TABLE table_21269143_1 (result VARCHAR, round VARCHAR) ### Question: Name the result for round 13 ### Answer: SELECT result FROM table_21269143_1 WHERE round = "13"
Name the attendance for loss result and salford city reds
CREATE TABLE table_21269143_1 (attendance VARCHAR, result VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_21269143_1 WHERE result = "Loss" AND opponent = "Salford City Reds"
### Context: CREATE TABLE table_21269143_1 (attendance VARCHAR, result VARCHAR, opponent VARCHAR) ### Question: Name the attendance for loss result and salford city reds ### Answer: SELECT attendance FROM table_21269143_1 WHERE result = "Loss" AND opponent = "Salford City Reds"
Name the total number of date for round 26
CREATE TABLE table_21269143_1 (date VARCHAR, round VARCHAR)
SELECT COUNT(date) FROM table_21269143_1 WHERE round = "26"
### Context: CREATE TABLE table_21269143_1 (date VARCHAR, round VARCHAR) ### Question: Name the total number of date for round 26 ### Answer: SELECT COUNT(date) FROM table_21269143_1 WHERE round = "26"
Name the attendace for 23 round
CREATE TABLE table_21269143_1 (attendance VARCHAR, round VARCHAR)
SELECT attendance FROM table_21269143_1 WHERE round = "23"
### Context: CREATE TABLE table_21269143_1 (attendance VARCHAR, round VARCHAR) ### Question: Name the attendace for 23 round ### Answer: SELECT attendance FROM table_21269143_1 WHERE round = "23"
Name the total number of opponets for 05/09/2009
CREATE TABLE table_21269143_1 (opponent VARCHAR, date VARCHAR)
SELECT COUNT(opponent) FROM table_21269143_1 WHERE date = "05/09/2009"
### Context: CREATE TABLE table_21269143_1 (opponent VARCHAR, date VARCHAR) ### Question: Name the total number of opponets for 05/09/2009 ### Answer: SELECT COUNT(opponent) FROM table_21269143_1 WHERE date = "05/09/2009"
What is the only city name with a population density of 200?
CREATE TABLE table_21284653_1 (name VARCHAR, population_density VARCHAR)
SELECT name FROM table_21284653_1 WHERE population_density = "200"
### Context: CREATE TABLE table_21284653_1 (name VARCHAR, population_density VARCHAR) ### Question: What is the only city name with a population density of 200? ### Answer: SELECT name FROM table_21284653_1 WHERE population_density = "200"
What is the census division for the name Stratford?
CREATE TABLE table_21284653_1 (census_division VARCHAR, name VARCHAR)
SELECT census_division FROM table_21284653_1 WHERE name = "Stratford"
### Context: CREATE TABLE table_21284653_1 (census_division VARCHAR, name VARCHAR) ### Question: What is the census division for the name Stratford? ### Answer: SELECT census_division FROM table_21284653_1 WHERE name = "Stratford"
What is the change (%) when the area size (km2) is 247.21?
CREATE TABLE table_21284653_1 (change___percentage_ VARCHAR, area__km²_ VARCHAR)
SELECT change___percentage_ FROM table_21284653_1 WHERE area__km²_ = "247.21"
### Context: CREATE TABLE table_21284653_1 (change___percentage_ VARCHAR, area__km²_ VARCHAR) ### Question: What is the change (%) when the area size (km2) is 247.21? ### Answer: SELECT change___percentage_ FROM table_21284653_1 WHERE area__km²_ = "247.21"
What is the municipal status where the population density is 895.5?
CREATE TABLE table_21284653_1 (municipal_status VARCHAR, population_density VARCHAR)
SELECT municipal_status FROM table_21284653_1 WHERE population_density = "895.5"
### Context: CREATE TABLE table_21284653_1 (municipal_status VARCHAR, population_density VARCHAR) ### Question: What is the municipal status where the population density is 895.5? ### Answer: SELECT municipal_status FROM table_21284653_1 WHERE population_density = "895.5"
What is the census division for the city named Kenora?
CREATE TABLE table_21284653_1 (census_division VARCHAR, name VARCHAR)
SELECT census_division FROM table_21284653_1 WHERE name = "Kenora"
### Context: CREATE TABLE table_21284653_1 (census_division VARCHAR, name VARCHAR) ### Question: What is the census division for the city named Kenora? ### Answer: SELECT census_division FROM table_21284653_1 WHERE name = "Kenora"
If there are 18 villages, what is the minimum area ?
CREATE TABLE table_21302_1 (area___ha__ INTEGER, no_of_villages VARCHAR)
SELECT MIN(area___ha__) FROM table_21302_1 WHERE no_of_villages = 18
### Context: CREATE TABLE table_21302_1 (area___ha__ INTEGER, no_of_villages VARCHAR) ### Question: If there are 18 villages, what is the minimum area ? ### Answer: SELECT MIN(area___ha__) FROM table_21302_1 WHERE no_of_villages = 18
With the population in 2005 of 572, what is the former name?
CREATE TABLE table_21302_1 (former_name VARCHAR, population__2005_ VARCHAR)
SELECT former_name FROM table_21302_1 WHERE population__2005_ = 572
### Context: CREATE TABLE table_21302_1 (former_name VARCHAR, population__2005_ VARCHAR) ### Question: With the population in 2005 of 572, what is the former name? ### Answer: SELECT former_name FROM table_21302_1 WHERE population__2005_ = 572
How many villages have a density persons/ha of 5.5?
CREATE TABLE table_21302_1 (no_of_villages VARCHAR, density_persons___ha VARCHAR)
SELECT COUNT(no_of_villages) FROM table_21302_1 WHERE density_persons___ha = "5.5"
### Context: CREATE TABLE table_21302_1 (no_of_villages VARCHAR, density_persons___ha VARCHAR) ### Question: How many villages have a density persons/ha of 5.5? ### Answer: SELECT COUNT(no_of_villages) FROM table_21302_1 WHERE density_persons___ha = "5.5"
What were the scores for matches with irving wright hazel hotchkiss wightman?
CREATE TABLE table_2127933_3 (score VARCHAR, opponents VARCHAR)
SELECT score FROM table_2127933_3 WHERE opponents = "Irving Wright Hazel Hotchkiss Wightman"
### Context: CREATE TABLE table_2127933_3 (score VARCHAR, opponents VARCHAR) ### Question: What were the scores for matches with irving wright hazel hotchkiss wightman? ### Answer: SELECT score FROM table_2127933_3 WHERE opponents = "Irving Wright Hazel Hotchkiss Wightman"
How many years had scores of 10–12, 6–1, 6–3?
CREATE TABLE table_2127933_3 (year VARCHAR, score VARCHAR)
SELECT COUNT(year) FROM table_2127933_3 WHERE score = "10–12, 6–1, 6–3"
### Context: CREATE TABLE table_2127933_3 (year VARCHAR, score VARCHAR) ### Question: How many years had scores of 10–12, 6–1, 6–3? ### Answer: SELECT COUNT(year) FROM table_2127933_3 WHERE score = "10–12, 6–1, 6–3"
Who were the partners during times that harry johnson hazel hotchkiss wightman was the opponent?
CREATE TABLE table_2127933_3 (partner VARCHAR, opponents VARCHAR)
SELECT partner FROM table_2127933_3 WHERE opponents = "Harry Johnson Hazel Hotchkiss Wightman"
### Context: CREATE TABLE table_2127933_3 (partner VARCHAR, opponents VARCHAR) ### Question: Who were the partners during times that harry johnson hazel hotchkiss wightman was the opponent? ### Answer: SELECT partner FROM table_2127933_3 WHERE opponents = "Harry Johnson Hazel Hotchkiss Wightman"
What were the outcomes of matches with bill tilden florence ballin as opponents?
CREATE TABLE table_2127933_3 (outcome VARCHAR, opponents VARCHAR)
SELECT outcome FROM table_2127933_3 WHERE opponents = "Bill Tilden Florence Ballin"
### Context: CREATE TABLE table_2127933_3 (outcome VARCHAR, opponents VARCHAR) ### Question: What were the outcomes of matches with bill tilden florence ballin as opponents? ### Answer: SELECT outcome FROM table_2127933_3 WHERE opponents = "Bill Tilden Florence Ballin"
What is the earliest year?
CREATE TABLE table_2127933_3 (year INTEGER)
SELECT MIN(year) FROM table_2127933_3
### Context: CREATE TABLE table_2127933_3 (year INTEGER) ### Question: What is the earliest year? ### Answer: SELECT MIN(year) FROM table_2127933_3
What was the survivor count for the episode directed by Gwyneth Horder-Payton?
CREATE TABLE table_21304131_2 (survivor_count VARCHAR, directed_by VARCHAR)
SELECT survivor_count FROM table_21304131_2 WHERE directed_by = "Gwyneth Horder-Payton"
### Context: CREATE TABLE table_21304131_2 (survivor_count VARCHAR, directed_by VARCHAR) ### Question: What was the survivor count for the episode directed by Gwyneth Horder-Payton? ### Answer: SELECT survivor_count FROM table_21304131_2 WHERE directed_by = "Gwyneth Horder-Payton"
When did series number 65 originally air?
CREATE TABLE table_21304131_2 (original_air_date VARCHAR, no_in_series VARCHAR)
SELECT original_air_date FROM table_21304131_2 WHERE no_in_series = 65
### Context: CREATE TABLE table_21304131_2 (original_air_date VARCHAR, no_in_series VARCHAR) ### Question: When did series number 65 originally air? ### Answer: SELECT original_air_date FROM table_21304131_2 WHERE no_in_series = 65
What is the production code of the episode directed by David Solomon?
CREATE TABLE table_21304155_1 (production_code VARCHAR, directed_by VARCHAR)
SELECT production_code FROM table_21304155_1 WHERE directed_by = "David Solomon"
### Context: CREATE TABLE table_21304155_1 (production_code VARCHAR, directed_by VARCHAR) ### Question: What is the production code of the episode directed by David Solomon? ### Answer: SELECT production_code FROM table_21304155_1 WHERE directed_by = "David Solomon"
Who wrote the episode with the production code of BN103?
CREATE TABLE table_21304155_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_21304155_1 WHERE production_code = "BN103"
### Context: CREATE TABLE table_21304155_1 (written_by VARCHAR, production_code VARCHAR) ### Question: Who wrote the episode with the production code of BN103? ### Answer: SELECT written_by FROM table_21304155_1 WHERE production_code = "BN103"
What was the original air date of the episode that had 4.08 million U.S. viewers?
CREATE TABLE table_21304155_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT original_air_date FROM table_21304155_1 WHERE us_viewers__millions_ = "4.08"
### Context: CREATE TABLE table_21304155_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What was the original air date of the episode that had 4.08 million U.S. viewers? ### Answer: SELECT original_air_date FROM table_21304155_1 WHERE us_viewers__millions_ = "4.08"
List all the locations where net capacity is 950?
CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_...
SELECT location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__tabl...
### Context: CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kost...
List all the locations with a RBMK-1000 reactor.
CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_...
SELECT location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__tabl...
### Context: CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kost...
What is the gross capacity where the net capacity is 1380?
CREATE TABLE table_213088_1 (gross_capacity__mw_ INTEGER, net_capacity__mw_ VARCHAR)
SELECT MIN(gross_capacity__mw_) FROM table_213088_1 WHERE net_capacity__mw_ = 1380
### Context: CREATE TABLE table_213088_1 (gross_capacity__mw_ INTEGER, net_capacity__mw_ VARCHAR) ### Question: What is the gross capacity where the net capacity is 1380? ### Answer: SELECT MIN(gross_capacity__mw_) FROM table_213088_1 WHERE net_capacity__mw_ = 1380
when was the premiere when a 3.3 millions of North American watched the episode whose writer was Rob Wright?
CREATE TABLE table_21313498_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_21313498_1 WHERE us_viewers__millions_ = "3.3" AND written_by = "Rob Wright"
### Context: CREATE TABLE table_21313498_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR, written_by VARCHAR) ### Question: when was the premiere when a 3.3 millions of North American watched the episode whose writer was Rob Wright? ### Answer: SELECT original_air_date FROM table_21313498_1 WHERE us_viewers...
what is the name of the episode which the production code is 62015-08-162
CREATE TABLE table_21313498_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_21313498_1 WHERE production_code = "62015-08-162"
### Context: CREATE TABLE table_21313498_1 (title VARCHAR, production_code VARCHAR) ### Question: what is the name of the episode which the production code is 62015-08-162 ### Answer: SELECT title FROM table_21313498_1 WHERE production_code = "62015-08-162"
in the number of episode in season is 11, who was the writer?
CREATE TABLE table_21313498_1 (written_by VARCHAR, no_in_season VARCHAR)
SELECT written_by FROM table_21313498_1 WHERE no_in_season = 11
### Context: CREATE TABLE table_21313498_1 (written_by VARCHAR, no_in_season VARCHAR) ### Question: in the number of episode in season is 11, who was the writer? ### Answer: SELECT written_by FROM table_21313498_1 WHERE no_in_season = 11
How many episodes had the us viewers (millions) figure of 5.0?
CREATE TABLE table_21312959_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(no_in_season) FROM table_21312959_1 WHERE us_viewers__millions_ = "5.0"
### Context: CREATE TABLE table_21312959_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many episodes had the us viewers (millions) figure of 5.0? ### Answer: SELECT COUNT(no_in_season) FROM table_21312959_1 WHERE us_viewers__millions_ = "5.0"
Who are the writers for the episode number in series 129?
CREATE TABLE table_21312959_1 (written_by VARCHAR, no_in_series VARCHAR)
SELECT written_by FROM table_21312959_1 WHERE no_in_series = 129
### Context: CREATE TABLE table_21312959_1 (written_by VARCHAR, no_in_series VARCHAR) ### Question: Who are the writers for the episode number in series 129? ### Answer: SELECT written_by FROM table_21312959_1 WHERE no_in_series = 129
What is the latest episode in the season directed by Chris Long?
CREATE TABLE table_21312845_1 (no_in_season INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_season) FROM table_21312845_1 WHERE directed_by = "Chris Long"
### Context: CREATE TABLE table_21312845_1 (no_in_season INTEGER, directed_by VARCHAR) ### Question: What is the latest episode in the season directed by Chris Long? ### Answer: SELECT MAX(no_in_season) FROM table_21312845_1 WHERE directed_by = "Chris Long"
Who wrote the episodes directed by David Straiton?
CREATE TABLE table_21312845_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_21312845_1 WHERE directed_by = "David Straiton"
### Context: CREATE TABLE table_21312845_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: Who wrote the episodes directed by David Straiton? ### Answer: SELECT written_by FROM table_21312845_1 WHERE directed_by = "David Straiton"
Who directed the episode with a production code greater than 4301103.585233785 that was written by Curtis Kheel?
CREATE TABLE table_21312845_1 (directed_by VARCHAR, production_code VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_21312845_1 WHERE production_code > 4301103.585233785 AND written_by = "Curtis Kheel"
### Context: CREATE TABLE table_21312845_1 (directed_by VARCHAR, production_code VARCHAR, written_by VARCHAR) ### Question: Who directed the episode with a production code greater than 4301103.585233785 that was written by Curtis Kheel? ### Answer: SELECT directed_by FROM table_21312845_1 WHERE production_code > 430110...
How many results were there on 19/06/2009?
CREATE TABLE table_21311525_1 (result VARCHAR, date VARCHAR)
SELECT COUNT(result) FROM table_21311525_1 WHERE date = "19/06/2009"
### Context: CREATE TABLE table_21311525_1 (result VARCHAR, date VARCHAR) ### Question: How many results were there on 19/06/2009? ### Answer: SELECT COUNT(result) FROM table_21311525_1 WHERE date = "19/06/2009"
What is the round number for the date 19/06/2009?
CREATE TABLE table_21311525_1 (round VARCHAR, date VARCHAR)
SELECT round FROM table_21311525_1 WHERE date = "19/06/2009"
### Context: CREATE TABLE table_21311525_1 (round VARCHAR, date VARCHAR) ### Question: What is the round number for the date 19/06/2009? ### Answer: SELECT round FROM table_21311525_1 WHERE date = "19/06/2009"
What is the round number for the venue of Stade de la Méditerranée?
CREATE TABLE table_21311525_1 (round VARCHAR, venue VARCHAR)
SELECT round FROM table_21311525_1 WHERE venue = "Stade de la Méditerranée"
### Context: CREATE TABLE table_21311525_1 (round VARCHAR, venue VARCHAR) ### Question: What is the round number for the venue of Stade de la Méditerranée? ### Answer: SELECT round FROM table_21311525_1 WHERE venue = "Stade de la Méditerranée"
What was the score when the date was 17/07/2009?
CREATE TABLE table_21311525_1 (score VARCHAR, date VARCHAR)
SELECT score FROM table_21311525_1 WHERE date = "17/07/2009"
### Context: CREATE TABLE table_21311525_1 (score VARCHAR, date VARCHAR) ### Question: What was the score when the date was 17/07/2009? ### Answer: SELECT score FROM table_21311525_1 WHERE date = "17/07/2009"
What is Marc Parenteau's position?
CREATE TABLE table_21321804_5 (position VARCHAR, player VARCHAR)
SELECT position FROM table_21321804_5 WHERE player = "Marc Parenteau"
### Context: CREATE TABLE table_21321804_5 (position VARCHAR, player VARCHAR) ### Question: What is Marc Parenteau's position? ### Answer: SELECT position FROM table_21321804_5 WHERE player = "Marc Parenteau"
What is the smallest pick number for McGill?
CREATE TABLE table_21321804_5 (pick__number INTEGER, college VARCHAR)
SELECT MIN(pick__number) FROM table_21321804_5 WHERE college = "McGill"
### Context: CREATE TABLE table_21321804_5 (pick__number INTEGER, college VARCHAR) ### Question: What is the smallest pick number for McGill? ### Answer: SELECT MIN(pick__number) FROM table_21321804_5 WHERE college = "McGill"
Derik Fury plays for which college?
CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR)
SELECT college FROM table_21321804_5 WHERE player = "Derik Fury"
### Context: CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR) ### Question: Derik Fury plays for which college? ### Answer: SELECT college FROM table_21321804_5 WHERE player = "Derik Fury"
David Kasouf plays for how many colleges?
CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR)
SELECT COUNT(college) FROM table_21321804_5 WHERE player = "David Kasouf"
### Context: CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR) ### Question: David Kasouf plays for how many colleges? ### Answer: SELECT COUNT(college) FROM table_21321804_5 WHERE player = "David Kasouf"
What position was drafted by the Hamilton Tiger-Cats?
CREATE TABLE table_21321804_5 (position VARCHAR, cfl_team VARCHAR)
SELECT position FROM table_21321804_5 WHERE cfl_team = "Hamilton Tiger-Cats"
### Context: CREATE TABLE table_21321804_5 (position VARCHAR, cfl_team VARCHAR) ### Question: What position was drafted by the Hamilton Tiger-Cats? ### Answer: SELECT position FROM table_21321804_5 WHERE cfl_team = "Hamilton Tiger-Cats"
Who won when Jamie Green had the best lap?
CREATE TABLE table_21321935_2 (winning_driver VARCHAR, fastest_lap VARCHAR)
SELECT winning_driver FROM table_21321935_2 WHERE fastest_lap = "Jamie Green"
### Context: CREATE TABLE table_21321935_2 (winning_driver VARCHAR, fastest_lap VARCHAR) ### Question: Who won when Jamie Green had the best lap? ### Answer: SELECT winning_driver FROM table_21321935_2 WHERE fastest_lap = "Jamie Green"
Who had the fasted lap in motorsport arena oschersleben?
CREATE TABLE table_21321935_2 (fastest_lap VARCHAR, circuit VARCHAR)
SELECT fastest_lap FROM table_21321935_2 WHERE circuit = "Motorsport Arena Oschersleben"
### Context: CREATE TABLE table_21321935_2 (fastest_lap VARCHAR, circuit VARCHAR) ### Question: Who had the fasted lap in motorsport arena oschersleben? ### Answer: SELECT fastest_lap FROM table_21321935_2 WHERE circuit = "Motorsport Arena Oschersleben"
When did Oliver Jarvis have pole position?
CREATE TABLE table_21321935_2 (date VARCHAR, pole_position VARCHAR)
SELECT date FROM table_21321935_2 WHERE pole_position = "Oliver Jarvis"
### Context: CREATE TABLE table_21321935_2 (date VARCHAR, pole_position VARCHAR) ### Question: When did Oliver Jarvis have pole position? ### Answer: SELECT date FROM table_21321935_2 WHERE pole_position = "Oliver Jarvis"
What college did the player for the Hamilton Tiger-Cats go to?
CREATE TABLE table_21321804_3 (college VARCHAR, cfl_team VARCHAR)
SELECT college FROM table_21321804_3 WHERE cfl_team = "Hamilton Tiger-Cats"
### Context: CREATE TABLE table_21321804_3 (college VARCHAR, cfl_team VARCHAR) ### Question: What college did the player for the Hamilton Tiger-Cats go to? ### Answer: SELECT college FROM table_21321804_3 WHERE cfl_team = "Hamilton Tiger-Cats"
How many players are at the DT position?
CREATE TABLE table_21321804_3 (player VARCHAR, position VARCHAR)
SELECT COUNT(player) FROM table_21321804_3 WHERE position = "DT"
### Context: CREATE TABLE table_21321804_3 (player VARCHAR, position VARCHAR) ### Question: How many players are at the DT position? ### Answer: SELECT COUNT(player) FROM table_21321804_3 WHERE position = "DT"
What team does the player who went to Nebraska play for?
CREATE TABLE table_21321804_3 (cfl_team VARCHAR, college VARCHAR)
SELECT cfl_team FROM table_21321804_3 WHERE college = "Nebraska"
### Context: CREATE TABLE table_21321804_3 (cfl_team VARCHAR, college VARCHAR) ### Question: What team does the player who went to Nebraska play for? ### Answer: SELECT cfl_team FROM table_21321804_3 WHERE college = "Nebraska"
What is the highest number any of the players were picked at?
CREATE TABLE table_21321804_3 (pick__number INTEGER)
SELECT MAX(pick__number) FROM table_21321804_3
### Context: CREATE TABLE table_21321804_3 (pick__number INTEGER) ### Question: What is the highest number any of the players were picked at? ### Answer: SELECT MAX(pick__number) FROM table_21321804_3
Which player plays for the Winnipeg Blue Bombers?
CREATE TABLE table_21321804_3 (player VARCHAR, cfl_team VARCHAR)
SELECT player FROM table_21321804_3 WHERE cfl_team = "Winnipeg Blue Bombers"
### Context: CREATE TABLE table_21321804_3 (player VARCHAR, cfl_team VARCHAR) ### Question: Which player plays for the Winnipeg Blue Bombers? ### Answer: SELECT player FROM table_21321804_3 WHERE cfl_team = "Winnipeg Blue Bombers"
What is the pick # for player wes lysack?
CREATE TABLE table_21321804_1 (pick__number VARCHAR, player VARCHAR)
SELECT pick__number FROM table_21321804_1 WHERE player = "Wes Lysack"
### Context: CREATE TABLE table_21321804_1 (pick__number VARCHAR, player VARCHAR) ### Question: What is the pick # for player wes lysack? ### Answer: SELECT pick__number FROM table_21321804_1 WHERE player = "Wes Lysack"
How many clf teams have a pick # of 5?
CREATE TABLE table_21321804_1 (cfl_team VARCHAR, pick__number VARCHAR)
SELECT COUNT(cfl_team) FROM table_21321804_1 WHERE pick__number = 5
### Context: CREATE TABLE table_21321804_1 (cfl_team VARCHAR, pick__number VARCHAR) ### Question: How many clf teams have a pick # of 5? ### Answer: SELECT COUNT(cfl_team) FROM table_21321804_1 WHERE pick__number = 5
How many total positions are there for utah college?
CREATE TABLE table_21321804_1 (position VARCHAR, college VARCHAR)
SELECT COUNT(position) FROM table_21321804_1 WHERE college = "Utah"
### Context: CREATE TABLE table_21321804_1 (position VARCHAR, college VARCHAR) ### Question: How many total positions are there for utah college? ### Answer: SELECT COUNT(position) FROM table_21321804_1 WHERE college = "Utah"
Which cfl team is manitoba college?
CREATE TABLE table_21321804_1 (cfl_team VARCHAR, college VARCHAR)
SELECT cfl_team FROM table_21321804_1 WHERE college = "Manitoba"
### Context: CREATE TABLE table_21321804_1 (cfl_team VARCHAR, college VARCHAR) ### Question: Which cfl team is manitoba college? ### Answer: SELECT cfl_team FROM table_21321804_1 WHERE college = "Manitoba"
Which position is cfl team edmonton eskimos for weber state college?
CREATE TABLE table_21321804_1 (position VARCHAR, cfl_team VARCHAR, college VARCHAR)
SELECT position FROM table_21321804_1 WHERE cfl_team = "Edmonton Eskimos" AND college = "Weber State"
### Context: CREATE TABLE table_21321804_1 (position VARCHAR, cfl_team VARCHAR, college VARCHAR) ### Question: Which position is cfl team edmonton eskimos for weber state college? ### Answer: SELECT position FROM table_21321804_1 WHERE cfl_team = "Edmonton Eskimos" AND college = "Weber State"
What is the pick # for player wes lysack?
CREATE TABLE table_21321804_1 (pick__number INTEGER, player VARCHAR)
SELECT MAX(pick__number) FROM table_21321804_1 WHERE player = "Wes Lysack"
### Context: CREATE TABLE table_21321804_1 (pick__number INTEGER, player VARCHAR) ### Question: What is the pick # for player wes lysack? ### Answer: SELECT MAX(pick__number) FROM table_21321804_1 WHERE player = "Wes Lysack"
How many stages of the rally took 14:33.9 for the leader to finish?
CREATE TABLE table_21326205_2 (length VARCHAR, time VARCHAR)
SELECT COUNT(length) FROM table_21326205_2 WHERE time = "14:33.9"
### Context: CREATE TABLE table_21326205_2 (length VARCHAR, time VARCHAR) ### Question: How many stages of the rally took 14:33.9 for the leader to finish? ### Answer: SELECT COUNT(length) FROM table_21326205_2 WHERE time = "14:33.9"
In which special stage named Tempo 2 was Sébastien Loeb the leader?
CREATE TABLE table_21326205_2 (stage VARCHAR, rally_leader VARCHAR, name VARCHAR)
SELECT stage FROM table_21326205_2 WHERE rally_leader = "Sébastien Loeb" AND name = "Tempo 2"
### Context: CREATE TABLE table_21326205_2 (stage VARCHAR, rally_leader VARCHAR, name VARCHAR) ### Question: In which special stage named Tempo 2 was Sébastien Loeb the leader? ### Answer: SELECT stage FROM table_21326205_2 WHERE rally_leader = "Sébastien Loeb" AND name = "Tempo 2"
Which ralliers won the stages that were at 18:54 GMT?
CREATE TABLE table_21326205_2 (winner VARCHAR, time__gmt_ VARCHAR)
SELECT winner FROM table_21326205_2 WHERE time__gmt_ = "18:54"
### Context: CREATE TABLE table_21326205_2 (winner VARCHAR, time__gmt_ VARCHAR) ### Question: Which ralliers won the stages that were at 18:54 GMT? ### Answer: SELECT winner FROM table_21326205_2 WHERE time__gmt_ = "18:54"
How many locations have #12 Michigan State as the big ten team?
CREATE TABLE table_21330550_2 (location VARCHAR, big_ten_team VARCHAR)
SELECT COUNT(location) FROM table_21330550_2 WHERE big_ten_team = "#12 Michigan State"
### Context: CREATE TABLE table_21330550_2 (location VARCHAR, big_ten_team VARCHAR) ### Question: How many locations have #12 Michigan State as the big ten team? ### Answer: SELECT COUNT(location) FROM table_21330550_2 WHERE big_ten_team = "#12 Michigan State"
Who is the winner when bigten (2-1) is the challenge leader?
CREATE TABLE table_21330550_2 (winner VARCHAR, challenge_leader VARCHAR)
SELECT winner FROM table_21330550_2 WHERE challenge_leader = "BigTen (2-1)"
### Context: CREATE TABLE table_21330550_2 (winner VARCHAR, challenge_leader VARCHAR) ### Question: Who is the winner when bigten (2-1) is the challenge leader? ### Answer: SELECT winner FROM table_21330550_2 WHERE challenge_leader = "BigTen (2-1)"
Who is the winner in the location of ljvm coliseum • winston-salem, nc?
CREATE TABLE table_21330550_2 (winner VARCHAR, location VARCHAR)
SELECT winner FROM table_21330550_2 WHERE location = "LJVM Coliseum • Winston-Salem, NC"
### Context: CREATE TABLE table_21330550_2 (winner VARCHAR, location VARCHAR) ### Question: Who is the winner in the location of ljvm coliseum • winston-salem, nc? ### Answer: SELECT winner FROM table_21330550_2 WHERE location = "LJVM Coliseum • Winston-Salem, NC"
What time was the acc team #17 wake forest?
CREATE TABLE table_21330550_2 (time VARCHAR, acc_team VARCHAR)
SELECT time FROM table_21330550_2 WHERE acc_team = "#17 Wake Forest"
### Context: CREATE TABLE table_21330550_2 (time VARCHAR, acc_team VARCHAR) ### Question: What time was the acc team #17 wake forest? ### Answer: SELECT time FROM table_21330550_2 WHERE acc_team = "#17 Wake Forest"
Which location has a time of 9:30pm?
CREATE TABLE table_21330550_2 (location VARCHAR, time VARCHAR)
SELECT location FROM table_21330550_2 WHERE time = "9:30PM"
### Context: CREATE TABLE table_21330550_2 (location VARCHAR, time VARCHAR) ### Question: Which location has a time of 9:30pm? ### Answer: SELECT location FROM table_21330550_2 WHERE time = "9:30PM"
How many dates have a big ten team of #10 purdue?
CREATE TABLE table_21330550_2 (date VARCHAR, big_ten_team VARCHAR)
SELECT COUNT(date) FROM table_21330550_2 WHERE big_ten_team = "#10 Purdue"
### Context: CREATE TABLE table_21330550_2 (date VARCHAR, big_ten_team VARCHAR) ### Question: How many dates have a big ten team of #10 purdue? ### Answer: SELECT COUNT(date) FROM table_21330550_2 WHERE big_ten_team = "#10 Purdue"
Name the contestant for villa hermosa
CREATE TABLE table_21346767_3 (contestant VARCHAR, hometown VARCHAR)
SELECT contestant FROM table_21346767_3 WHERE hometown = "Villa Hermosa"
### Context: CREATE TABLE table_21346767_3 (contestant VARCHAR, hometown VARCHAR) ### Question: Name the contestant for villa hermosa ### Answer: SELECT contestant FROM table_21346767_3 WHERE hometown = "Villa Hermosa"
Name the least age for cibao central and santo domingo
CREATE TABLE table_21346767_3 (age INTEGER, geographical_regions VARCHAR, hometown VARCHAR)
SELECT MIN(age) FROM table_21346767_3 WHERE geographical_regions = "Cibao Central" AND hometown = "Santo Domingo"
### Context: CREATE TABLE table_21346767_3 (age INTEGER, geographical_regions VARCHAR, hometown VARCHAR) ### Question: Name the least age for cibao central and santo domingo ### Answer: SELECT MIN(age) FROM table_21346767_3 WHERE geographical_regions = "Cibao Central" AND hometown = "Santo Domingo"
How many different results of the population count in 2001 are there for the census division whose population in 1996 is 880859?
CREATE TABLE table_2134521_1 (pop__2001_ VARCHAR, pop__1996_ VARCHAR)
SELECT COUNT(pop__2001_) FROM table_2134521_1 WHERE pop__1996_ = 880859
### Context: CREATE TABLE table_2134521_1 (pop__2001_ VARCHAR, pop__1996_ VARCHAR) ### Question: How many different results of the population count in 2001 are there for the census division whose population in 1996 is 880859? ### Answer: SELECT COUNT(pop__2001_) FROM table_2134521_1 WHERE pop__1996_ = 880859
How many people lived in the census division with an area of 15767.99 km2 in 1996?
CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km²_ VARCHAR)
SELECT pop__1996_ FROM table_2134521_1 WHERE area__km²_ = "15767.99"
### Context: CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km²_ VARCHAR) ### Question: How many people lived in the census division with an area of 15767.99 km2 in 1996? ### Answer: SELECT pop__1996_ FROM table_2134521_1 WHERE area__km²_ = "15767.99"
What is the largest population count in any of the census divisions in 2006?
CREATE TABLE table_2134521_1 (pop__2006_ INTEGER)
SELECT MAX(pop__2006_) FROM table_2134521_1
### Context: CREATE TABLE table_2134521_1 (pop__2006_ INTEGER) ### Question: What is the largest population count in any of the census divisions in 2006? ### Answer: SELECT MAX(pop__2006_) FROM table_2134521_1
How many people lived in the census division spread out on 9909.31 km2 in 1996?
CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km²_ VARCHAR)
SELECT pop__1996_ FROM table_2134521_1 WHERE area__km²_ = "9909.31"
### Context: CREATE TABLE table_2134521_1 (pop__1996_ VARCHAR, area__km²_ VARCHAR) ### Question: How many people lived in the census division spread out on 9909.31 km2 in 1996? ### Answer: SELECT pop__1996_ FROM table_2134521_1 WHERE area__km²_ = "9909.31"
What is the result of the qf round?
CREATE TABLE table_21350934_2 (result VARCHAR, round VARCHAR)
SELECT result FROM table_21350934_2 WHERE round = "QF"
### Context: CREATE TABLE table_21350934_2 (result VARCHAR, round VARCHAR) ### Question: What is the result of the qf round? ### Answer: SELECT result FROM table_21350934_2 WHERE round = "QF"
Which venue has bradford bulls as the opponent on the date of 06/09/2009?
CREATE TABLE table_21350934_2 (venue VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT venue FROM table_21350934_2 WHERE opponent = "Bradford Bulls" AND date = "06/09/2009"
### Context: CREATE TABLE table_21350934_2 (venue VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: Which venue has bradford bulls as the opponent on the date of 06/09/2009? ### Answer: SELECT venue FROM table_21350934_2 WHERE opponent = "Bradford Bulls" AND date = "06/09/2009"
Who is the opponent when the attendance is n/a?
CREATE TABLE table_21350934_2 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_21350934_2 WHERE attendance = "N/A"
### Context: CREATE TABLE table_21350934_2 (opponent VARCHAR, attendance VARCHAR) ### Question: Who is the opponent when the attendance is n/a? ### Answer: SELECT opponent FROM table_21350934_2 WHERE attendance = "N/A"
What is the venue that has 34-18 as the score?
CREATE TABLE table_21350934_2 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_21350934_2 WHERE score = "34-18"
### Context: CREATE TABLE table_21350934_2 (venue VARCHAR, score VARCHAR) ### Question: What is the venue that has 34-18 as the score? ### Answer: SELECT venue FROM table_21350934_2 WHERE score = "34-18"
How many results have 14,381 as the attendance?
CREATE TABLE table_21350934_2 (result VARCHAR, attendance VARCHAR)
SELECT COUNT(result) FROM table_21350934_2 WHERE attendance = "14,381"
### Context: CREATE TABLE table_21350934_2 (result VARCHAR, attendance VARCHAR) ### Question: How many results have 14,381 as the attendance? ### Answer: SELECT COUNT(result) FROM table_21350934_2 WHERE attendance = "14,381"
How many rounds have 6,150 as attendance?
CREATE TABLE table_21350934_2 (round VARCHAR, attendance VARCHAR)
SELECT round FROM table_21350934_2 WHERE attendance = "6,150"
### Context: CREATE TABLE table_21350934_2 (round VARCHAR, attendance VARCHAR) ### Question: How many rounds have 6,150 as attendance? ### Answer: SELECT round FROM table_21350934_2 WHERE attendance = "6,150"
How many opponents did they play on 17/05/2009?
CREATE TABLE table_21378160_2 (opponent VARCHAR, date VARCHAR)
SELECT COUNT(opponent) FROM table_21378160_2 WHERE date = "17/05/2009"
### Context: CREATE TABLE table_21378160_2 (opponent VARCHAR, date VARCHAR) ### Question: How many opponents did they play on 17/05/2009? ### Answer: SELECT COUNT(opponent) FROM table_21378160_2 WHERE date = "17/05/2009"
What was the score of round 3?
CREATE TABLE table_21378160_2 (score VARCHAR, round VARCHAR)
SELECT score FROM table_21378160_2 WHERE round = "3"
### Context: CREATE TABLE table_21378160_2 (score VARCHAR, round VARCHAR) ### Question: What was the score of round 3? ### Answer: SELECT score FROM table_21378160_2 WHERE round = "3"
Name the artist for 7 points
CREATE TABLE table_21378339_5 (artist VARCHAR, televote_points VARCHAR)
SELECT COUNT(artist) FROM table_21378339_5 WHERE televote_points = 7
### Context: CREATE TABLE table_21378339_5 (artist VARCHAR, televote_points VARCHAR) ### Question: Name the artist for 7 points ### Answer: SELECT COUNT(artist) FROM table_21378339_5 WHERE televote_points = 7
Name the number of artists for panel points being 5
CREATE TABLE table_21378339_5 (artist VARCHAR, panel_points VARCHAR)
SELECT COUNT(artist) FROM table_21378339_5 WHERE panel_points = 5
### Context: CREATE TABLE table_21378339_5 (artist VARCHAR, panel_points VARCHAR) ### Question: Name the number of artists for panel points being 5 ### Answer: SELECT COUNT(artist) FROM table_21378339_5 WHERE panel_points = 5
Name the total number of televote points for cry on my shoulders
CREATE TABLE table_21378339_5 (televote_points VARCHAR, song VARCHAR)
SELECT COUNT(televote_points) FROM table_21378339_5 WHERE song = "Cry on my shoulders"
### Context: CREATE TABLE table_21378339_5 (televote_points VARCHAR, song VARCHAR) ### Question: Name the total number of televote points for cry on my shoulders ### Answer: SELECT COUNT(televote_points) FROM table_21378339_5 WHERE song = "Cry on my shoulders"
Name the score for rebeka dremelj
CREATE TABLE table_21378339_5 (score VARCHAR, artist VARCHAR)
SELECT score FROM table_21378339_5 WHERE artist = "Rebeka Dremelj"
### Context: CREATE TABLE table_21378339_5 (score VARCHAR, artist VARCHAR) ### Question: Name the score for rebeka dremelj ### Answer: SELECT score FROM table_21378339_5 WHERE artist = "Rebeka Dremelj"
Name the artist for 1595 televotes
CREATE TABLE table_21378339_5 (artist VARCHAR, televotes VARCHAR)
SELECT artist FROM table_21378339_5 WHERE televotes = 1595
### Context: CREATE TABLE table_21378339_5 (artist VARCHAR, televotes VARCHAR) ### Question: Name the artist for 1595 televotes ### Answer: SELECT artist FROM table_21378339_5 WHERE televotes = 1595
What was the result of the match on grass in 1955?
CREATE TABLE table_2139023_2 (outcome VARCHAR, surface VARCHAR, year VARCHAR)
SELECT outcome FROM table_2139023_2 WHERE surface = "Grass" AND year = 1955
### Context: CREATE TABLE table_2139023_2 (outcome VARCHAR, surface VARCHAR, year VARCHAR) ### Question: What was the result of the match on grass in 1955? ### Answer: SELECT outcome FROM table_2139023_2 WHERE surface = "Grass" AND year = 1955
What was the result of the Australian Championships?
CREATE TABLE table_2139023_2 (outcome VARCHAR, championship VARCHAR)
SELECT outcome FROM table_2139023_2 WHERE championship = "Australian championships"
### Context: CREATE TABLE table_2139023_2 (outcome VARCHAR, championship VARCHAR) ### Question: What was the result of the Australian Championships? ### Answer: SELECT outcome FROM table_2139023_2 WHERE championship = "Australian championships"
What is the number of external links with a coach named Katie Kansas?
CREATE TABLE table_2140071_13 (external_link VARCHAR, coach VARCHAR)
SELECT COUNT(external_link) FROM table_2140071_13 WHERE coach = "Katie Kansas"
### Context: CREATE TABLE table_2140071_13 (external_link VARCHAR, coach VARCHAR) ### Question: What is the number of external links with a coach named Katie Kansas? ### Answer: SELECT COUNT(external_link) FROM table_2140071_13 WHERE coach = "Katie Kansas"
What is the minimum number of seasons?
CREATE TABLE table_2140071_13 (season INTEGER)
SELECT MIN(season) FROM table_2140071_13
### Context: CREATE TABLE table_2140071_13 (season INTEGER) ### Question: What is the minimum number of seasons? ### Answer: SELECT MIN(season) FROM table_2140071_13
What is the episode summary for episode 5?
CREATE TABLE table_2140071_13 (episode VARCHAR)
SELECT episode AS Summary FROM table_2140071_13 WHERE episode = 5
### Context: CREATE TABLE table_2140071_13 (episode VARCHAR) ### Question: What is the episode summary for episode 5? ### Answer: SELECT episode AS Summary FROM table_2140071_13 WHERE episode = 5
What is the summary for the episode with a coach named Rebecca Star?
CREATE TABLE table_2140071_13 (episode VARCHAR, coach VARCHAR)
SELECT episode AS Summary FROM table_2140071_13 WHERE coach = "Rebecca Star"
### Context: CREATE TABLE table_2140071_13 (episode VARCHAR, coach VARCHAR) ### Question: What is the summary for the episode with a coach named Rebecca Star? ### Answer: SELECT episode AS Summary FROM table_2140071_13 WHERE coach = "Rebecca Star"
Name the episode with maritza reveron
CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR)
SELECT episode FROM table_2140071_10 WHERE coach = "Maritza Reveron"
### Context: CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR) ### Question: Name the episode with maritza reveron ### Answer: SELECT episode FROM table_2140071_10 WHERE coach = "Maritza Reveron"
Name the season for august 16, 2010
CREATE TABLE table_2140071_10 (season VARCHAR, premier_date VARCHAR)
SELECT season FROM table_2140071_10 WHERE premier_date = "August 16, 2010"
### Context: CREATE TABLE table_2140071_10 (season VARCHAR, premier_date VARCHAR) ### Question: Name the season for august 16, 2010 ### Answer: SELECT season FROM table_2140071_10 WHERE premier_date = "August 16, 2010"
Name the number of episode summary for jesse csincsak
CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR)
SELECT COUNT(episode) AS Summary FROM table_2140071_10 WHERE coach = "Jesse Csincsak"
### Context: CREATE TABLE table_2140071_10 (episode VARCHAR, coach VARCHAR) ### Question: Name the number of episode summary for jesse csincsak ### Answer: SELECT COUNT(episode) AS Summary FROM table_2140071_10 WHERE coach = "Jesse Csincsak"
Name the coach for may 20, 2010
CREATE TABLE table_2140071_10 (coach VARCHAR, premier_date VARCHAR)
SELECT coach FROM table_2140071_10 WHERE premier_date = "May 20, 2010"
### Context: CREATE TABLE table_2140071_10 (coach VARCHAR, premier_date VARCHAR) ### Question: Name the coach for may 20, 2010 ### Answer: SELECT coach FROM table_2140071_10 WHERE premier_date = "May 20, 2010"
Name the team for june 20
CREATE TABLE table_2139390_2 (team VARCHAR, date VARCHAR)
SELECT team FROM table_2139390_2 WHERE date = "June 20"
### Context: CREATE TABLE table_2139390_2 (team VARCHAR, date VARCHAR) ### Question: Name the team for june 20 ### Answer: SELECT team FROM table_2139390_2 WHERE date = "June 20"
Name the race time for 2002
CREATE TABLE table_2139390_2 (race_time VARCHAR, year VARCHAR)
SELECT race_time FROM table_2139390_2 WHERE year = 2002
### Context: CREATE TABLE table_2139390_2 (race_time VARCHAR, year VARCHAR) ### Question: Name the race time for 2002 ### Answer: SELECT race_time FROM table_2139390_2 WHERE year = 2002
How many seasons have a premier date of January 6, 2005?
CREATE TABLE table_2140071_5 (season VARCHAR, premier_date VARCHAR)
SELECT COUNT(season) FROM table_2140071_5 WHERE premier_date = "January 6, 2005"
### Context: CREATE TABLE table_2140071_5 (season VARCHAR, premier_date VARCHAR) ### Question: How many seasons have a premier date of January 6, 2005? ### Answer: SELECT COUNT(season) FROM table_2140071_5 WHERE premier_date = "January 6, 2005"
What is the last season?
CREATE TABLE table_2140071_5 (season INTEGER)
SELECT MAX(season) FROM table_2140071_5
### Context: CREATE TABLE table_2140071_5 (season INTEGER) ### Question: What is the last season? ### Answer: SELECT MAX(season) FROM table_2140071_5