question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which nationality is player John Garrett? | CREATE TABLE table_22402438_7 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_22402438_7 WHERE player = "John Garrett" | ### Context: CREATE TABLE table_22402438_7 (nationality VARCHAR, player VARCHAR) ### Question: Which nationality is player John Garrett? ### Answer: SELECT nationality FROM table_22402438_7 WHERE player = "John Garrett" |
what team had ricardo serrano for combativity prize? | CREATE TABLE table_22410316_17 (team_classification VARCHAR, combativity_prize VARCHAR) | SELECT team_classification FROM table_22410316_17 WHERE combativity_prize = "Ricardo Serrano" | ### Context: CREATE TABLE table_22410316_17 (team_classification VARCHAR, combativity_prize VARCHAR) ### Question: what team had ricardo serrano for combativity prize? ### Answer: SELECT team_classification FROM table_22410316_17 WHERE combativity_prize = "Ricardo Serrano" |
How many production stage managers worked with Gabriel di Chiara as the Male Rep? | CREATE TABLE table_22410780_1 (production_stagemanager VARCHAR, male_rep VARCHAR) | SELECT COUNT(production_stagemanager) FROM table_22410780_1 WHERE male_rep = "Gabriel Di Chiara" | ### Context: CREATE TABLE table_22410780_1 (production_stagemanager VARCHAR, male_rep VARCHAR) ### Question: How many production stage managers worked with Gabriel di Chiara as the Male Rep? ### Answer: SELECT COUNT(production_stagemanager) FROM table_22410780_1 WHERE male_rep = "Gabriel Di Chiara" |
How many production stage managers worked with secretary Rachel Hartmann? | CREATE TABLE table_22410780_1 (production_stagemanager VARCHAR, secretary VARCHAR) | SELECT COUNT(production_stagemanager) FROM table_22410780_1 WHERE secretary = "Rachel Hartmann" | ### Context: CREATE TABLE table_22410780_1 (production_stagemanager VARCHAR, secretary VARCHAR) ### Question: How many production stage managers worked with secretary Rachel Hartmann? ### Answer: SELECT COUNT(production_stagemanager) FROM table_22410780_1 WHERE secretary = "Rachel Hartmann" |
Who were the performance liaisons for the dramaturge Chrisena Ricci? | CREATE TABLE table_22410780_1 (performance_liaison VARCHAR, dramaturge VARCHAR) | SELECT performance_liaison FROM table_22410780_1 WHERE dramaturge = "Chrisena Ricci" | ### Context: CREATE TABLE table_22410780_1 (performance_liaison VARCHAR, dramaturge VARCHAR) ### Question: Who were the performance liaisons for the dramaturge Chrisena Ricci? ### Answer: SELECT performance_liaison FROM table_22410780_1 WHERE dramaturge = "Chrisena Ricci" |
Who was the male rep. when Caroline Rhoads was the artistic director? | CREATE TABLE table_22410780_1 (male_rep VARCHAR, artistic_director VARCHAR) | SELECT male_rep FROM table_22410780_1 WHERE artistic_director = "Caroline Rhoads" | ### Context: CREATE TABLE table_22410780_1 (male_rep VARCHAR, artistic_director VARCHAR) ### Question: Who was the male rep. when Caroline Rhoads was the artistic director? ### Answer: SELECT male_rep FROM table_22410780_1 WHERE artistic_director = "Caroline Rhoads" |
How many different drivers were there for the team when the manufacturer was Toyota? | CREATE TABLE table_2241101_1 (driver VARCHAR, manufacturer VARCHAR) | SELECT COUNT(driver) FROM table_2241101_1 WHERE manufacturer = "Toyota" | ### Context: CREATE TABLE table_2241101_1 (driver VARCHAR, manufacturer VARCHAR) ### Question: How many different drivers were there for the team when the manufacturer was Toyota? ### Answer: SELECT COUNT(driver) FROM table_2241101_1 WHERE manufacturer = "Toyota" |
In how many different years did the race happen on February 27? | CREATE TABLE table_2241101_1 (year VARCHAR, date VARCHAR) | SELECT COUNT(year) FROM table_2241101_1 WHERE date = "February 27" | ### Context: CREATE TABLE table_2241101_1 (year VARCHAR, date VARCHAR) ### Question: In how many different years did the race happen on February 27? ### Answer: SELECT COUNT(year) FROM table_2241101_1 WHERE date = "February 27" |
What team had average speed of 107.063 mph? | CREATE TABLE table_2241101_1 (team VARCHAR, average_speed__mph_ VARCHAR) | SELECT team FROM table_2241101_1 WHERE average_speed__mph_ = "107.063" | ### Context: CREATE TABLE table_2241101_1 (team VARCHAR, average_speed__mph_ VARCHAR) ### Question: What team had average speed of 107.063 mph? ### Answer: SELECT team FROM table_2241101_1 WHERE average_speed__mph_ = "107.063" |
What was the report for 2010? | CREATE TABLE table_2241101_1 (report VARCHAR, year VARCHAR) | SELECT report FROM table_2241101_1 WHERE year = 2010 | ### Context: CREATE TABLE table_2241101_1 (report VARCHAR, year VARCHAR) ### Question: What was the report for 2010? ### Answer: SELECT report FROM table_2241101_1 WHERE year = 2010 |
Name the total number of race time for kevin harvick | CREATE TABLE table_2241259_1 (race_time VARCHAR, driver VARCHAR) | SELECT COUNT(race_time) FROM table_2241259_1 WHERE driver = "Kevin Harvick" | ### Context: CREATE TABLE table_2241259_1 (race_time VARCHAR, driver VARCHAR) ### Question: Name the total number of race time for kevin harvick ### Answer: SELECT COUNT(race_time) FROM table_2241259_1 WHERE driver = "Kevin Harvick" |
What manufacturer made the car that won in 2004? | CREATE TABLE table_2241841_1 (manufacturer VARCHAR, year VARCHAR) | SELECT manufacturer FROM table_2241841_1 WHERE year = "2004" | ### Context: CREATE TABLE table_2241841_1 (manufacturer VARCHAR, year VARCHAR) ### Question: What manufacturer made the car that won in 2004? ### Answer: SELECT manufacturer FROM table_2241841_1 WHERE year = "2004" |
How many wins are with Dodge vehicles? | CREATE TABLE table_2241841_1 (miles__km_ VARCHAR, manufacturer VARCHAR) | SELECT COUNT(miles__km_) FROM table_2241841_1 WHERE manufacturer = "Dodge" | ### Context: CREATE TABLE table_2241841_1 (miles__km_ VARCHAR, manufacturer VARCHAR) ### Question: How many wins are with Dodge vehicles? ### Answer: SELECT COUNT(miles__km_) FROM table_2241841_1 WHERE manufacturer = "Dodge" |
Who made the car that won the race on May 21? | CREATE TABLE table_2241841_1 (manufacturer VARCHAR, date VARCHAR) | SELECT manufacturer FROM table_2241841_1 WHERE date = "May 21" | ### Context: CREATE TABLE table_2241841_1 (manufacturer VARCHAR, date VARCHAR) ### Question: Who made the car that won the race on May 21? ### Answer: SELECT manufacturer FROM table_2241841_1 WHERE date = "May 21" |
In the race with a winning time of 4:17:18, how many laps were run? | CREATE TABLE table_2241841_1 (laps VARCHAR, race_time VARCHAR) | SELECT laps FROM table_2241841_1 WHERE race_time = "4:17:18" | ### Context: CREATE TABLE table_2241841_1 (laps VARCHAR, race_time VARCHAR) ### Question: In the race with a winning time of 4:17:18, how many laps were run? ### Answer: SELECT laps FROM table_2241841_1 WHERE race_time = "4:17:18" |
What team set a 3:15:43 winning time? | CREATE TABLE table_2241841_1 (team VARCHAR, race_time VARCHAR) | SELECT team FROM table_2241841_1 WHERE race_time = "3:15:43" | ### Context: CREATE TABLE table_2241841_1 (team VARCHAR, race_time VARCHAR) ### Question: What team set a 3:15:43 winning time? ### Answer: SELECT team FROM table_2241841_1 WHERE race_time = "3:15:43" |
How many different cities are represented by contestants whose height stands at 1.80? | CREATE TABLE table_22447251_2 (hometown VARCHAR, height VARCHAR) | SELECT COUNT(hometown) FROM table_22447251_2 WHERE height = "1.80" | ### Context: CREATE TABLE table_22447251_2 (hometown VARCHAR, height VARCHAR) ### Question: How many different cities are represented by contestants whose height stands at 1.80? ### Answer: SELECT COUNT(hometown) FROM table_22447251_2 WHERE height = "1.80" |
How tall is contestant Alexandra Díaz Bello? | CREATE TABLE table_22447251_2 (height VARCHAR, contestant VARCHAR) | SELECT height FROM table_22447251_2 WHERE contestant = "Alexandra Díaz Bello" | ### Context: CREATE TABLE table_22447251_2 (height VARCHAR, contestant VARCHAR) ### Question: How tall is contestant Alexandra Díaz Bello? ### Answer: SELECT height FROM table_22447251_2 WHERE contestant = "Alexandra Díaz Bello" |
Which province is Villa Bisonó in? | CREATE TABLE table_22447251_2 (province VARCHAR, _community VARCHAR, hometown VARCHAR) | SELECT province, _community FROM table_22447251_2 WHERE hometown = "Villa Bisonó" | ### Context: CREATE TABLE table_22447251_2 (province VARCHAR, _community VARCHAR, hometown VARCHAR) ### Question: Which province is Villa Bisonó in? ### Answer: SELECT province, _community FROM table_22447251_2 WHERE hometown = "Villa Bisonó" |
How old is contestant Valerie Chardonnens Vargas? | CREATE TABLE table_22447251_2 (age INTEGER, contestant VARCHAR) | SELECT MAX(age) FROM table_22447251_2 WHERE contestant = "Valerie Chardonnens Vargas" | ### Context: CREATE TABLE table_22447251_2 (age INTEGER, contestant VARCHAR) ### Question: How old is contestant Valerie Chardonnens Vargas? ### Answer: SELECT MAX(age) FROM table_22447251_2 WHERE contestant = "Valerie Chardonnens Vargas" |
Who was the origianal south korean performer when Adebayo Bolaji performed in Manchester? | CREATE TABLE table_22460085_1 (original_south_korean_performer VARCHAR, original_manchester_performer VARCHAR) | SELECT original_south_korean_performer FROM table_22460085_1 WHERE original_manchester_performer = "Adebayo Bolaji" | ### Context: CREATE TABLE table_22460085_1 (original_south_korean_performer VARCHAR, original_manchester_performer VARCHAR) ### Question: Who was the origianal south korean performer when Adebayo Bolaji performed in Manchester? ### Answer: SELECT original_south_korean_performer FROM table_22460085_1 WHERE original_manc... |
What character did Lisa Davina Phillip portray? | CREATE TABLE table_22460085_1 (character VARCHAR, original_manchester_performer VARCHAR) | SELECT character FROM table_22460085_1 WHERE original_manchester_performer = "Lisa Davina Phillip" | ### Context: CREATE TABLE table_22460085_1 (character VARCHAR, original_manchester_performer VARCHAR) ### Question: What character did Lisa Davina Phillip portray? ### Answer: SELECT character FROM table_22460085_1 WHERE original_manchester_performer = "Lisa Davina Phillip" |
Who was the Broadway equivalent of Sharon D. Clarke's character? | CREATE TABLE table_22460085_1 (original_broadway_performer VARCHAR, original_west_end_performer VARCHAR) | SELECT original_broadway_performer FROM table_22460085_1 WHERE original_west_end_performer = "Sharon D. Clarke" | ### Context: CREATE TABLE table_22460085_1 (original_broadway_performer VARCHAR, original_west_end_performer VARCHAR) ### Question: Who was the Broadway equivalent of Sharon D. Clarke's character? ### Answer: SELECT original_broadway_performer FROM table_22460085_1 WHERE original_west_end_performer = "Sharon D. Clarke" |
What character did Moya Angela portray? | CREATE TABLE table_22460085_1 (character VARCHAR, original_broadway_performer VARCHAR) | SELECT character FROM table_22460085_1 WHERE original_broadway_performer = "Moya Angela" | ### Context: CREATE TABLE table_22460085_1 (character VARCHAR, original_broadway_performer VARCHAR) ### Question: What character did Moya Angela portray? ### Answer: SELECT character FROM table_22460085_1 WHERE original_broadway_performer = "Moya Angela" |
What character did Richard Fleeshman portray? | CREATE TABLE table_22460085_1 (character VARCHAR, original_west_end_performer VARCHAR) | SELECT character FROM table_22460085_1 WHERE original_west_end_performer = "Richard Fleeshman" | ### Context: CREATE TABLE table_22460085_1 (character VARCHAR, original_west_end_performer VARCHAR) ### Question: What character did Richard Fleeshman portray? ### Answer: SELECT character FROM table_22460085_1 WHERE original_west_end_performer = "Richard Fleeshman" |
Who was the Manchester performer of Lisa Davina Phillip's character? | CREATE TABLE table_22460085_1 (original_manchester_performer VARCHAR, original_west_end_performer VARCHAR) | SELECT original_manchester_performer FROM table_22460085_1 WHERE original_west_end_performer = "Lisa Davina Phillip" | ### Context: CREATE TABLE table_22460085_1 (original_manchester_performer VARCHAR, original_west_end_performer VARCHAR) ### Question: Who was the Manchester performer of Lisa Davina Phillip's character? ### Answer: SELECT original_manchester_performer FROM table_22460085_1 WHERE original_west_end_performer = "Lisa Davi... |
Name the european tier for rick springfield | CREATE TABLE table_22457674_1 (european_tier VARCHAR, artist VARCHAR) | SELECT european_tier FROM table_22457674_1 WHERE artist = "Rick Springfield" | ### Context: CREATE TABLE table_22457674_1 (european_tier VARCHAR, artist VARCHAR) ### Question: Name the european tier for rick springfield ### Answer: SELECT european_tier FROM table_22457674_1 WHERE artist = "Rick Springfield" |
Name the song title for europe | CREATE TABLE table_22457674_1 (song_title VARCHAR, artist VARCHAR) | SELECT song_title FROM table_22457674_1 WHERE artist = "Europe" | ### Context: CREATE TABLE table_22457674_1 (song_title VARCHAR, artist VARCHAR) ### Question: Name the song title for europe ### Answer: SELECT song_title FROM table_22457674_1 WHERE artist = "Europe" |
Name the number of master recording for doobie brothers the doobie brothers | CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR) | SELECT COUNT(master_recording) FROM table_22457674_1 WHERE artist = "Doobie Brothers The Doobie Brothers" | ### Context: CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR) ### Question: Name the number of master recording for doobie brothers the doobie brothers ### Answer: SELECT COUNT(master_recording) FROM table_22457674_1 WHERE artist = "Doobie Brothers The Doobie Brothers" |
Name the master recording for europe | CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR) | SELECT master_recording FROM table_22457674_1 WHERE artist = "Europe" | ### Context: CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR) ### Question: Name the master recording for europe ### Answer: SELECT master_recording FROM table_22457674_1 WHERE artist = "Europe" |
what is the date for when the georgian name is ცხოვრება და უწყება ბაგრატონიანთა? | CREATE TABLE table_22464685_1 (date VARCHAR, georgian_name VARCHAR) | SELECT date FROM table_22464685_1 WHERE georgian_name = "ცხოვრება და უწყება ბაგრატონიანთა" | ### Context: CREATE TABLE table_22464685_1 (date VARCHAR, georgian_name VARCHAR) ### Question: what is the date for when the georgian name is ცხოვრება და უწყება ბაგრატონიანთა? ### Answer: SELECT date FROM table_22464685_1 WHERE georgian_name = "ცხოვრება და უწყება ბაგრატონიანთა" |
what is the transliteration during the period covered is 1125-1223? | CREATE TABLE table_22464685_1 (transliteration VARCHAR, period_covered VARCHAR) | SELECT transliteration FROM table_22464685_1 WHERE period_covered = "1125-1223" | ### Context: CREATE TABLE table_22464685_1 (transliteration VARCHAR, period_covered VARCHAR) ### Question: what is the transliteration during the period covered is 1125-1223? ### Answer: SELECT transliteration FROM table_22464685_1 WHERE period_covered = "1125-1223" |
Who is the auther when the english name was histories and eulogies of the sovereigns? | CREATE TABLE table_22464685_1 (author VARCHAR, english_name VARCHAR) | SELECT author FROM table_22464685_1 WHERE english_name = "Histories and Eulogies of the Sovereigns" | ### Context: CREATE TABLE table_22464685_1 (author VARCHAR, english_name VARCHAR) ### Question: Who is the auther when the english name was histories and eulogies of the sovereigns? ### Answer: SELECT author FROM table_22464685_1 WHERE english_name = "Histories and Eulogies of the Sovereigns" |
who is the auther when the transliteration is lasha-giorgis droindeli matiane? | CREATE TABLE table_22464685_1 (author VARCHAR, transliteration VARCHAR) | SELECT author FROM table_22464685_1 WHERE transliteration = "lasha-giorgis droindeli matiane" | ### Context: CREATE TABLE table_22464685_1 (author VARCHAR, transliteration VARCHAR) ### Question: who is the auther when the transliteration is lasha-giorgis droindeli matiane? ### Answer: SELECT author FROM table_22464685_1 WHERE transliteration = "lasha-giorgis droindeli matiane" |
in which state where John Laurance (f) as a vacator? | CREATE TABLE table_224840_3 (state__class_ VARCHAR, vacator VARCHAR) | SELECT state__class_ FROM table_224840_3 WHERE vacator = "John Laurance (F)" | ### Context: CREATE TABLE table_224840_3 (state__class_ VARCHAR, vacator VARCHAR) ### Question: in which state where John Laurance (f) as a vacator? ### Answer: SELECT state__class_ FROM table_224840_3 WHERE vacator = "John Laurance (F)" |
when the vacator was Henry Latimer (f), what were the causes for modification? | CREATE TABLE table_224840_3 (reason_for_change VARCHAR, vacator VARCHAR) | SELECT reason_for_change FROM table_224840_3 WHERE vacator = "Henry Latimer (F)" | ### Context: CREATE TABLE table_224840_3 (reason_for_change VARCHAR, vacator VARCHAR) ### Question: when the vacator was Henry Latimer (f), what were the causes for modification? ### Answer: SELECT reason_for_change FROM table_224840_3 WHERE vacator = "Henry Latimer (F)" |
how many times has Aaron Ogden (f), been a successor and has had a formal installation? | CREATE TABLE table_224840_3 (date_of_successors_formal_installation VARCHAR, successor VARCHAR) | SELECT COUNT(date_of_successors_formal_installation) FROM table_224840_3 WHERE successor = "Aaron Ogden (F)" | ### Context: CREATE TABLE table_224840_3 (date_of_successors_formal_installation VARCHAR, successor VARCHAR) ### Question: how many times has Aaron Ogden (f), been a successor and has had a formal installation? ### Answer: SELECT COUNT(date_of_successors_formal_installation) FROM table_224840_3 WHERE successor = "Aaro... |
In 2010, how many 1st venue cities were there? | CREATE TABLE table_22482077_1 (year VARCHAR) | SELECT COUNT(1 AS st_venue) FROM table_22482077_1 WHERE year = 2010 | ### Context: CREATE TABLE table_22482077_1 (year VARCHAR) ### Question: In 2010, how many 1st venue cities were there? ### Answer: SELECT COUNT(1 AS st_venue) FROM table_22482077_1 WHERE year = 2010 |
How many seats became avaliable in Massachusetts 3rd district? | CREATE TABLE table_224840_4 (vacator VARCHAR, district VARCHAR) | SELECT COUNT(vacator) FROM table_224840_4 WHERE district = "Massachusetts 3rd" | ### Context: CREATE TABLE table_224840_4 (vacator VARCHAR, district VARCHAR) ### Question: How many seats became avaliable in Massachusetts 3rd district? ### Answer: SELECT COUNT(vacator) FROM table_224840_4 WHERE district = "Massachusetts 3rd" |
Who left office on November 26, 1800? | CREATE TABLE table_224840_4 (vacator VARCHAR, date_successor_seated VARCHAR) | SELECT vacator FROM table_224840_4 WHERE date_successor_seated = "November 26, 1800" | ### Context: CREATE TABLE table_224840_4 (vacator VARCHAR, date_successor_seated VARCHAR) ### Question: Who left office on November 26, 1800? ### Answer: SELECT vacator FROM table_224840_4 WHERE date_successor_seated = "November 26, 1800" |
Who was the latest to take office in Massachusetts 3rd district? | CREATE TABLE table_224840_4 (successor VARCHAR, district VARCHAR) | SELECT successor FROM table_224840_4 WHERE district = "Massachusetts 3rd" | ### Context: CREATE TABLE table_224840_4 (successor VARCHAR, district VARCHAR) ### Question: Who was the latest to take office in Massachusetts 3rd district? ### Answer: SELECT successor FROM table_224840_4 WHERE district = "Massachusetts 3rd" |
List the builder from 1930. | CREATE TABLE table_22481967_1 (builder VARCHAR, date VARCHAR) | SELECT builder FROM table_22481967_1 WHERE date = "1930" | ### Context: CREATE TABLE table_22481967_1 (builder VARCHAR, date VARCHAR) ### Question: List the builder from 1930. ### Answer: SELECT builder FROM table_22481967_1 WHERE date = "1930" |
List the number of builders where the withdrawn is 1951 and number is 42. | CREATE TABLE table_22481967_1 (builder VARCHAR, withdrawn VARCHAR, number VARCHAR) | SELECT COUNT(builder) FROM table_22481967_1 WHERE withdrawn = "1951" AND number = "42" | ### Context: CREATE TABLE table_22481967_1 (builder VARCHAR, withdrawn VARCHAR, number VARCHAR) ### Question: List the number of builders where the withdrawn is 1951 and number is 42. ### Answer: SELECT COUNT(builder) FROM table_22481967_1 WHERE withdrawn = "1951" AND number = "42" |
List the date for number 1. | CREATE TABLE table_22481967_1 (date VARCHAR, number VARCHAR) | SELECT date FROM table_22481967_1 WHERE number = "1" | ### Context: CREATE TABLE table_22481967_1 (date VARCHAR, number VARCHAR) ### Question: List the date for number 1. ### Answer: SELECT date FROM table_22481967_1 WHERE number = "1" |
List the number for the operator melbourne and metropolitan tramways board. | CREATE TABLE table_22481967_1 (number VARCHAR, operator VARCHAR) | SELECT number FROM table_22481967_1 WHERE operator = "Melbourne and Metropolitan Tramways Board" | ### Context: CREATE TABLE table_22481967_1 (number VARCHAR, operator VARCHAR) ### Question: List the number for the operator melbourne and metropolitan tramways board. ### Answer: SELECT number FROM table_22481967_1 WHERE operator = "Melbourne and Metropolitan Tramways Board" |
List the status for the operator Toronto transit commission. | CREATE TABLE table_22481967_1 (status VARCHAR, operator VARCHAR) | SELECT status FROM table_22481967_1 WHERE operator = "Toronto Transit Commission" | ### Context: CREATE TABLE table_22481967_1 (status VARCHAR, operator VARCHAR) ### Question: List the status for the operator Toronto transit commission. ### Answer: SELECT status FROM table_22481967_1 WHERE operator = "Toronto Transit Commission" |
Which network has bob costas as the studio host and darren pang as the ice level reporters? | CREATE TABLE table_22485543_1 (network VARCHAR, studio_host VARCHAR, ice_level_reporters VARCHAR) | SELECT network FROM table_22485543_1 WHERE studio_host = "Bob Costas" AND ice_level_reporters = "Darren Pang" | ### Context: CREATE TABLE table_22485543_1 (network VARCHAR, studio_host VARCHAR, ice_level_reporters VARCHAR) ### Question: Which network has bob costas as the studio host and darren pang as the ice level reporters? ### Answer: SELECT network FROM table_22485543_1 WHERE studio_host = "Bob Costas" AND ice_level_reporte... |
Which play-by-play has mike milbury as the studio analyst and darren pang as the ice level reporters? | CREATE TABLE table_22485543_1 (play_by_play VARCHAR, studio_analysts VARCHAR, ice_level_reporters VARCHAR) | SELECT play_by_play FROM table_22485543_1 WHERE studio_analysts = "Mike Milbury" AND ice_level_reporters = "Darren Pang" | ### Context: CREATE TABLE table_22485543_1 (play_by_play VARCHAR, studio_analysts VARCHAR, ice_level_reporters VARCHAR) ### Question: Which play-by-play has mike milbury as the studio analyst and darren pang as the ice level reporters? ### Answer: SELECT play_by_play FROM table_22485543_1 WHERE studio_analysts = "Mike ... |
Who is the color commentator when brian engblom is ice level reporters? | CREATE TABLE table_22485543_1 (color_commentator_s_ VARCHAR, ice_level_reporters VARCHAR) | SELECT color_commentator_s_ FROM table_22485543_1 WHERE ice_level_reporters = "Brian Engblom" | ### Context: CREATE TABLE table_22485543_1 (color_commentator_s_ VARCHAR, ice_level_reporters VARCHAR) ### Question: Who is the color commentator when brian engblom is ice level reporters? ### Answer: SELECT color_commentator_s_ FROM table_22485543_1 WHERE ice_level_reporters = "Brian Engblom" |
Who is the play-by-play when nbc is the network and darren pang is the ice level reporters? | CREATE TABLE table_22485543_1 (play_by_play VARCHAR, network VARCHAR, ice_level_reporters VARCHAR) | SELECT play_by_play FROM table_22485543_1 WHERE network = "NBC" AND ice_level_reporters = "Darren Pang" | ### Context: CREATE TABLE table_22485543_1 (play_by_play VARCHAR, network VARCHAR, ice_level_reporters VARCHAR) ### Question: Who is the play-by-play when nbc is the network and darren pang is the ice level reporters? ### Answer: SELECT play_by_play FROM table_22485543_1 WHERE network = "NBC" AND ice_level_reporters = ... |
Who is the studio host for the year 2010? | CREATE TABLE table_22485543_1 (studio_host VARCHAR, year VARCHAR) | SELECT studio_host FROM table_22485543_1 WHERE year = "2010" | ### Context: CREATE TABLE table_22485543_1 (studio_host VARCHAR, year VARCHAR) ### Question: Who is the studio host for the year 2010? ### Answer: SELECT studio_host FROM table_22485543_1 WHERE year = "2010" |
Who left a seat open for the district of connecticut at-large | CREATE TABLE table_224844_4 (vacator VARCHAR, district VARCHAR) | SELECT vacator FROM table_224844_4 WHERE district = "Connecticut At-large" | ### Context: CREATE TABLE table_224844_4 (vacator VARCHAR, district VARCHAR) ### Question: Who left a seat open for the district of connecticut at-large ### Answer: SELECT vacator FROM table_224844_4 WHERE district = "Connecticut At-large" |
Why was a seat left open fo Connecticut at-large? | CREATE TABLE table_224844_4 (reason_for_change VARCHAR, district VARCHAR) | SELECT reason_for_change FROM table_224844_4 WHERE district = "Connecticut At-large" | ### Context: CREATE TABLE table_224844_4 (reason_for_change VARCHAR, district VARCHAR) ### Question: Why was a seat left open fo Connecticut at-large? ### Answer: SELECT reason_for_change FROM table_224844_4 WHERE district = "Connecticut At-large" |
What is the smallest Asian rank? | CREATE TABLE table_2248784_4 (rank_asia INTEGER) | SELECT MIN(rank_asia) FROM table_2248784_4 | ### Context: CREATE TABLE table_2248784_4 (rank_asia INTEGER) ### Question: What is the smallest Asian rank? ### Answer: SELECT MIN(rank_asia) FROM table_2248784_4 |
What 2011 GDP (PPP) billions of USD does Iraq have? | CREATE TABLE table_2248784_4 (country VARCHAR) | SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_4 WHERE country = "Iraq" | ### Context: CREATE TABLE table_2248784_4 (country VARCHAR) ### Question: What 2011 GDP (PPP) billions of USD does Iraq have? ### Answer: SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_4 WHERE country = "Iraq" |
What 2011 GDP (PPP) billions of USD does Israel have? | CREATE TABLE table_2248784_4 (country VARCHAR) | SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_4 WHERE country = "Israel" | ### Context: CREATE TABLE table_2248784_4 (country VARCHAR) ### Question: What 2011 GDP (PPP) billions of USD does Israel have? ### Answer: SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_4 WHERE country = "Israel" |
How many asian rank have 1 as a mideast rank? | CREATE TABLE table_2248784_4 (rank_asia VARCHAR, rank_mideast VARCHAR) | SELECT COUNT(rank_asia) FROM table_2248784_4 WHERE rank_mideast = 1 | ### Context: CREATE TABLE table_2248784_4 (rank_asia VARCHAR, rank_mideast VARCHAR) ### Question: How many asian rank have 1 as a mideast rank? ### Answer: SELECT COUNT(rank_asia) FROM table_2248784_4 WHERE rank_mideast = 1 |
Name the gdp world rank for asian rank being 15 | CREATE TABLE table_2249029_1 (gdp_world_rank VARCHAR, asian_rank VARCHAR) | SELECT gdp_world_rank FROM table_2249029_1 WHERE asian_rank = 15 | ### Context: CREATE TABLE table_2249029_1 (gdp_world_rank VARCHAR, asian_rank VARCHAR) ### Question: Name the gdp world rank for asian rank being 15 ### Answer: SELECT gdp_world_rank FROM table_2249029_1 WHERE asian_rank = 15 |
Name the gdp per capita for world rank being 131 | CREATE TABLE table_2249029_1 (gdp_per_capita VARCHAR, gdp_world_rank VARCHAR) | SELECT gdp_per_capita FROM table_2249029_1 WHERE gdp_world_rank = "131" | ### Context: CREATE TABLE table_2249029_1 (gdp_per_capita VARCHAR, gdp_world_rank VARCHAR) ### Question: Name the gdp per capita for world rank being 131 ### Answer: SELECT gdp_per_capita FROM table_2249029_1 WHERE gdp_world_rank = "131" |
Name the gdp world rank for asian rank being 20 | CREATE TABLE table_2249029_1 (gdp_world_rank VARCHAR, asian_rank VARCHAR) | SELECT gdp_world_rank FROM table_2249029_1 WHERE asian_rank = 20 | ### Context: CREATE TABLE table_2249029_1 (gdp_world_rank VARCHAR, asian_rank VARCHAR) ### Question: Name the gdp world rank for asian rank being 20 ### Answer: SELECT gdp_world_rank FROM table_2249029_1 WHERE asian_rank = 20 |
Name the most world rank for asian rank being 31 | CREATE TABLE table_2249029_1 (world_rank INTEGER, asian_rank VARCHAR) | SELECT MAX(world_rank) FROM table_2249029_1 WHERE asian_rank = 31 | ### Context: CREATE TABLE table_2249029_1 (world_rank INTEGER, asian_rank VARCHAR) ### Question: Name the most world rank for asian rank being 31 ### Answer: SELECT MAX(world_rank) FROM table_2249029_1 WHERE asian_rank = 31 |
Name the least rank subcontinent for bangladesh | CREATE TABLE table_2248784_3 (rank_subcontinent INTEGER, country VARCHAR) | SELECT MIN(rank_subcontinent) FROM table_2248784_3 WHERE country = "Bangladesh" | ### Context: CREATE TABLE table_2248784_3 (rank_subcontinent INTEGER, country VARCHAR) ### Question: Name the least rank subcontinent for bangladesh ### Answer: SELECT MIN(rank_subcontinent) FROM table_2248784_3 WHERE country = "Bangladesh" |
Name the rank world for 7 rank subcontinent | CREATE TABLE table_2248784_3 (rank_world VARCHAR, rank_subcontinent VARCHAR) | SELECT rank_world FROM table_2248784_3 WHERE rank_subcontinent = 7 | ### Context: CREATE TABLE table_2248784_3 (rank_world VARCHAR, rank_subcontinent VARCHAR) ### Question: Name the rank world for 7 rank subcontinent ### Answer: SELECT rank_world FROM table_2248784_3 WHERE rank_subcontinent = 7 |
Name the 2011 gdp for pakistan | CREATE TABLE table_2248784_3 (country VARCHAR) | SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_3 WHERE country = "Pakistan" | ### Context: CREATE TABLE table_2248784_3 (country VARCHAR) ### Question: Name the 2011 gdp for pakistan ### Answer: SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_3 WHERE country = "Pakistan" |
Name the 2011 gdp for 65 rank world | CREATE TABLE table_2248784_3 (rank_world VARCHAR) | SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_3 WHERE rank_world = 65 | ### Context: CREATE TABLE table_2248784_3 (rank_world VARCHAR) ### Question: Name the 2011 gdp for 65 rank world ### Answer: SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_3 WHERE rank_world = 65 |
Name the number of rank world for bhutan | CREATE TABLE table_2248784_3 (rank_world VARCHAR, country VARCHAR) | SELECT COUNT(rank_world) FROM table_2248784_3 WHERE country = "Bhutan" | ### Context: CREATE TABLE table_2248784_3 (rank_world VARCHAR, country VARCHAR) ### Question: Name the number of rank world for bhutan ### Answer: SELECT COUNT(rank_world) FROM table_2248784_3 WHERE country = "Bhutan" |
How many items were listed under world rank under the nation of Nigeria? | CREATE TABLE table_2248991_2 (world_rank VARCHAR, nation VARCHAR) | SELECT COUNT(world_rank) FROM table_2248991_2 WHERE nation = "Nigeria" | ### Context: CREATE TABLE table_2248991_2 (world_rank VARCHAR, nation VARCHAR) ### Question: How many items were listed under world rank under the nation of Nigeria? ### Answer: SELECT COUNT(world_rank) FROM table_2248991_2 WHERE nation = "Nigeria" |
How many items are listed under gdp per capita under the nation of Burkina Faso? | CREATE TABLE table_2248991_2 (gdp_per_capita VARCHAR, nation VARCHAR) | SELECT COUNT(gdp_per_capita) FROM table_2248991_2 WHERE nation = "Burkina Faso" | ### Context: CREATE TABLE table_2248991_2 (gdp_per_capita VARCHAR, nation VARCHAR) ### Question: How many items are listed under gdp per capita under the nation of Burkina Faso? ### Answer: SELECT COUNT(gdp_per_capita) FROM table_2248991_2 WHERE nation = "Burkina Faso" |
What is the total gdp world rank when the gdp per capita was listed at $1,163? | CREATE TABLE table_2248991_2 (total_gdp_world_rank INTEGER, gdp_per_capita VARCHAR) | SELECT MIN(total_gdp_world_rank) FROM table_2248991_2 WHERE gdp_per_capita = "$1,163" | ### Context: CREATE TABLE table_2248991_2 (total_gdp_world_rank INTEGER, gdp_per_capita VARCHAR) ### Question: What is the total gdp world rank when the gdp per capita was listed at $1,163? ### Answer: SELECT MIN(total_gdp_world_rank) FROM table_2248991_2 WHERE gdp_per_capita = "$1,163" |
Name the least world rank for south american rank 3 | CREATE TABLE table_2249087_1 (world_rank INTEGER, south_american_rank VARCHAR) | SELECT MIN(world_rank) FROM table_2249087_1 WHERE south_american_rank = 3 | ### Context: CREATE TABLE table_2249087_1 (world_rank INTEGER, south_american_rank VARCHAR) ### Question: Name the least world rank for south american rank 3 ### Answer: SELECT MIN(world_rank) FROM table_2249087_1 WHERE south_american_rank = 3 |
Name the south american rank for venezuela | CREATE TABLE table_2249087_1 (south_american_rank INTEGER, nation VARCHAR) | SELECT MIN(south_american_rank) FROM table_2249087_1 WHERE nation = "Venezuela" | ### Context: CREATE TABLE table_2249087_1 (south_american_rank INTEGER, nation VARCHAR) ### Question: Name the south american rank for venezuela ### Answer: SELECT MIN(south_american_rank) FROM table_2249087_1 WHERE nation = "Venezuela" |
How many weight stats are there for players from San Francisco, CA? | CREATE TABLE table_22496374_1 (weight VARCHAR, home_town VARCHAR) | SELECT COUNT(weight) FROM table_22496374_1 WHERE home_town = "San Francisco, CA" | ### Context: CREATE TABLE table_22496374_1 (weight VARCHAR, home_town VARCHAR) ### Question: How many weight stats are there for players from San Francisco, CA? ### Answer: SELECT COUNT(weight) FROM table_22496374_1 WHERE home_town = "San Francisco, CA" |
What was rickie winslow's number? | CREATE TABLE table_22496374_1 (_number INTEGER, name VARCHAR) | SELECT MAX(_number) FROM table_22496374_1 WHERE name = "Rickie Winslow" | ### Context: CREATE TABLE table_22496374_1 (_number INTEGER, name VARCHAR) ### Question: What was rickie winslow's number? ### Answer: SELECT MAX(_number) FROM table_22496374_1 WHERE name = "Rickie Winslow" |
How many height entries are there for players from lagos, nigeria? | CREATE TABLE table_22496374_1 (height VARCHAR, home_town VARCHAR) | SELECT COUNT(height) FROM table_22496374_1 WHERE home_town = "Lagos, Nigeria" | ### Context: CREATE TABLE table_22496374_1 (height VARCHAR, home_town VARCHAR) ### Question: How many height entries are there for players from lagos, nigeria? ### Answer: SELECT COUNT(height) FROM table_22496374_1 WHERE home_town = "Lagos, Nigeria" |
What is the hometown of the players from alvin high school? | CREATE TABLE table_22496374_1 (home_town VARCHAR, high_school VARCHAR) | SELECT home_town FROM table_22496374_1 WHERE high_school = "Alvin" | ### Context: CREATE TABLE table_22496374_1 (home_town VARCHAR, high_school VARCHAR) ### Question: What is the hometown of the players from alvin high school? ### Answer: SELECT home_town FROM table_22496374_1 WHERE high_school = "Alvin" |
How many height entries are there for players from bayside high school? | CREATE TABLE table_22496374_1 (height VARCHAR, high_school VARCHAR) | SELECT COUNT(height) FROM table_22496374_1 WHERE high_school = "Bayside" | ### Context: CREATE TABLE table_22496374_1 (height VARCHAR, high_school VARCHAR) ### Question: How many height entries are there for players from bayside high school? ### Answer: SELECT COUNT(height) FROM table_22496374_1 WHERE high_school = "Bayside" |
How many reasons for change were listed when Edward Hempstead was the successor? | CREATE TABLE table_225095_4 (reason_for_change VARCHAR, successor VARCHAR) | SELECT COUNT(reason_for_change) FROM table_225095_4 WHERE successor = "Edward Hempstead" | ### Context: CREATE TABLE table_225095_4 (reason_for_change VARCHAR, successor VARCHAR) ### Question: How many reasons for change were listed when Edward Hempstead was the successor? ### Answer: SELECT COUNT(reason_for_change) FROM table_225095_4 WHERE successor = "Edward Hempstead" |
How many Vacators were listed when the district was North Carolina 3rd? | CREATE TABLE table_225095_4 (vacator VARCHAR, district VARCHAR) | SELECT COUNT(vacator) FROM table_225095_4 WHERE district = "North Carolina 3rd" | ### Context: CREATE TABLE table_225095_4 (vacator VARCHAR, district VARCHAR) ### Question: How many Vacators were listed when the district was North Carolina 3rd? ### Answer: SELECT COUNT(vacator) FROM table_225095_4 WHERE district = "North Carolina 3rd" |
Who was the vacator when Shadrach Bond was the successor? | CREATE TABLE table_225095_4 (vacator VARCHAR, successor VARCHAR) | SELECT vacator FROM table_225095_4 WHERE successor = "Shadrach Bond" | ### Context: CREATE TABLE table_225095_4 (vacator VARCHAR, successor VARCHAR) ### Question: Who was the vacator when Shadrach Bond was the successor? ### Answer: SELECT vacator FROM table_225095_4 WHERE successor = "Shadrach Bond" |
When was the successor who got his seat because of "until august 2, 1813" seated? | CREATE TABLE table_225096_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR) | SELECT date_successor_seated FROM table_225096_4 WHERE reason_for_change = "Until August 2, 1813" | ### Context: CREATE TABLE table_225096_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR) ### Question: When was the successor who got his seat because of "until august 2, 1813" seated? ### Answer: SELECT date_successor_seated FROM table_225096_4 WHERE reason_for_change = "Until August 2, 1813" |
The successor for the Massachusetts 20th district was seated on what date? | CREATE TABLE table_225098_4 (date_successor_seated VARCHAR, district VARCHAR) | SELECT date_successor_seated FROM table_225098_4 WHERE district = "Massachusetts 20th" | ### Context: CREATE TABLE table_225098_4 (date_successor_seated VARCHAR, district VARCHAR) ### Question: The successor for the Massachusetts 20th district was seated on what date? ### Answer: SELECT date_successor_seated FROM table_225098_4 WHERE district = "Massachusetts 20th" |
Who vacated the Pennsylvania 6th district? | CREATE TABLE table_225098_4 (vacator VARCHAR, district VARCHAR) | SELECT vacator FROM table_225098_4 WHERE district = "Pennsylvania 6th" | ### Context: CREATE TABLE table_225098_4 (vacator VARCHAR, district VARCHAR) ### Question: Who vacated the Pennsylvania 6th district? ### Answer: SELECT vacator FROM table_225098_4 WHERE district = "Pennsylvania 6th" |
Who was the successor for the state of Maine (2) ? | CREATE TABLE table_225099_3 (successor VARCHAR, state__class_ VARCHAR) | SELECT successor FROM table_225099_3 WHERE state__class_ = "Maine (2)" | ### Context: CREATE TABLE table_225099_3 (successor VARCHAR, state__class_ VARCHAR) ### Question: Who was the successor for the state of Maine (2) ? ### Answer: SELECT successor FROM table_225099_3 WHERE state__class_ = "Maine (2)" |
What is the date of successors formal installation when the reason for change is resigned december 4, 1819? | CREATE TABLE table_225099_3 (date_of_successors_formal_installation VARCHAR, reason_for_change VARCHAR) | SELECT date_of_successors_formal_installation FROM table_225099_3 WHERE reason_for_change = "Resigned December 4, 1819" | ### Context: CREATE TABLE table_225099_3 (date_of_successors_formal_installation VARCHAR, reason_for_change VARCHAR) ### Question: What is the date of successors formal installation when the reason for change is resigned december 4, 1819? ### Answer: SELECT date_of_successors_formal_installation FROM table_225099_3 WHE... |
How many entries are shown for date of successors formal installation where successor is john w. walker (dr)? | CREATE TABLE table_225099_3 (date_of_successors_formal_installation VARCHAR, successor VARCHAR) | SELECT COUNT(date_of_successors_formal_installation) FROM table_225099_3 WHERE successor = "John W. Walker (DR)" | ### Context: CREATE TABLE table_225099_3 (date_of_successors_formal_installation VARCHAR, successor VARCHAR) ### Question: How many entries are shown for date of successors formal installation where successor is john w. walker (dr)? ### Answer: SELECT COUNT(date_of_successors_formal_installation) FROM table_225099_3 WH... |
what is the state for reason for change is resigned may 15, 1820? | CREATE TABLE table_225099_3 (state__class_ VARCHAR, reason_for_change VARCHAR) | SELECT state__class_ FROM table_225099_3 WHERE reason_for_change = "Resigned May 15, 1820" | ### Context: CREATE TABLE table_225099_3 (state__class_ VARCHAR, reason_for_change VARCHAR) ### Question: what is the state for reason for change is resigned may 15, 1820? ### Answer: SELECT state__class_ FROM table_225099_3 WHERE reason_for_change = "Resigned May 15, 1820" |
Who is the trophy presentation in the year 1987? | CREATE TABLE table_22514845_4 (trophy_presentation VARCHAR, year VARCHAR) | SELECT trophy_presentation FROM table_22514845_4 WHERE year = 1987 | ### Context: CREATE TABLE table_22514845_4 (trophy_presentation VARCHAR, year VARCHAR) ### Question: Who is the trophy presentation in the year 1987? ### Answer: SELECT trophy_presentation FROM table_22514845_4 WHERE year = 1987 |
Which network has s analyst of eddie arcaro? | CREATE TABLE table_22514845_4 (network VARCHAR, s_analyst VARCHAR) | SELECT network FROM table_22514845_4 WHERE s_analyst = "Eddie Arcaro" | ### Context: CREATE TABLE table_22514845_4 (network VARCHAR, s_analyst VARCHAR) ### Question: Which network has s analyst of eddie arcaro? ### Answer: SELECT network FROM table_22514845_4 WHERE s_analyst = "Eddie Arcaro" |
Who are the reporters for the year of 1984? | CREATE TABLE table_22514845_4 (reporters VARCHAR, year VARCHAR) | SELECT reporters FROM table_22514845_4 WHERE year = 1984 | ### Context: CREATE TABLE table_22514845_4 (reporters VARCHAR, year VARCHAR) ### Question: Who are the reporters for the year of 1984? ### Answer: SELECT reporters FROM table_22514845_4 WHERE year = 1984 |
How many trophy presentations where in the year 1987? | CREATE TABLE table_22514845_4 (trophy_presentation VARCHAR, year VARCHAR) | SELECT COUNT(trophy_presentation) FROM table_22514845_4 WHERE year = 1987 | ### Context: CREATE TABLE table_22514845_4 (trophy_presentation VARCHAR, year VARCHAR) ### Question: How many trophy presentations where in the year 1987? ### Answer: SELECT COUNT(trophy_presentation) FROM table_22514845_4 WHERE year = 1987 |
In which year were howard cosell and jack whitaker reporters and s analyst is bill hartack? | CREATE TABLE table_22514845_4 (year INTEGER, reporters VARCHAR, s_analyst VARCHAR) | SELECT MIN(year) FROM table_22514845_4 WHERE reporters = "Howard Cosell and Jack Whitaker" AND s_analyst = "Bill Hartack" | ### Context: CREATE TABLE table_22514845_4 (year INTEGER, reporters VARCHAR, s_analyst VARCHAR) ### Question: In which year were howard cosell and jack whitaker reporters and s analyst is bill hartack? ### Answer: SELECT MIN(year) FROM table_22514845_4 WHERE reporters = "Howard Cosell and Jack Whitaker" AND s_analyst =... |
Who is the race caller when jim mckay and al michaels were s hosts in the year 1987? | CREATE TABLE table_22514845_4 (race_caller VARCHAR, s_host VARCHAR, year VARCHAR) | SELECT race_caller FROM table_22514845_4 WHERE s_host = "Jim McKay and Al Michaels" AND year = 1987 | ### Context: CREATE TABLE table_22514845_4 (race_caller VARCHAR, s_host VARCHAR, year VARCHAR) ### Question: Who is the race caller when jim mckay and al michaels were s hosts in the year 1987? ### Answer: SELECT race_caller FROM table_22514845_4 WHERE s_host = "Jim McKay and Al Michaels" AND year = 1987 |
Name the host for john rotz and howard cosell | CREATE TABLE table_22514845_5 (s_host VARCHAR, s_analyst VARCHAR) | SELECT s_host FROM table_22514845_5 WHERE s_analyst = "John Rotz and Howard Cosell" | ### Context: CREATE TABLE table_22514845_5 (s_host VARCHAR, s_analyst VARCHAR) ### Question: Name the host for john rotz and howard cosell ### Answer: SELECT s_host FROM table_22514845_5 WHERE s_analyst = "John Rotz and Howard Cosell" |
Name the race caller for jim mckay and howard cosell | CREATE TABLE table_22514845_5 (race_caller VARCHAR, s_host VARCHAR, reporters VARCHAR) | SELECT race_caller FROM table_22514845_5 WHERE s_host = "Jim McKay" AND reporters = "Howard Cosell" | ### Context: CREATE TABLE table_22514845_5 (race_caller VARCHAR, s_host VARCHAR, reporters VARCHAR) ### Question: Name the race caller for jim mckay and howard cosell ### Answer: SELECT race_caller FROM table_22514845_5 WHERE s_host = "Jim McKay" AND reporters = "Howard Cosell" |
Name the race caller for jim mckay and howard cosell and eddie arcaro | CREATE TABLE table_22514845_5 (race_caller VARCHAR, s_analyst VARCHAR, trophy_presentation VARCHAR, reporters VARCHAR) | SELECT race_caller FROM table_22514845_5 WHERE trophy_presentation = "Jim McKay and Howard Cosell" AND reporters = "Howard Cosell" AND s_analyst = "Eddie Arcaro" | ### Context: CREATE TABLE table_22514845_5 (race_caller VARCHAR, s_analyst VARCHAR, trophy_presentation VARCHAR, reporters VARCHAR) ### Question: Name the race caller for jim mckay and howard cosell and eddie arcaro ### Answer: SELECT race_caller FROM table_22514845_5 WHERE trophy_presentation = "Jim McKay and Howard C... |
Name the reporters for dave johnson for eddie arcaro and howard cosell | CREATE TABLE table_22514845_5 (reporters VARCHAR, race_caller VARCHAR, s_analyst VARCHAR) | SELECT reporters FROM table_22514845_5 WHERE race_caller = "Dave Johnson" AND s_analyst = "Eddie Arcaro and Howard Cosell" | ### Context: CREATE TABLE table_22514845_5 (reporters VARCHAR, race_caller VARCHAR, s_analyst VARCHAR) ### Question: Name the reporters for dave johnson for eddie arcaro and howard cosell ### Answer: SELECT reporters FROM table_22514845_5 WHERE race_caller = "Dave Johnson" AND s_analyst = "Eddie Arcaro and Howard Cose... |
Name the reporters for howard cosell | CREATE TABLE table_22514845_5 (reporters VARCHAR, s_analyst VARCHAR) | SELECT reporters FROM table_22514845_5 WHERE s_analyst = "Howard Cosell" | ### Context: CREATE TABLE table_22514845_5 (reporters VARCHAR, s_analyst VARCHAR) ### Question: Name the reporters for howard cosell ### Answer: SELECT reporters FROM table_22514845_5 WHERE s_analyst = "Howard Cosell" |
Name the number of reporters for heywood hale broun | CREATE TABLE table_22514845_5 (reporters VARCHAR, s_analyst VARCHAR) | SELECT COUNT(reporters) FROM table_22514845_5 WHERE s_analyst = "Heywood Hale Broun" | ### Context: CREATE TABLE table_22514845_5 (reporters VARCHAR, s_analyst VARCHAR) ### Question: Name the number of reporters for heywood hale broun ### Answer: SELECT COUNT(reporters) FROM table_22514845_5 WHERE s_analyst = "Heywood Hale Broun" |
Which province has an elevation of 4550? | CREATE TABLE table_2251578_4 (province VARCHAR, elevation__m_ VARCHAR) | SELECT province FROM table_2251578_4 WHERE elevation__m_ = 4550 | ### Context: CREATE TABLE table_2251578_4 (province VARCHAR, elevation__m_ VARCHAR) ### Question: Which province has an elevation of 4550? ### Answer: SELECT province FROM table_2251578_4 WHERE elevation__m_ = 4550 |
Which province is in the district of San Antonio de Chuca? | CREATE TABLE table_2251578_4 (province VARCHAR, district VARCHAR) | SELECT province FROM table_2251578_4 WHERE district = "San Antonio de Chuca" | ### Context: CREATE TABLE table_2251578_4 (province VARCHAR, district VARCHAR) ### Question: Which province is in the district of San Antonio de Chuca? ### Answer: SELECT province FROM table_2251578_4 WHERE district = "San Antonio de Chuca" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.