text
stringlengths
114
1.06k
### question: Name the most times contested for montgomeryshire ### answer: 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 fate in 1832 for pembrokeshire ### answer: SELECT fate_in_1832 FROM table_24329520_4 WHERE county = "Pembrokeshire" ### context: CREATE TABLE table_24329520_4 (fate_in_1832 VARCHAR, county 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" ### context: CREATE TABLE table_24330803_1 (podiums 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" ### context: CREATE TABLE table_24330803_1 (wins INTEGER, series VARCHAR)
### question: How many positions were given when 30 points were won? ### answer: SELECT COUNT(position) FROM table_24330803_1 WHERE points = "30" ### context: CREATE TABLE table_24330803_1 (position VARCHAR, points VARCHAR)
### question: How many pole positions were there for the 2011 season? ### answer: SELECT MAX(poles) FROM table_24330803_1 WHERE season = 2011 ### context: CREATE TABLE table_24330803_1 (poles INTEGER, season VARCHAR)
### question: List the tournament that kent state won? ### answer: 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: 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" ### context: CREATE TABLE table_24348134_3 (regular_season_winner 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" ### context: CREATE TABLE table_24348134_3 (tournament_venue__city_ VARCHAR, tournament_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 & Niagara" ### context: CREATE TABLE table_24348134_3 (tournament_winner VARCHAR, regular_season_winner...
### 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" ### context: CREATE TABLE table_243664_1 (real_life_eventual_outcome 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" ### context: CREATE TABLE table_243664_1 (real_life_years_of_operation VARCHAR, currently¹_part_of 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" ### context: CREATE TABLE table_243664_1 (game_cost VARCHAR, railroad 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" ### context: CREATE TABLE table_243664_1 (game_cost VARCHAR, real_life_eventual_outcome 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" ### context: CREATE TABLE table_24364690_1 (federal_subjects 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" ### context: CREATE TABLE table_24370270_10 (weight_lost__kg_ VARCHAR, starting_weight__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" ### context: CREATE TABLE table_24370270_10 (starting_weight__kg_ VARCHAR, weight_lost__kg_ VARCHAR)
### question: What is the final weight for contestant Chris? ### answer: SELECT final_weight__kg_ FROM table_24370270_10 WHERE contestant = "Chris" ### context: CREATE TABLE table_24370270_10 (final_weight__kg_ VARCHAR, contestant 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" ### context: CREATE TABLE table_24384861_1 (aux_in 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" ### context: CREATE TABLE table_24384861_1 (iphone_certified VARCHAR, version VARCHAR)
### question: How many connections aux in using FIrewire? ### answer: 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 video out connections does the sounddock portable have? ### answer: SELECT COUNT(video_out) FROM table_24384861_1 WHERE version = "SoundDock Portable" ### context: CREATE TABLE table_24384861_1 (video_out 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" ### context: CREATE TABLE table_24384861_1 (dual_voltage 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" ### context: CREATE TABLE table_24384861_1 (dock_connection VARCHAR, version 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." ### context: CREATE TABLE table_24396664_2 (game_site VARCHAR, kickoff 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" ### context: CREATE TABLE table_2439728_1 (varsity_teams INTEGER, location VARCHAR)
### question: what is the mascot of st. paul's school? ### answer: SELECT mascot FROM table_2439728_1 WHERE school = "St. Paul's school" ### context: CREATE TABLE table_2439728_1 (mascot VARCHAR, school VARCHAR)
### question: where are dragons used as mascots? ### answer: SELECT location FROM table_2439728_1 WHERE mascot = "Dragons" ### context: CREATE TABLE table_2439728_1 (location VARCHAR, mascot VARCHAR)
### question: when was lawrence academy at groton established? ### answer: SELECT MIN(founded) FROM table_2439728_1 WHERE school = "Lawrence Academy at Groton" ### context: CREATE TABLE table_2439728_1 (founded INTEGER, school VARCHAR)
### question: name the school located at Milton, ma. ### answer: SELECT school FROM table_2439728_1 WHERE location = "Milton, MA" ### context: CREATE TABLE table_2439728_1 (school VARCHAR, location VARCHAR)
### question: how many places have 17 varsity teams? ### answer: SELECT COUNT(location) FROM table_2439728_1 WHERE varsity_teams = 17 ### context: CREATE TABLE table_2439728_1 (location VARCHAR, varsity_teams 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" ### context: CREATE TABLE table_24399615_10 (episode_no VARCHAR, 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" ### context: CREATE TABLE table_24399615_10 (bbc_three_weekly_ranking 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" ### context: CREATE TABLE table_24399615_10 (viewers VARCHAR, cable_rank 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" ### context: CREATE TABLE table_24399615_10 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR)
### question: How many times did episode number 8 air? ### answer: 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: When did episode number 6 air? ### answer: SELECT airdate FROM table_24399615_5 WHERE episode_no = 6 ### context: CREATE TABLE table_24399615_5 (airdate VARCHAR, episode_no 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" ### context: CREATE TABLE table_24399615_4 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR)
### question: What episode number had a cable ranking of 8? ### answer: 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 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" ### context: CREATE TABLE table_24399615_4 (airdate VARCHAR, bbc_three_weekly_ranking 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" ### context: CREATE TABLE table_24399615_4 (airdate VARCHAR, cable_rank 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" ### context: CREATE TABLE table_24399615_8 (airdate VARCHAR, bbc_three_weekly_ranking 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 ### context: CREATE TABLE table_24399615_8 (airdate VARCHAR, cable_rank VARCHAR, viewers 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" ### context: CREATE TABLE table_24415627_2 (state_served VARCHAR, time_since_entry VARCHAR)
### question: Of which part does congressman dick clark belong to? ### answer: SELECT party FROM table_24415627_2 WHERE senator = "Dick Clark" ### context: CREATE TABLE table_24415627_2 (party 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" ### context: CREATE TABLE table_24415627_2 (entered_senate VARCHAR, senator 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 ### context: CREATE TABLE table_24405773_1 (points INTEGER, poles VARCHAR, races VARCHAR)
### question: What was the highest number of points when flaps were 0? ### answer: SELECT MAX(points) FROM table_24405773_1 WHERE flaps = 0 ### context: CREATE TABLE table_24405773_1 (points INTEGER, flaps 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" ### context: CREATE TABLE table_24425491_3 (cover_model VARCHAR)
### question: When the power kw is 5kw, what is the frequency? ### answer: SELECT frequency FROM table_24418525_1 WHERE power_kw = "5kW" ### context: CREATE TABLE table_24418525_1 (frequency VARCHAR, power_kw 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" ### context: CREATE TABLE table_24418525_1 (callsign 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" ### context: CREATE TABLE table_24418525_1 (power_kw VARCHAR, coverage VARCHAR)
### question: What frequency is mega manila set to? ### answer: SELECT frequency FROM table_24418525_1 WHERE coverage = "Mega Manila" ### context: CREATE TABLE table_24418525_1 (frequency VARCHAR, coverage 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" ### context: CREATE TABLE table_24425976_2 (original_air_date VARCHAR, production_code 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" ### context: CREATE TABLE table_24425976_2 (production_code VARCHAR, season 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" ### context: CREATE TABLE table_24425976_2 (original_air_date 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" ### context: CREATE TABLE table_24425976_2 (episode_title 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" ### context: CREATE TABLE table_24425976_2 (series VARCHAR, production_code 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" ### context: CREATE TABLE table_24427210_1 (payout___us VARCHAR, date 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" ### context: CREATE TABLE table_24427210_1 (payout___us$__ VARCHAR, tv VARCHAR, bowl_game VARCHAR)
### question: Name the date for raymond james stadium ### answer: SELECT date FROM table_24427210_1 WHERE stadium = "Raymond James stadium" ### context: CREATE TABLE table_24427210_1 (date VARCHAR, stadium VARCHAR)
### question: What date did episode 4 in the season originally air? ### answer: 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 115 in the series originally air? ### answer: 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 was the 2nd leg for team #1 River Plate? ### answer: 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 team number 2's Fluminense's 2nd leg? ### answer: 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 david ferrer seeded? ### answer: SELECT MAX(seed) FROM table_24431264_16 WHERE player = "David Ferrer" ### context: CREATE TABLE table_24431264_16 (seed INTEGER, player VARCHAR)
### question: What player had 1420 points coming in? ### answer: SELECT player FROM table_24431264_16 WHERE points = 1420 ### context: CREATE TABLE table_24431264_16 (player VARCHAR, points 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" ### context: CREATE TABLE table_24431264_16 (points VARCHAR, player 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 ### context: CREATE TABLE table_24440361_1 (kurdistan_democratic_party INTEGER, total_kurdistan_list VARCHAR)
### question: Name the most kirdistan list for diyala ### answer: 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 least total kurdistan list ### answer: SELECT MIN(total_kurdistan_list) FROM table_24440361_1 ### context: CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER)
### 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" ### context: CREATE TABLE table_24430894_20 (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" ### context: CREATE TABLE table_24430894_20 (year VARCHAR, mutya_ng_pilipinas_asia_pacific 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" ### context: CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, language VARCHAR)
### question: Name the name of award for zubeen garg ### answer: 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 awardee for best editing ### answer: 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 number of awardees for best cinematography ### answer: 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 least flaps ### answer: SELECT MIN(flaps) FROM table_24466191_1 ### context: CREATE TABLE table_24466191_1 (flaps INTEGER)
### question: Name th most poles for macau grand prix ### answer: SELECT MAX(poles) FROM table_24466191_1 WHERE series = "Macau Grand Prix" ### context: CREATE TABLE table_24466191_1 (poles INTEGER, series VARCHAR)
### question: Name the total number of races for 15th position ### answer: SELECT COUNT(races) FROM table_24466191_1 WHERE position = "15th" ### context: CREATE TABLE table_24466191_1 (races VARCHAR, position VARCHAR)
### question: Name the most races for flaps larger than 2.0 ### answer: SELECT MAX(races) FROM table_24466191_1 WHERE flaps > 2.0 ### context: CREATE TABLE table_24466191_1 (races INTEGER, flaps INTEGER)
### question: Name the number of poles for 15th position ### answer: SELECT COUNT(poles) FROM table_24466191_1 WHERE position = "15th" ### context: CREATE TABLE table_24466191_1 (poles VARCHAR, position VARCHAR)
### question: Name the team for season 2010 ### answer: SELECT team FROM table_24466191_1 WHERE season = 2010 ### context: CREATE TABLE table_24466191_1 (team VARCHAR, season 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" ### context: CREATE TABLE table_24466855_1 (original_air_date VARCHAR, written_by 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 ### context: CREATE TABLE table_24481478_1 (game_site VARCHAR, attendance VARCHAR)
### question: What was the game record during week 7? ### answer: SELECT team_record FROM table_24481478_1 WHERE week = 7 ### context: CREATE TABLE table_24481478_1 (team_record VARCHAR, week VARCHAR)
### question: What time did the game start on saturday, april 20? ### answer: SELECT kickoff FROM table_24481478_1 WHERE date = "Saturday, April 20" ### context: CREATE TABLE table_24481478_1 (kickoff VARCHAR, date VARCHAR)
### question: In which week was the team record 7–2? ### answer: SELECT MIN(week) FROM table_24481478_1 WHERE team_record = "7–2" ### context: CREATE TABLE table_24481478_1 (week INTEGER, team_record 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" ### context: CREATE TABLE table_24481478_1 (attendance INTEGER, opponent 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 ### context: CREATE TABLE table_24486462_1 (disposable_usd_growth VARCHAR, rank VARCHAR)
### question: What country has a compulsory deduction of 29.3%? ### answer: SELECT country FROM table_24486462_1 WHERE compulsory_deduction = "29.3%" ### context: CREATE TABLE table_24486462_1 (country VARCHAR, compulsory_deduction VARCHAR)
### question: What is Australia's Disposable USD growth? ### answer: 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 the lowest disposable USD 2011? ### answer: SELECT MIN(disposable_usd_2011) FROM table_24486462_1 ### context: CREATE TABLE table_24486462_1 (disposable_usd_2011 INTEGER)
### question: Name the most minutes and starts being 12 ### answer: SELECT MAX(minutes) FROM table_24477075_1 WHERE starts = 12 ### context: CREATE TABLE table_24477075_1 (minutes INTEGER, starts VARCHAR)
### question: Name the position for 132 minutes ### answer: SELECT position FROM table_24477075_1 WHERE minutes = 132 ### context: CREATE TABLE table_24477075_1 (position VARCHAR, minutes VARCHAR)
### question: Name the rank for thomas morgenstern ### answer: 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 switzerland ### answer: SELECT COUNT(rank) FROM table_24489942_10 WHERE nationality = "Switzerland" ### context: CREATE TABLE table_24489942_10 (rank VARCHAR, nationality VARCHAR)
### question: Name the points for switzerland ### answer: SELECT points FROM table_24489942_10 WHERE nationality = "Switzerland" ### context: CREATE TABLE table_24489942_10 (points VARCHAR, nationality VARCHAR)
### question: Name the points for thomas morgenstern ### answer: SELECT points FROM table_24489942_10 WHERE name = "Thomas Morgenstern" ### context: CREATE TABLE table_24489942_10 (points VARCHAR, name VARCHAR)
### question: When was jack watson appointed? ### answer: SELECT appointed FROM table_24490665_1 WHERE name = "Jack Watson" ### context: CREATE TABLE table_24490665_1 (appointed VARCHAR, name VARCHAR)