question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Name the most times contested for montgomeryshire
CREATE TABLE table_24329520_4 (times_contested INTEGER, county VARCHAR)
SELECT MAX(times_contested) FROM table_24329520_4 WHERE county = "Montgomeryshire"
### Context: CREATE TABLE table_24329520_4 (times_contested INTEGER, county VARCHAR) ### Question: Name the most times contested for montgomeryshire ### Answer: SELECT MAX(times_contested) FROM table_24329520_4 WHERE county = "Montgomeryshire"
Name the fate in 1832 for pembrokeshire
CREATE TABLE table_24329520_4 (fate_in_1832 VARCHAR, county VARCHAR)
SELECT fate_in_1832 FROM table_24329520_4 WHERE county = "Pembrokeshire"
### Context: CREATE TABLE table_24329520_4 (fate_in_1832 VARCHAR, county VARCHAR) ### Question: Name the fate in 1832 for pembrokeshire ### Answer: SELECT fate_in_1832 FROM table_24329520_4 WHERE county = "Pembrokeshire"
what is the least number of podiums for a formula BMW Americas series?
CREATE TABLE table_24330803_1 (podiums INTEGER, series VARCHAR)
SELECT MIN(podiums) FROM table_24330803_1 WHERE series = "Formula BMW Americas"
### Context: CREATE TABLE table_24330803_1 (podiums INTEGER, series VARCHAR) ### Question: what is the least number of podiums for a formula BMW Americas series? ### Answer: SELECT MIN(podiums) FROM table_24330803_1 WHERE series = "Formula BMW Americas"
What is the maximum number of wins in the formula 3 euro series?
CREATE TABLE table_24330803_1 (wins INTEGER, series VARCHAR)
SELECT MAX(wins) FROM table_24330803_1 WHERE series = "Formula 3 Euro series"
### Context: CREATE TABLE table_24330803_1 (wins INTEGER, series VARCHAR) ### Question: What is the maximum number of wins in the formula 3 euro series? ### Answer: SELECT MAX(wins) FROM table_24330803_1 WHERE series = "Formula 3 Euro series"
How many positions were given when 30 points were won?
CREATE TABLE table_24330803_1 (position VARCHAR, points VARCHAR)
SELECT COUNT(position) FROM table_24330803_1 WHERE points = "30"
### Context: CREATE TABLE table_24330803_1 (position VARCHAR, points VARCHAR) ### Question: How many positions were given when 30 points were won? ### Answer: SELECT COUNT(position) FROM table_24330803_1 WHERE points = "30"
How many pole positions were there for the 2011 season?
CREATE TABLE table_24330803_1 (poles INTEGER, season VARCHAR)
SELECT MAX(poles) FROM table_24330803_1 WHERE season = 2011
### Context: CREATE TABLE table_24330803_1 (poles INTEGER, season VARCHAR) ### Question: How many pole positions were there for the 2011 season? ### Answer: SELECT MAX(poles) FROM table_24330803_1 WHERE season = 2011
List the tournament that kent state won?
CREATE TABLE table_24348134_3 (conference VARCHAR, tournament_winner VARCHAR)
SELECT conference AS Tournament FROM table_24348134_3 WHERE tournament_winner = "Kent State"
### Context: CREATE TABLE table_24348134_3 (conference VARCHAR, tournament_winner VARCHAR) ### Question: List the tournament that kent state won? ### Answer: SELECT conference AS Tournament FROM table_24348134_3 WHERE tournament_winner = "Kent State"
What team won the regular season when georgia state won the tournament?
CREATE TABLE table_24348134_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR)
SELECT regular_season_winner FROM table_24348134_3 WHERE tournament_winner = "Georgia State"
### Context: CREATE TABLE table_24348134_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR) ### Question: What team won the regular season when georgia state won the tournament? ### Answer: SELECT regular_season_winner FROM table_24348134_3 WHERE tournament_winner = "Georgia State"
In what city did oklahoma win the tournament.
CREATE TABLE table_24348134_3 (tournament_venue__city_ VARCHAR, tournament_winner VARCHAR)
SELECT tournament_venue__city_ FROM table_24348134_3 WHERE tournament_winner = "Oklahoma"
### Context: CREATE TABLE table_24348134_3 (tournament_venue__city_ VARCHAR, tournament_winner VARCHAR) ### Question: In what city did oklahoma win the tournament. ### Answer: SELECT tournament_venue__city_ FROM table_24348134_3 WHERE tournament_winner = "Oklahoma"
List the number of tournament winners when iona , siena & niagara won in the regular season.
CREATE TABLE table_24348134_3 (tournament_winner VARCHAR, regular_season_winner VARCHAR)
SELECT COUNT(tournament_winner) FROM table_24348134_3 WHERE regular_season_winner = "Iona , Siena & Niagara"
### Context: CREATE TABLE table_24348134_3 (tournament_winner VARCHAR, regular_season_winner VARCHAR) ### Question: List the number of tournament winners when iona , siena & niagara won in the regular season. ### Answer: SELECT COUNT(tournament_winner) FROM table_24348134_3 WHERE regular_season_winner = "Iona , Siena &...
Name the real life for eventual outcome is amtrak
CREATE TABLE table_243664_1 (real_life_eventual_outcome VARCHAR, currently¹_part_of VARCHAR)
SELECT real_life_eventual_outcome FROM table_243664_1 WHERE currently¹_part_of = "Amtrak"
### Context: CREATE TABLE table_243664_1 (real_life_eventual_outcome VARCHAR, currently¹_part_of VARCHAR) ### Question: Name the real life for eventual outcome is amtrak ### Answer: SELECT real_life_eventual_outcome FROM table_243664_1 WHERE currently¹_part_of = "Amtrak"
Name the real life years of operation for amtrak
CREATE TABLE table_243664_1 (real_life_years_of_operation VARCHAR, currently¹_part_of VARCHAR)
SELECT real_life_years_of_operation FROM table_243664_1 WHERE currently¹_part_of = "Amtrak"
### Context: CREATE TABLE table_243664_1 (real_life_years_of_operation VARCHAR, currently¹_part_of VARCHAR) ### Question: Name the real life years of operation for amtrak ### Answer: SELECT real_life_years_of_operation FROM table_243664_1 WHERE currently¹_part_of = "Amtrak"
Name the game coast for chicago and north western
CREATE TABLE table_243664_1 (game_cost VARCHAR, railroad VARCHAR)
SELECT game_cost FROM table_243664_1 WHERE railroad = "Chicago and North Western"
### Context: CREATE TABLE table_243664_1 (game_cost VARCHAR, railroad VARCHAR) ### Question: Name the game coast for chicago and north western ### Answer: SELECT game_cost FROM table_243664_1 WHERE railroad = "Chicago and North Western"
Name the game cost for merged with new york central to form penn central
CREATE TABLE table_243664_1 (game_cost VARCHAR, real_life_eventual_outcome VARCHAR)
SELECT game_cost FROM table_243664_1 WHERE real_life_eventual_outcome = "Merged with New York Central to form Penn Central"
### Context: CREATE TABLE table_243664_1 (game_cost VARCHAR, real_life_eventual_outcome VARCHAR) ### Question: Name the game cost for merged with new york central to form penn central ### Answer: SELECT game_cost FROM table_243664_1 WHERE real_life_eventual_outcome = "Merged with New York Central to form Penn Central"
What is the minimum 2007 USD in Kabardino-Balkaria?
CREATE TABLE table_24364690_1 (federal_subjects VARCHAR)
SELECT MIN(2007 AS __usd_) FROM table_24364690_1 WHERE federal_subjects = "Kabardino-Balkaria"
### Context: CREATE TABLE table_24364690_1 (federal_subjects VARCHAR) ### Question: What is the minimum 2007 USD in Kabardino-Balkaria? ### Answer: SELECT MIN(2007 AS __usd_) FROM table_24364690_1 WHERE federal_subjects = "Kabardino-Balkaria"
What is every amount for weight lost if the starting weight is 97.4?
CREATE TABLE table_24370270_10 (weight_lost__kg_ VARCHAR, starting_weight__kg_ VARCHAR)
SELECT weight_lost__kg_ FROM table_24370270_10 WHERE starting_weight__kg_ = "97.4"
### Context: CREATE TABLE table_24370270_10 (weight_lost__kg_ VARCHAR, starting_weight__kg_ VARCHAR) ### Question: What is every amount for weight lost if the starting weight is 97.4? ### Answer: SELECT weight_lost__kg_ FROM table_24370270_10 WHERE starting_weight__kg_ = "97.4"
What is the starting weight if weight lost is 54.6?
CREATE TABLE table_24370270_10 (starting_weight__kg_ VARCHAR, weight_lost__kg_ VARCHAR)
SELECT starting_weight__kg_ FROM table_24370270_10 WHERE weight_lost__kg_ = "54.6"
### Context: CREATE TABLE table_24370270_10 (starting_weight__kg_ VARCHAR, weight_lost__kg_ VARCHAR) ### Question: What is the starting weight if weight lost is 54.6? ### Answer: SELECT starting_weight__kg_ FROM table_24370270_10 WHERE weight_lost__kg_ = "54.6"
What is the final weight for contestant Chris?
CREATE TABLE table_24370270_10 (final_weight__kg_ VARCHAR, contestant VARCHAR)
SELECT final_weight__kg_ FROM table_24370270_10 WHERE contestant = "Chris"
### Context: CREATE TABLE table_24370270_10 (final_weight__kg_ VARCHAR, contestant VARCHAR) ### Question: What is the final weight for contestant Chris? ### Answer: SELECT final_weight__kg_ FROM table_24370270_10 WHERE contestant = "Chris"
How many times did the sounddock series II aux in?
CREATE TABLE table_24384861_1 (aux_in VARCHAR, version VARCHAR)
SELECT COUNT(aux_in) FROM table_24384861_1 WHERE version = "SoundDock series II"
### Context: CREATE TABLE table_24384861_1 (aux_in VARCHAR, version VARCHAR) ### Question: How many times did the sounddock series II aux in? ### Answer: SELECT COUNT(aux_in) FROM table_24384861_1 WHERE version = "SoundDock series II"
Was the sounddock series I v2 iphone certified?
CREATE TABLE table_24384861_1 (iphone_certified VARCHAR, version VARCHAR)
SELECT iphone_certified FROM table_24384861_1 WHERE version = "SoundDock series I v2"
### Context: CREATE TABLE table_24384861_1 (iphone_certified VARCHAR, version VARCHAR) ### Question: Was the sounddock series I v2 iphone certified? ### Answer: SELECT iphone_certified FROM table_24384861_1 WHERE version = "SoundDock series I v2"
How many connections aux in using FIrewire?
CREATE TABLE table_24384861_1 (aux_in VARCHAR, dock_connection VARCHAR)
SELECT COUNT(aux_in) FROM table_24384861_1 WHERE dock_connection = "FireWire"
### Context: CREATE TABLE table_24384861_1 (aux_in VARCHAR, dock_connection VARCHAR) ### Question: How many connections aux in using FIrewire? ### Answer: SELECT COUNT(aux_in) FROM table_24384861_1 WHERE dock_connection = "FireWire"
how many video out connections does the sounddock portable have?
CREATE TABLE table_24384861_1 (video_out VARCHAR, version VARCHAR)
SELECT COUNT(video_out) FROM table_24384861_1 WHERE version = "SoundDock Portable"
### Context: CREATE TABLE table_24384861_1 (video_out VARCHAR, version VARCHAR) ### Question: how many video out connections does the sounddock portable have? ### Answer: SELECT COUNT(video_out) FROM table_24384861_1 WHERE version = "SoundDock Portable"
Does the sounddock series I v2 have dual voltage?
CREATE TABLE table_24384861_1 (dual_voltage VARCHAR, version VARCHAR)
SELECT dual_voltage FROM table_24384861_1 WHERE version = "SoundDock series I v2"
### Context: CREATE TABLE table_24384861_1 (dual_voltage VARCHAR, version VARCHAR) ### Question: Does the sounddock series I v2 have dual voltage? ### Answer: SELECT dual_voltage FROM table_24384861_1 WHERE version = "SoundDock series I v2"
What type of dock connection does the sounddock series III have?
CREATE TABLE table_24384861_1 (dock_connection VARCHAR, version VARCHAR)
SELECT dock_connection FROM table_24384861_1 WHERE version = "SoundDock series III"
### Context: CREATE TABLE table_24384861_1 (dock_connection VARCHAR, version VARCHAR) ### Question: What type of dock connection does the sounddock series III have? ### Answer: SELECT dock_connection FROM table_24384861_1 WHERE version = "SoundDock series III"
Where was the game played that started at 7:00 p.m.?
CREATE TABLE table_24396664_2 (game_site VARCHAR, kickoff VARCHAR)
SELECT game_site FROM table_24396664_2 WHERE kickoff = "7:00 p.m."
### Context: CREATE TABLE table_24396664_2 (game_site VARCHAR, kickoff VARCHAR) ### Question: Where was the game played that started at 7:00 p.m.? ### Answer: SELECT game_site FROM table_24396664_2 WHERE kickoff = "7:00 p.m."
how many varsity teams are in west roxbury, ma?
CREATE TABLE table_2439728_1 (varsity_teams INTEGER, location VARCHAR)
SELECT MAX(varsity_teams) FROM table_2439728_1 WHERE location = "West Roxbury, MA"
### Context: CREATE TABLE table_2439728_1 (varsity_teams INTEGER, location VARCHAR) ### Question: how many varsity teams are in west roxbury, ma? ### Answer: SELECT MAX(varsity_teams) FROM table_2439728_1 WHERE location = "West Roxbury, MA"
what is the mascot of st. paul's school?
CREATE TABLE table_2439728_1 (mascot VARCHAR, school VARCHAR)
SELECT mascot FROM table_2439728_1 WHERE school = "St. Paul's school"
### Context: CREATE TABLE table_2439728_1 (mascot VARCHAR, school VARCHAR) ### Question: what is the mascot of st. paul's school? ### Answer: SELECT mascot FROM table_2439728_1 WHERE school = "St. Paul's school"
where are dragons used as mascots?
CREATE TABLE table_2439728_1 (location VARCHAR, mascot VARCHAR)
SELECT location FROM table_2439728_1 WHERE mascot = "Dragons"
### Context: CREATE TABLE table_2439728_1 (location VARCHAR, mascot VARCHAR) ### Question: where are dragons used as mascots? ### Answer: SELECT location FROM table_2439728_1 WHERE mascot = "Dragons"
when was lawrence academy at groton established?
CREATE TABLE table_2439728_1 (founded INTEGER, school VARCHAR)
SELECT MIN(founded) FROM table_2439728_1 WHERE school = "Lawrence Academy at Groton"
### Context: CREATE TABLE table_2439728_1 (founded INTEGER, school VARCHAR) ### Question: when was lawrence academy at groton established? ### Answer: SELECT MIN(founded) FROM table_2439728_1 WHERE school = "Lawrence Academy at Groton"
name the school located at Milton, ma.
CREATE TABLE table_2439728_1 (school VARCHAR, location VARCHAR)
SELECT school FROM table_2439728_1 WHERE location = "Milton, MA"
### Context: CREATE TABLE table_2439728_1 (school VARCHAR, location VARCHAR) ### Question: name the school located at Milton, ma. ### Answer: SELECT school FROM table_2439728_1 WHERE location = "Milton, MA"
how many places have 17 varsity teams?
CREATE TABLE table_2439728_1 (location VARCHAR, varsity_teams VARCHAR)
SELECT COUNT(location) FROM table_2439728_1 WHERE varsity_teams = 17
### Context: CREATE TABLE table_2439728_1 (location VARCHAR, varsity_teams VARCHAR) ### Question: how many places have 17 varsity teams? ### Answer: SELECT COUNT(location) FROM table_2439728_1 WHERE varsity_teams = 17
Which episode had bbc ranking and canle ranking of n/a?
CREATE TABLE table_24399615_10 (episode_no VARCHAR, bbc_three_weekly_ranking VARCHAR, cable_rank VARCHAR)
SELECT COUNT(episode_no) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = "N/A" AND cable_rank = "N/A"
### Context: CREATE TABLE table_24399615_10 (episode_no VARCHAR, bbc_three_weekly_ranking VARCHAR, cable_rank VARCHAR) ### Question: Which episode had bbc ranking and canle ranking of n/a? ### Answer: SELECT COUNT(episode_no) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = "N/A" AND cable_rank = "N/A"
List the number of bbc rankings with cable rankings of 6.
CREATE TABLE table_24399615_10 (bbc_three_weekly_ranking VARCHAR, cable_rank VARCHAR)
SELECT bbc_three_weekly_ranking FROM table_24399615_10 WHERE cable_rank = "6"
### Context: CREATE TABLE table_24399615_10 (bbc_three_weekly_ranking VARCHAR, cable_rank VARCHAR) ### Question: List the number of bbc rankings with cable rankings of 6. ### Answer: SELECT bbc_three_weekly_ranking FROM table_24399615_10 WHERE cable_rank = "6"
List the number of viewers when the cable rank for Russell Howard's Good New was 5.
CREATE TABLE table_24399615_10 (viewers VARCHAR, cable_rank VARCHAR)
SELECT viewers FROM table_24399615_10 WHERE cable_rank = "5"
### Context: CREATE TABLE table_24399615_10 (viewers VARCHAR, cable_rank VARCHAR) ### Question: List the number of viewers when the cable rank for Russell Howard's Good New was 5. ### Answer: SELECT viewers FROM table_24399615_10 WHERE cable_rank = "5"
How many individuals watched the show that had a bbc ranking of 6?
CREATE TABLE table_24399615_10 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR)
SELECT COUNT(viewers) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = "6"
### Context: CREATE TABLE table_24399615_10 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR) ### Question: How many individuals watched the show that had a bbc ranking of 6? ### Answer: SELECT COUNT(viewers) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = "6"
How many times did episode number 8 air?
CREATE TABLE table_24399615_5 (cable_rank VARCHAR, episode_no VARCHAR)
SELECT COUNT(cable_rank) FROM table_24399615_5 WHERE episode_no = 8
### Context: CREATE TABLE table_24399615_5 (cable_rank VARCHAR, episode_no VARCHAR) ### Question: How many times did episode number 8 air? ### Answer: SELECT COUNT(cable_rank) FROM table_24399615_5 WHERE episode_no = 8
When did episode number 6 air?
CREATE TABLE table_24399615_5 (airdate VARCHAR, episode_no VARCHAR)
SELECT airdate FROM table_24399615_5 WHERE episode_no = 6
### Context: CREATE TABLE table_24399615_5 (airdate VARCHAR, episode_no VARCHAR) ### Question: When did episode number 6 air? ### Answer: SELECT airdate FROM table_24399615_5 WHERE episode_no = 6
How many items are listed under viewers column when the bbd three weekly ranking was 1?
CREATE TABLE table_24399615_4 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR)
SELECT COUNT(viewers) FROM table_24399615_4 WHERE bbc_three_weekly_ranking = "1"
### Context: CREATE TABLE table_24399615_4 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR) ### Question: How many items are listed under viewers column when the bbd three weekly ranking was 1? ### Answer: SELECT COUNT(viewers) FROM table_24399615_4 WHERE bbc_three_weekly_ranking = "1"
What episode number had a cable ranking of 8?
CREATE TABLE table_24399615_4 (episode_no INTEGER, cable_rank VARCHAR)
SELECT MIN(episode_no) FROM table_24399615_4 WHERE cable_rank = "8"
### Context: CREATE TABLE table_24399615_4 (episode_no INTEGER, cable_rank VARCHAR) ### Question: What episode number had a cable ranking of 8? ### Answer: SELECT MIN(episode_no) FROM table_24399615_4 WHERE cable_rank = "8"
What date did the episode air that had n/a for it's bbc three weekly ranking?
CREATE TABLE table_24399615_4 (airdate VARCHAR, bbc_three_weekly_ranking VARCHAR)
SELECT airdate FROM table_24399615_4 WHERE bbc_three_weekly_ranking = "N/A"
### Context: CREATE TABLE table_24399615_4 (airdate VARCHAR, bbc_three_weekly_ranking VARCHAR) ### Question: What date did the episode air that had n/a for it's bbc three weekly ranking? ### Answer: SELECT airdate FROM table_24399615_4 WHERE bbc_three_weekly_ranking = "N/A"
What date did the episode air that had a ranking of 17 for cable?
CREATE TABLE table_24399615_4 (airdate VARCHAR, cable_rank VARCHAR)
SELECT airdate FROM table_24399615_4 WHERE cable_rank = "17"
### Context: CREATE TABLE table_24399615_4 (airdate VARCHAR, cable_rank VARCHAR) ### Question: What date did the episode air that had a ranking of 17 for cable? ### Answer: SELECT airdate FROM table_24399615_4 WHERE cable_rank = "17"
When 3 is the bbc three weekly ranking what is the airdate?
CREATE TABLE table_24399615_8 (airdate VARCHAR, bbc_three_weekly_ranking VARCHAR)
SELECT airdate FROM table_24399615_8 WHERE bbc_three_weekly_ranking = "3"
### Context: CREATE TABLE table_24399615_8 (airdate VARCHAR, bbc_three_weekly_ranking VARCHAR) ### Question: When 3 is the bbc three weekly ranking what is the airdate? ### Answer: SELECT airdate FROM table_24399615_8 WHERE bbc_three_weekly_ranking = "3"
When 656000 is the amount of viewers and n/a is the cable rank what is the airdate?
CREATE TABLE table_24399615_8 (airdate VARCHAR, cable_rank VARCHAR, viewers VARCHAR)
SELECT airdate FROM table_24399615_8 WHERE cable_rank = "N/A" AND viewers = 656000
### Context: CREATE TABLE table_24399615_8 (airdate VARCHAR, cable_rank VARCHAR, viewers VARCHAR) ### Question: When 656000 is the amount of viewers and n/a is the cable rank what is the airdate? ### Answer: SELECT airdate FROM table_24399615_8 WHERE cable_rank = "N/A" AND viewers = 656000
List the states that have entry times of 49years, 29days
CREATE TABLE table_24415627_2 (state_served VARCHAR, time_since_entry VARCHAR)
SELECT state_served FROM table_24415627_2 WHERE time_since_entry = "49years, 29days"
### Context: CREATE TABLE table_24415627_2 (state_served VARCHAR, time_since_entry VARCHAR) ### Question: List the states that have entry times of 49years, 29days ### Answer: SELECT state_served FROM table_24415627_2 WHERE time_since_entry = "49years, 29days"
Of which part does congressman dick clark belong to?
CREATE TABLE table_24415627_2 (party VARCHAR, senator VARCHAR)
SELECT party FROM table_24415627_2 WHERE senator = "Dick Clark"
### Context: CREATE TABLE table_24415627_2 (party VARCHAR, senator VARCHAR) ### Question: Of which part does congressman dick clark belong to? ### Answer: SELECT party FROM table_24415627_2 WHERE senator = "Dick Clark"
On what date did congressman joseph tydings enter take his seat?
CREATE TABLE table_24415627_2 (entered_senate VARCHAR, senator VARCHAR)
SELECT entered_senate FROM table_24415627_2 WHERE senator = "Joseph Tydings"
### Context: CREATE TABLE table_24415627_2 (entered_senate VARCHAR, senator VARCHAR) ### Question: On what date did congressman joseph tydings enter take his seat? ### Answer: SELECT entered_senate FROM table_24415627_2 WHERE senator = "Joseph Tydings"
What are the lowest points when poles were 0 and races were 10?
CREATE TABLE table_24405773_1 (points INTEGER, poles VARCHAR, races VARCHAR)
SELECT MIN(points) FROM table_24405773_1 WHERE poles = 0 AND races = 10
### Context: CREATE TABLE table_24405773_1 (points INTEGER, poles VARCHAR, races VARCHAR) ### Question: What are the lowest points when poles were 0 and races were 10? ### Answer: SELECT MIN(points) FROM table_24405773_1 WHERE poles = 0 AND races = 10
What was the highest number of points when flaps were 0?
CREATE TABLE table_24405773_1 (points INTEGER, flaps VARCHAR)
SELECT MAX(points) FROM table_24405773_1 WHERE flaps = 0
### Context: CREATE TABLE table_24405773_1 (points INTEGER, flaps VARCHAR) ### Question: What was the highest number of points when flaps were 0? ### Answer: SELECT MAX(points) FROM table_24405773_1 WHERE flaps = 0
Who played 20 questions during the issue in which Pamela Horton is on the cover?
CREATE TABLE table_24425491_3 (cover_model VARCHAR)
SELECT 20 AS _questions FROM table_24425491_3 WHERE cover_model = "Pamela Horton"
### Context: CREATE TABLE table_24425491_3 (cover_model VARCHAR) ### Question: Who played 20 questions during the issue in which Pamela Horton is on the cover? ### Answer: SELECT 20 AS _questions FROM table_24425491_3 WHERE cover_model = "Pamela Horton"
When the power kw is 5kw, what is the frequency?
CREATE TABLE table_24418525_1 (frequency VARCHAR, power_kw VARCHAR)
SELECT frequency FROM table_24418525_1 WHERE power_kw = "5kW"
### Context: CREATE TABLE table_24418525_1 (frequency VARCHAR, power_kw VARCHAR) ### Question: When the power kw is 5kw, what is the frequency? ### Answer: SELECT frequency FROM table_24418525_1 WHERE power_kw = "5kW"
when coverage is dumaguete central visayas region, what is the callsign?
CREATE TABLE table_24418525_1 (callsign VARCHAR, coverage VARCHAR)
SELECT callsign FROM table_24418525_1 WHERE coverage = "Dumaguete Central Visayas Region"
### Context: CREATE TABLE table_24418525_1 (callsign VARCHAR, coverage VARCHAR) ### Question: when coverage is dumaguete central visayas region, what is the callsign? ### Answer: SELECT callsign FROM table_24418525_1 WHERE coverage = "Dumaguete Central Visayas Region"
How much power covers dumaguete central visayas region?
CREATE TABLE table_24418525_1 (power_kw VARCHAR, coverage VARCHAR)
SELECT COUNT(power_kw) FROM table_24418525_1 WHERE coverage = "Dumaguete Central Visayas Region"
### Context: CREATE TABLE table_24418525_1 (power_kw VARCHAR, coverage VARCHAR) ### Question: How much power covers dumaguete central visayas region? ### Answer: SELECT COUNT(power_kw) FROM table_24418525_1 WHERE coverage = "Dumaguete Central Visayas Region"
What frequency is mega manila set to?
CREATE TABLE table_24418525_1 (frequency VARCHAR, coverage VARCHAR)
SELECT frequency FROM table_24418525_1 WHERE coverage = "Mega Manila"
### Context: CREATE TABLE table_24418525_1 (frequency VARCHAR, coverage VARCHAR) ### Question: What frequency is mega manila set to? ### Answer: SELECT frequency FROM table_24418525_1 WHERE coverage = "Mega Manila"
What original air date was for the episode with production code of 108?
CREATE TABLE table_24425976_2 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_24425976_2 WHERE production_code = "108"
### Context: CREATE TABLE table_24425976_2 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What original air date was for the episode with production code of 108? ### Answer: SELECT original_air_date FROM table_24425976_2 WHERE production_code = "108"
How many production codes are there for episode 10 in the season?
CREATE TABLE table_24425976_2 (production_code VARCHAR, season VARCHAR)
SELECT COUNT(production_code) FROM table_24425976_2 WHERE season = "10"
### Context: CREATE TABLE table_24425976_2 (production_code VARCHAR, season VARCHAR) ### Question: How many production codes are there for episode 10 in the season? ### Answer: SELECT COUNT(production_code) FROM table_24425976_2 WHERE season = "10"
What date did the episode with code 110 originally air?
CREATE TABLE table_24425976_2 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_24425976_2 WHERE production_code = "110"
### Context: CREATE TABLE table_24425976_2 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What date did the episode with code 110 originally air? ### Answer: SELECT original_air_date FROM table_24425976_2 WHERE production_code = "110"
What is the name of the episode with a production code of 107?
CREATE TABLE table_24425976_2 (episode_title VARCHAR, production_code VARCHAR)
SELECT episode_title FROM table_24425976_2 WHERE production_code = "107"
### Context: CREATE TABLE table_24425976_2 (episode_title VARCHAR, production_code VARCHAR) ### Question: What is the name of the episode with a production code of 107? ### Answer: SELECT episode_title FROM table_24425976_2 WHERE production_code = "107"
How many episodes in the series has a production code of 111?
CREATE TABLE table_24425976_2 (series VARCHAR, production_code VARCHAR)
SELECT COUNT(series) FROM table_24425976_2 WHERE production_code = "111"
### Context: CREATE TABLE table_24425976_2 (series VARCHAR, production_code VARCHAR) ### Question: How many episodes in the series has a production code of 111? ### Answer: SELECT COUNT(series) FROM table_24425976_2 WHERE production_code = "111"
Name the total number of payout for december 28, 2009
CREATE TABLE table_24427210_1 (payout___us VARCHAR, date VARCHAR)
SELECT COUNT(payout___us) AS $__ FROM table_24427210_1 WHERE date = "December 28, 2009"
### Context: CREATE TABLE table_24427210_1 (payout___us VARCHAR, date VARCHAR) ### Question: Name the total number of payout for december 28, 2009 ### Answer: SELECT COUNT(payout___us) AS $__ FROM table_24427210_1 WHERE date = "December 28, 2009"
Name the payout for espn for music city bowl
CREATE TABLE table_24427210_1 (payout___us$__ VARCHAR, tv VARCHAR, bowl_game VARCHAR)
SELECT payout___us$__ FROM table_24427210_1 WHERE tv = "ESPN" AND bowl_game = "Music City Bowl"
### Context: CREATE TABLE table_24427210_1 (payout___us$__ VARCHAR, tv VARCHAR, bowl_game VARCHAR) ### Question: Name the payout for espn for music city bowl ### Answer: SELECT payout___us$__ FROM table_24427210_1 WHERE tv = "ESPN" AND bowl_game = "Music City Bowl"
Name the date for raymond james stadium
CREATE TABLE table_24427210_1 (date VARCHAR, stadium VARCHAR)
SELECT date FROM table_24427210_1 WHERE stadium = "Raymond James stadium"
### Context: CREATE TABLE table_24427210_1 (date VARCHAR, stadium VARCHAR) ### Question: Name the date for raymond james stadium ### Answer: SELECT date FROM table_24427210_1 WHERE stadium = "Raymond James stadium"
What date did episode 4 in the season originally air?
CREATE TABLE table_24425976_7 (original_air_date VARCHAR, season VARCHAR)
SELECT original_air_date FROM table_24425976_7 WHERE season = 4
### Context: CREATE TABLE table_24425976_7 (original_air_date VARCHAR, season VARCHAR) ### Question: What date did episode 4 in the season originally air? ### Answer: SELECT original_air_date FROM table_24425976_7 WHERE season = 4
What date did episode 115 in the series originally air?
CREATE TABLE table_24425976_7 (original_air_date VARCHAR, series VARCHAR)
SELECT original_air_date FROM table_24425976_7 WHERE series = 115
### Context: CREATE TABLE table_24425976_7 (original_air_date VARCHAR, series VARCHAR) ### Question: What date did episode 115 in the series originally air? ### Answer: SELECT original_air_date FROM table_24425976_7 WHERE series = 115
What was the 2nd leg for team #1 River Plate?
CREATE TABLE table_24426072_1 (team__number1 VARCHAR)
SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number1 = "River Plate"
### Context: CREATE TABLE table_24426072_1 (team__number1 VARCHAR) ### Question: What was the 2nd leg for team #1 River Plate? ### Answer: SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number1 = "River Plate"
What was team number 2's Fluminense's 2nd leg?
CREATE TABLE table_24426072_1 (team__number2 VARCHAR)
SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number2 = "Fluminense"
### Context: CREATE TABLE table_24426072_1 (team__number2 VARCHAR) ### Question: What was team number 2's Fluminense's 2nd leg? ### Answer: SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number2 = "Fluminense"
What was david ferrer seeded?
CREATE TABLE table_24431264_16 (seed INTEGER, player VARCHAR)
SELECT MAX(seed) FROM table_24431264_16 WHERE player = "David Ferrer"
### Context: CREATE TABLE table_24431264_16 (seed INTEGER, player VARCHAR) ### Question: What was david ferrer seeded? ### Answer: SELECT MAX(seed) FROM table_24431264_16 WHERE player = "David Ferrer"
What player had 1420 points coming in?
CREATE TABLE table_24431264_16 (player VARCHAR, points VARCHAR)
SELECT player FROM table_24431264_16 WHERE points = 1420
### Context: CREATE TABLE table_24431264_16 (player VARCHAR, points VARCHAR) ### Question: What player had 1420 points coming in? ### Answer: SELECT player FROM table_24431264_16 WHERE points = 1420
How many players named victor hănescu played?
CREATE TABLE table_24431264_16 (points VARCHAR, player VARCHAR)
SELECT COUNT(points) AS won FROM table_24431264_16 WHERE player = "Victor Hănescu"
### Context: CREATE TABLE table_24431264_16 (points VARCHAR, player VARCHAR) ### Question: How many players named victor hănescu played? ### Answer: SELECT COUNT(points) AS won FROM table_24431264_16 WHERE player = "Victor Hănescu"
Name the kurdistan democratic party for kurdistan list being 10
CREATE TABLE table_24440361_1 (kurdistan_democratic_party INTEGER, total_kurdistan_list VARCHAR)
SELECT MIN(kurdistan_democratic_party) FROM table_24440361_1 WHERE total_kurdistan_list = 10
### Context: CREATE TABLE table_24440361_1 (kurdistan_democratic_party INTEGER, total_kurdistan_list VARCHAR) ### Question: Name the kurdistan democratic party for kurdistan list being 10 ### Answer: SELECT MIN(kurdistan_democratic_party) FROM table_24440361_1 WHERE total_kurdistan_list = 10
Name the most kirdistan list for diyala
CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER, governorate VARCHAR)
SELECT MAX(total_kurdistan_list) FROM table_24440361_1 WHERE governorate = "Diyala"
### Context: CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER, governorate VARCHAR) ### Question: Name the most kirdistan list for diyala ### Answer: SELECT MAX(total_kurdistan_list) FROM table_24440361_1 WHERE governorate = "Diyala"
Name the least total kurdistan list
CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER)
SELECT MIN(total_kurdistan_list) FROM table_24440361_1
### Context: CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER) ### Question: Name the least total kurdistan list ### Answer: SELECT MIN(total_kurdistan_list) FROM table_24440361_1
Who won 3rd place when the mutya ng pilipinas winner was was rochelle romero ong?
CREATE TABLE table_24430894_20 (mutya_ng_pilipinas_asia_pacific VARCHAR)
SELECT 2 AS nd_runner_up FROM table_24430894_20 WHERE mutya_ng_pilipinas_asia_pacific = "Rochelle Romero Ong"
### Context: CREATE TABLE table_24430894_20 (mutya_ng_pilipinas_asia_pacific VARCHAR) ### Question: Who won 3rd place when the mutya ng pilipinas winner was was rochelle romero ong? ### Answer: SELECT 2 AS nd_runner_up FROM table_24430894_20 WHERE mutya_ng_pilipinas_asia_pacific = "Rochelle Romero Ong"
List the number of years where ritchie ocampo was the mutya ng pilipinas winner.
CREATE TABLE table_24430894_20 (year VARCHAR, mutya_ng_pilipinas_asia_pacific VARCHAR)
SELECT COUNT(year) FROM table_24430894_20 WHERE mutya_ng_pilipinas_asia_pacific = "Ritchie Ocampo"
### Context: CREATE TABLE table_24430894_20 (year VARCHAR, mutya_ng_pilipinas_asia_pacific VARCHAR) ### Question: List the number of years where ritchie ocampo was the mutya ng pilipinas winner. ### Answer: SELECT COUNT(year) FROM table_24430894_20 WHERE mutya_ng_pilipinas_asia_pacific = "Ritchie Ocampo"
Name the number of awardees for english and hindi
CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, language VARCHAR)
SELECT COUNT(awardee_s_) FROM table_24446718_7 WHERE language = "English and Hindi"
### Context: CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, language VARCHAR) ### Question: Name the number of awardees for english and hindi ### Answer: SELECT COUNT(awardee_s_) FROM table_24446718_7 WHERE language = "English and Hindi"
Name the name of award for zubeen garg
CREATE TABLE table_24446718_7 (name_of_award VARCHAR, awardee_s_ VARCHAR)
SELECT name_of_award FROM table_24446718_7 WHERE awardee_s_ = "Zubeen Garg"
### Context: CREATE TABLE table_24446718_7 (name_of_award VARCHAR, awardee_s_ VARCHAR) ### Question: Name the name of award for zubeen garg ### Answer: SELECT name_of_award FROM table_24446718_7 WHERE awardee_s_ = "Zubeen Garg"
Name the awardee for best editing
CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR)
SELECT awardee_s_ FROM table_24446718_7 WHERE name_of_award = "Best Editing"
### Context: CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR) ### Question: Name the awardee for best editing ### Answer: SELECT awardee_s_ FROM table_24446718_7 WHERE name_of_award = "Best Editing"
Name the number of awardees for best cinematography
CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR)
SELECT COUNT(awardee_s_) FROM table_24446718_7 WHERE name_of_award = "Best Cinematography"
### Context: CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR) ### Question: Name the number of awardees for best cinematography ### Answer: SELECT COUNT(awardee_s_) FROM table_24446718_7 WHERE name_of_award = "Best Cinematography"
Name the least flaps
CREATE TABLE table_24466191_1 (flaps INTEGER)
SELECT MIN(flaps) FROM table_24466191_1
### Context: CREATE TABLE table_24466191_1 (flaps INTEGER) ### Question: Name the least flaps ### Answer: SELECT MIN(flaps) FROM table_24466191_1
Name th most poles for macau grand prix
CREATE TABLE table_24466191_1 (poles INTEGER, series VARCHAR)
SELECT MAX(poles) FROM table_24466191_1 WHERE series = "Macau Grand Prix"
### Context: CREATE TABLE table_24466191_1 (poles INTEGER, series VARCHAR) ### Question: Name th most poles for macau grand prix ### Answer: SELECT MAX(poles) FROM table_24466191_1 WHERE series = "Macau Grand Prix"
Name the total number of races for 15th position
CREATE TABLE table_24466191_1 (races VARCHAR, position VARCHAR)
SELECT COUNT(races) FROM table_24466191_1 WHERE position = "15th"
### Context: CREATE TABLE table_24466191_1 (races VARCHAR, position VARCHAR) ### Question: Name the total number of races for 15th position ### Answer: SELECT COUNT(races) FROM table_24466191_1 WHERE position = "15th"
Name the most races for flaps larger than 2.0
CREATE TABLE table_24466191_1 (races INTEGER, flaps INTEGER)
SELECT MAX(races) FROM table_24466191_1 WHERE flaps > 2.0
### Context: CREATE TABLE table_24466191_1 (races INTEGER, flaps INTEGER) ### Question: Name the most races for flaps larger than 2.0 ### Answer: SELECT MAX(races) FROM table_24466191_1 WHERE flaps > 2.0
Name the number of poles for 15th position
CREATE TABLE table_24466191_1 (poles VARCHAR, position VARCHAR)
SELECT COUNT(poles) FROM table_24466191_1 WHERE position = "15th"
### Context: CREATE TABLE table_24466191_1 (poles VARCHAR, position VARCHAR) ### Question: Name the number of poles for 15th position ### Answer: SELECT COUNT(poles) FROM table_24466191_1 WHERE position = "15th"
Name the team for season 2010
CREATE TABLE table_24466191_1 (team VARCHAR, season VARCHAR)
SELECT team FROM table_24466191_1 WHERE season = 2010
### Context: CREATE TABLE table_24466191_1 (team VARCHAR, season VARCHAR) ### Question: Name the team for season 2010 ### Answer: SELECT team FROM table_24466191_1 WHERE season = 2010
Name the air date for jay j. demopoulos
CREATE TABLE table_24466855_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_24466855_1 WHERE written_by = "Jay J. Demopoulos"
### Context: CREATE TABLE table_24466855_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: Name the air date for jay j. demopoulos ### Answer: SELECT original_air_date FROM table_24466855_1 WHERE written_by = "Jay J. Demopoulos"
At which location did 29753 fans show up to watch the game?
CREATE TABLE table_24481478_1 (game_site VARCHAR, attendance VARCHAR)
SELECT game_site FROM table_24481478_1 WHERE attendance = 29753
### Context: CREATE TABLE table_24481478_1 (game_site VARCHAR, attendance VARCHAR) ### Question: At which location did 29753 fans show up to watch the game? ### Answer: SELECT game_site FROM table_24481478_1 WHERE attendance = 29753
What was the game record during week 7?
CREATE TABLE table_24481478_1 (team_record VARCHAR, week VARCHAR)
SELECT team_record FROM table_24481478_1 WHERE week = 7
### Context: CREATE TABLE table_24481478_1 (team_record VARCHAR, week VARCHAR) ### Question: What was the game record during week 7? ### Answer: SELECT team_record FROM table_24481478_1 WHERE week = 7
What time did the game start on saturday, april 20?
CREATE TABLE table_24481478_1 (kickoff VARCHAR, date VARCHAR)
SELECT kickoff FROM table_24481478_1 WHERE date = "Saturday, April 20"
### Context: CREATE TABLE table_24481478_1 (kickoff VARCHAR, date VARCHAR) ### Question: What time did the game start on saturday, april 20? ### Answer: SELECT kickoff FROM table_24481478_1 WHERE date = "Saturday, April 20"
In which week was the team record 7–2?
CREATE TABLE table_24481478_1 (week INTEGER, team_record VARCHAR)
SELECT MIN(week) FROM table_24481478_1 WHERE team_record = "7–2"
### Context: CREATE TABLE table_24481478_1 (week INTEGER, team_record VARCHAR) ### Question: In which week was the team record 7–2? ### Answer: SELECT MIN(week) FROM table_24481478_1 WHERE team_record = "7–2"
How man fans showed up to watch the game versus the raleigh-durham skyhawks?
CREATE TABLE table_24481478_1 (attendance INTEGER, opponent VARCHAR)
SELECT MAX(attendance) FROM table_24481478_1 WHERE opponent = "Raleigh-Durham Skyhawks"
### Context: CREATE TABLE table_24481478_1 (attendance INTEGER, opponent VARCHAR) ### Question: How man fans showed up to watch the game versus the raleigh-durham skyhawks? ### Answer: SELECT MAX(attendance) FROM table_24481478_1 WHERE opponent = "Raleigh-Durham Skyhawks"
If the rank is 26, what is the disposable USD growth?
CREATE TABLE table_24486462_1 (disposable_usd_growth VARCHAR, rank VARCHAR)
SELECT disposable_usd_growth FROM table_24486462_1 WHERE rank = 26
### Context: CREATE TABLE table_24486462_1 (disposable_usd_growth VARCHAR, rank VARCHAR) ### Question: If the rank is 26, what is the disposable USD growth? ### Answer: SELECT disposable_usd_growth FROM table_24486462_1 WHERE rank = 26
What country has a compulsory deduction of 29.3%?
CREATE TABLE table_24486462_1 (country VARCHAR, compulsory_deduction VARCHAR)
SELECT country FROM table_24486462_1 WHERE compulsory_deduction = "29.3%"
### Context: CREATE TABLE table_24486462_1 (country VARCHAR, compulsory_deduction VARCHAR) ### Question: What country has a compulsory deduction of 29.3%? ### Answer: SELECT country FROM table_24486462_1 WHERE compulsory_deduction = "29.3%"
What is Australia's Disposable USD growth?
CREATE TABLE table_24486462_1 (disposable_usd_growth INTEGER, country VARCHAR)
SELECT MAX(disposable_usd_growth) FROM table_24486462_1 WHERE country = "Australia"
### Context: CREATE TABLE table_24486462_1 (disposable_usd_growth INTEGER, country VARCHAR) ### Question: What is Australia's Disposable USD growth? ### Answer: SELECT MAX(disposable_usd_growth) FROM table_24486462_1 WHERE country = "Australia"
What is the lowest disposable USD 2011?
CREATE TABLE table_24486462_1 (disposable_usd_2011 INTEGER)
SELECT MIN(disposable_usd_2011) FROM table_24486462_1
### Context: CREATE TABLE table_24486462_1 (disposable_usd_2011 INTEGER) ### Question: What is the lowest disposable USD 2011? ### Answer: SELECT MIN(disposable_usd_2011) FROM table_24486462_1
Name the most minutes and starts being 12
CREATE TABLE table_24477075_1 (minutes INTEGER, starts VARCHAR)
SELECT MAX(minutes) FROM table_24477075_1 WHERE starts = 12
### Context: CREATE TABLE table_24477075_1 (minutes INTEGER, starts VARCHAR) ### Question: Name the most minutes and starts being 12 ### Answer: SELECT MAX(minutes) FROM table_24477075_1 WHERE starts = 12
Name the position for 132 minutes
CREATE TABLE table_24477075_1 (position VARCHAR, minutes VARCHAR)
SELECT position FROM table_24477075_1 WHERE minutes = 132
### Context: CREATE TABLE table_24477075_1 (position VARCHAR, minutes VARCHAR) ### Question: Name the position for 132 minutes ### Answer: SELECT position FROM table_24477075_1 WHERE minutes = 132
Name the rank for thomas morgenstern
CREATE TABLE table_24489942_10 (rank VARCHAR, name VARCHAR)
SELECT rank FROM table_24489942_10 WHERE name = "Thomas Morgenstern"
### Context: CREATE TABLE table_24489942_10 (rank VARCHAR, name VARCHAR) ### Question: Name the rank for thomas morgenstern ### Answer: SELECT rank FROM table_24489942_10 WHERE name = "Thomas Morgenstern"
Name the rank for switzerland
CREATE TABLE table_24489942_10 (rank VARCHAR, nationality VARCHAR)
SELECT COUNT(rank) FROM table_24489942_10 WHERE nationality = "Switzerland"
### Context: CREATE TABLE table_24489942_10 (rank VARCHAR, nationality VARCHAR) ### Question: Name the rank for switzerland ### Answer: SELECT COUNT(rank) FROM table_24489942_10 WHERE nationality = "Switzerland"
Name the points for switzerland
CREATE TABLE table_24489942_10 (points VARCHAR, nationality VARCHAR)
SELECT points FROM table_24489942_10 WHERE nationality = "Switzerland"
### Context: CREATE TABLE table_24489942_10 (points VARCHAR, nationality VARCHAR) ### Question: Name the points for switzerland ### Answer: SELECT points FROM table_24489942_10 WHERE nationality = "Switzerland"
Name the points for thomas morgenstern
CREATE TABLE table_24489942_10 (points VARCHAR, name VARCHAR)
SELECT points FROM table_24489942_10 WHERE name = "Thomas Morgenstern"
### Context: CREATE TABLE table_24489942_10 (points VARCHAR, name VARCHAR) ### Question: Name the points for thomas morgenstern ### Answer: SELECT points FROM table_24489942_10 WHERE name = "Thomas Morgenstern"
When was jack watson appointed?
CREATE TABLE table_24490665_1 (appointed VARCHAR, name VARCHAR)
SELECT appointed FROM table_24490665_1 WHERE name = "Jack Watson"
### Context: CREATE TABLE table_24490665_1 (appointed VARCHAR, name VARCHAR) ### Question: When was jack watson appointed? ### Answer: SELECT appointed FROM table_24490665_1 WHERE name = "Jack Watson"