question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Where is the City of Douala?
CREATE TABLE table_name_59 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_59 WHERE city = "douala"
### Context: CREATE TABLE table_name_59 (country VARCHAR, city VARCHAR) ### Question: Where is the City of Douala? ### Answer: SELECT country FROM table_name_59 WHERE city = "douala"
Which airport is in South Africa and has a ICAO fajs?
CREATE TABLE table_name_44 (airport VARCHAR, country VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_44 WHERE country = "south africa" AND icao = "fajs"
### Context: CREATE TABLE table_name_44 (airport VARCHAR, country VARCHAR, icao VARCHAR) ### Question: Which airport is in South Africa and has a ICAO fajs? ### Answer: SELECT airport FROM table_name_44 WHERE country = "south africa" AND icao = "fajs"
What is Cuba's ICAO?
CREATE TABLE table_name_63 (icao VARCHAR, country VARCHAR)
SELECT icao FROM table_name_63 WHERE country = "cuba"
### Context: CREATE TABLE table_name_63 (icao VARCHAR, country VARCHAR) ### Question: What is Cuba's ICAO? ### Answer: SELECT icao FROM table_name_63 WHERE country = "cuba"
What is Angola's airport and ICAO of fnsa?
CREATE TABLE table_name_75 (airport VARCHAR, country VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_75 WHERE country = "angola" AND icao = "fnsa"
### Context: CREATE TABLE table_name_75 (airport VARCHAR, country VARCHAR, icao VARCHAR) ### Question: What is Angola's airport and ICAO of fnsa? ### Answer: SELECT airport FROM table_name_75 WHERE country = "angola" AND icao = "fnsa"
What team plays at home at Windy Hill?
CREATE TABLE table_name_28 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_28 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_28 (home_team VARCHAR, venue VARCHAR) ### Question: What team plays at home at Windy Hill? ### Answer: SELECT home_team FROM table_name_28 WHERE venue = "windy hill"
What was Footscray's score as an away team?
CREATE TABLE table_name_45 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_45 WHERE away_team = "footscray"
### Context: CREATE TABLE table_name_45 (away_team VARCHAR) ### Question: What was Footscray's score as an away team? ### Answer: SELECT away_team AS score FROM table_name_45 WHERE away_team = "footscray"
What day is richmond the away side?
CREATE TABLE table_name_71 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_71 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_71 (date VARCHAR, away_team VARCHAR) ### Question: What day is richmond the away side? ### Answer: SELECT date FROM table_name_71 WHERE away_team = "richmond"
Who is the home team when hawthorn is the away team?
CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_95 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR) ### Question: Who is the home team when hawthorn is the away team? ### Answer: SELECT home_team FROM table_name_95 WHERE away_team = "hawthorn"
What is the name of the game with odds of winning 1 in 4.23 with a top prize of $15,000?
CREATE TABLE table_name_92 (game_name VARCHAR, odds_of_winning VARCHAR, top_prize VARCHAR)
SELECT game_name FROM table_name_92 WHERE odds_of_winning = "1 in 4.23" AND top_prize = "$15,000"
### Context: CREATE TABLE table_name_92 (game_name VARCHAR, odds_of_winning VARCHAR, top_prize VARCHAR) ### Question: What is the name of the game with odds of winning 1 in 4.23 with a top prize of $15,000? ### Answer: SELECT game_name FROM table_name_92 WHERE odds_of_winning = "1 in 4.23" AND top_prize = "$15,000"
What is the launch date odds of winning 1 in 4.23 with a top prize of $15,000?
CREATE TABLE table_name_30 (launch_date VARCHAR, odds_of_winning VARCHAR, top_prize VARCHAR)
SELECT launch_date FROM table_name_30 WHERE odds_of_winning = "1 in 4.23" AND top_prize = "$15,000"
### Context: CREATE TABLE table_name_30 (launch_date VARCHAR, odds_of_winning VARCHAR, top_prize VARCHAR) ### Question: What is the launch date odds of winning 1 in 4.23 with a top prize of $15,000? ### Answer: SELECT launch_date FROM table_name_30 WHERE odds_of_winning = "1 in 4.23" AND top_prize = "$15,000"
What is the launch date odds of winning 1 in 4.54?
CREATE TABLE table_name_2 (launch_date VARCHAR, odds_of_winning VARCHAR)
SELECT launch_date FROM table_name_2 WHERE odds_of_winning = "1 in 4.54"
### Context: CREATE TABLE table_name_2 (launch_date VARCHAR, odds_of_winning VARCHAR) ### Question: What is the launch date odds of winning 1 in 4.54? ### Answer: SELECT launch_date FROM table_name_2 WHERE odds_of_winning = "1 in 4.54"
What is the launch date odds of winning 1 in 4.44?
CREATE TABLE table_name_92 (launch_date VARCHAR, odds_of_winning VARCHAR)
SELECT launch_date FROM table_name_92 WHERE odds_of_winning = "1 in 4.44"
### Context: CREATE TABLE table_name_92 (launch_date VARCHAR, odds_of_winning VARCHAR) ### Question: What is the launch date odds of winning 1 in 4.44? ### Answer: SELECT launch_date FROM table_name_92 WHERE odds_of_winning = "1 in 4.44"
What is the name of the game with a top prize of $888?
CREATE TABLE table_name_55 (game_name VARCHAR, top_prize VARCHAR)
SELECT game_name FROM table_name_55 WHERE top_prize = "$888"
### Context: CREATE TABLE table_name_55 (game_name VARCHAR, top_prize VARCHAR) ### Question: What is the name of the game with a top prize of $888? ### Answer: SELECT game_name FROM table_name_55 WHERE top_prize = "$888"
What is the top price of $1 with a launch date on February 12, 2008?
CREATE TABLE table_name_3 (top_prize VARCHAR, price VARCHAR, launch_date VARCHAR)
SELECT top_prize FROM table_name_3 WHERE price = "$1" AND launch_date = "february 12, 2008"
### Context: CREATE TABLE table_name_3 (top_prize VARCHAR, price VARCHAR, launch_date VARCHAR) ### Question: What is the top price of $1 with a launch date on February 12, 2008? ### Answer: SELECT top_prize FROM table_name_3 WHERE price = "$1" AND launch_date = "february 12, 2008"
What is the highest number of laps when there are less than 5 points for team garry rogers motorsport and the grid number is under 23?
CREATE TABLE table_name_49 (laps INTEGER, grid VARCHAR, points VARCHAR, team VARCHAR)
SELECT MAX(laps) FROM table_name_49 WHERE points < 5 AND team = "garry rogers motorsport" AND grid < 23
### Context: CREATE TABLE table_name_49 (laps INTEGER, grid VARCHAR, points VARCHAR, team VARCHAR) ### Question: What is the highest number of laps when there are less than 5 points for team garry rogers motorsport and the grid number is under 23? ### Answer: SELECT MAX(laps) FROM table_name_49 WHERE points < 5 AND team = "garry rogers motorsport" AND grid < 23
What is the name of the driver who went 46 laps had less than 9 points and had a grid number under 12?
CREATE TABLE table_name_81 (name VARCHAR, grid VARCHAR, laps VARCHAR, points VARCHAR)
SELECT name FROM table_name_81 WHERE laps = 46 AND points < 9 AND grid < 12
### Context: CREATE TABLE table_name_81 (name VARCHAR, grid VARCHAR, laps VARCHAR, points VARCHAR) ### Question: What is the name of the driver who went 46 laps had less than 9 points and had a grid number under 12? ### Answer: SELECT name FROM table_name_81 WHERE laps = 46 AND points < 9 AND grid < 12
Where was the 1966 final played?
CREATE TABLE table_name_12 (finals_venue__surface_ VARCHAR, year VARCHAR)
SELECT finals_venue__surface_ FROM table_name_12 WHERE year = 1966
### Context: CREATE TABLE table_name_12 (finals_venue__surface_ VARCHAR, year VARCHAR) ### Question: Where was the 1966 final played? ### Answer: SELECT finals_venue__surface_ FROM table_name_12 WHERE year = 1966
What is the average Worst score for Mario Lopez as the Best dancer and Tango as the Dance?
CREATE TABLE table_name_81 (worst_score INTEGER, best_dancer VARCHAR, dance VARCHAR)
SELECT AVG(worst_score) FROM table_name_81 WHERE best_dancer = "mario lopez" AND dance = "tango"
### Context: CREATE TABLE table_name_81 (worst_score INTEGER, best_dancer VARCHAR, dance VARCHAR) ### Question: What is the average Worst score for Mario Lopez as the Best dancer and Tango as the Dance? ### Answer: SELECT AVG(worst_score) FROM table_name_81 WHERE best_dancer = "mario lopez" AND dance = "tango"
What is the highest Best score for the Dance Mambo?
CREATE TABLE table_name_47 (best_score INTEGER, dance VARCHAR)
SELECT MAX(best_score) FROM table_name_47 WHERE dance = "mambo"
### Context: CREATE TABLE table_name_47 (best_score INTEGER, dance VARCHAR) ### Question: What is the highest Best score for the Dance Mambo? ### Answer: SELECT MAX(best_score) FROM table_name_47 WHERE dance = "mambo"
Who is the Best dancer with the Worst dancer of Jerry Springer, a Best score of 29, and the Dance was the Quickstep?
CREATE TABLE table_name_47 (best_dancer VARCHAR, dance VARCHAR, worst_dancer VARCHAR, best_score VARCHAR)
SELECT best_dancer FROM table_name_47 WHERE worst_dancer = "jerry springer" AND best_score = 29 AND dance = "quickstep"
### Context: CREATE TABLE table_name_47 (best_dancer VARCHAR, dance VARCHAR, worst_dancer VARCHAR, best_score VARCHAR) ### Question: Who is the Best dancer with the Worst dancer of Jerry Springer, a Best score of 29, and the Dance was the Quickstep? ### Answer: SELECT best_dancer FROM table_name_47 WHERE worst_dancer = "jerry springer" AND best_score = 29 AND dance = "quickstep"
How many dances placed below 1 with a point total of 40?
CREATE TABLE table_name_69 (number_of_dances VARCHAR, place VARCHAR, total_points VARCHAR)
SELECT number_of_dances FROM table_name_69 WHERE place > 1 AND total_points = 40
### Context: CREATE TABLE table_name_69 (number_of_dances VARCHAR, place VARCHAR, total_points VARCHAR) ### Question: How many dances placed below 1 with a point total of 40? ### Answer: SELECT number_of_dances FROM table_name_69 WHERE place > 1 AND total_points = 40
What is the lowest number of dances with a rank larger than 4 and a place of 8?
CREATE TABLE table_name_93 (number_of_dances INTEGER, rank_by_average VARCHAR, place VARCHAR)
SELECT MIN(number_of_dances) FROM table_name_93 WHERE rank_by_average > 4 AND place = 8
### Context: CREATE TABLE table_name_93 (number_of_dances INTEGER, rank_by_average VARCHAR, place VARCHAR) ### Question: What is the lowest number of dances with a rank larger than 4 and a place of 8? ### Answer: SELECT MIN(number_of_dances) FROM table_name_93 WHERE rank_by_average > 4 AND place = 8
What is the lowest number of dances with a less than 2 place and an average smaller than 27.5?
CREATE TABLE table_name_83 (number_of_dances INTEGER, place VARCHAR, average VARCHAR)
SELECT MIN(number_of_dances) FROM table_name_83 WHERE place < 2 AND average < 27.5
### Context: CREATE TABLE table_name_83 (number_of_dances INTEGER, place VARCHAR, average VARCHAR) ### Question: What is the lowest number of dances with a less than 2 place and an average smaller than 27.5? ### Answer: SELECT MIN(number_of_dances) FROM table_name_83 WHERE place < 2 AND average < 27.5
What is the total difference for teams that played less than 6 games?
CREATE TABLE table_name_38 (diff INTEGER, played INTEGER)
SELECT SUM(diff) FROM table_name_38 WHERE played < 6
### Context: CREATE TABLE table_name_38 (diff INTEGER, played INTEGER) ### Question: What is the total difference for teams that played less than 6 games? ### Answer: SELECT SUM(diff) FROM table_name_38 WHERE played < 6
What is the highest number of games played for teams that lost over 5 games and had an against total of 228?
CREATE TABLE table_name_52 (played INTEGER, lost VARCHAR, against VARCHAR)
SELECT MAX(played) FROM table_name_52 WHERE lost > 5 AND against = 228
### Context: CREATE TABLE table_name_52 (played INTEGER, lost VARCHAR, against VARCHAR) ### Question: What is the highest number of games played for teams that lost over 5 games and had an against total of 228? ### Answer: SELECT MAX(played) FROM table_name_52 WHERE lost > 5 AND against = 228
How many games lost for team(s) with less than 4 paints and against total of over 340?
CREATE TABLE table_name_65 (lost VARCHAR, points VARCHAR, against VARCHAR)
SELECT COUNT(lost) FROM table_name_65 WHERE points < 4 AND against > 340
### Context: CREATE TABLE table_name_65 (lost VARCHAR, points VARCHAR, against VARCHAR) ### Question: How many games lost for team(s) with less than 4 paints and against total of over 340? ### Answer: SELECT COUNT(lost) FROM table_name_65 WHERE points < 4 AND against > 340
What week was the game that had an attendance of 24,242?
CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR)
SELECT week FROM table_name_34 WHERE attendance = "24,242"
### Context: CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR) ### Question: What week was the game that had an attendance of 24,242? ### Answer: SELECT week FROM table_name_34 WHERE attendance = "24,242"
What was the attendance of the game that had a score of l 35–14?
CREATE TABLE table_name_8 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_8 WHERE result = "l 35–14"
### Context: CREATE TABLE table_name_8 (attendance VARCHAR, result VARCHAR) ### Question: What was the attendance of the game that had a score of l 35–14? ### Answer: SELECT attendance FROM table_name_8 WHERE result = "l 35–14"
When was the pre-Week 10 game that had an attendance of over 38,865?
CREATE TABLE table_name_98 (date VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_98 WHERE week < 10 AND attendance = "38,865"
### Context: CREATE TABLE table_name_98 (date VARCHAR, week VARCHAR, attendance VARCHAR) ### Question: When was the pre-Week 10 game that had an attendance of over 38,865? ### Answer: SELECT date FROM table_name_98 WHERE week < 10 AND attendance = "38,865"
Which Location has a PPV Buyrate of 775,000?
CREATE TABLE table_name_26 (location VARCHAR, ppv_buyrate VARCHAR)
SELECT location FROM table_name_26 WHERE ppv_buyrate = "775,000"
### Context: CREATE TABLE table_name_26 (location VARCHAR, ppv_buyrate VARCHAR) ### Question: Which Location has a PPV Buyrate of 775,000? ### Answer: SELECT location FROM table_name_26 WHERE ppv_buyrate = "775,000"
Where did Geelong play as the away team?
CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_62 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR) ### Question: Where did Geelong play as the away team? ### Answer: SELECT venue FROM table_name_62 WHERE away_team = "geelong"
What was the away team's score against Hawthorn?
CREATE TABLE table_name_23 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_23 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_23 (away_team VARCHAR) ### Question: What was the away team's score against Hawthorn? ### Answer: SELECT away_team AS score FROM table_name_23 WHERE away_team = "hawthorn"
When Fitzroy was the home team, what was the away team's score?
CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_33 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR) ### Question: When Fitzroy was the home team, what was the away team's score? ### Answer: SELECT away_team AS score FROM table_name_33 WHERE home_team = "fitzroy"
How big was the largest crowd recorded at the Arden Street Oval venue?
CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_73 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR) ### Question: How big was the largest crowd recorded at the Arden Street Oval venue? ### Answer: SELECT MAX(crowd) FROM table_name_73 WHERE venue = "arden street oval"
What is the smallest attendance in week 1?
CREATE TABLE table_name_76 (attendance INTEGER, week VARCHAR)
SELECT MIN(attendance) FROM table_name_76 WHERE week = 1
### Context: CREATE TABLE table_name_76 (attendance INTEGER, week VARCHAR) ### Question: What is the smallest attendance in week 1? ### Answer: SELECT MIN(attendance) FROM table_name_76 WHERE week = 1
What is the larges week for the date august 9, 1968 and less than 64,020 in attendance?
CREATE TABLE table_name_14 (week INTEGER, date VARCHAR, attendance VARCHAR)
SELECT MAX(week) FROM table_name_14 WHERE date = "august 9, 1968" AND attendance < 64 OFFSET 020
### Context: CREATE TABLE table_name_14 (week INTEGER, date VARCHAR, attendance VARCHAR) ### Question: What is the larges week for the date august 9, 1968 and less than 64,020 in attendance? ### Answer: SELECT MAX(week) FROM table_name_14 WHERE date = "august 9, 1968" AND attendance < 64 OFFSET 020
What is the smallest attendance number for august 9, 1968?
CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_name_45 WHERE date = "august 9, 1968"
### Context: CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR) ### Question: What is the smallest attendance number for august 9, 1968? ### Answer: SELECT MIN(attendance) FROM table_name_45 WHERE date = "august 9, 1968"
What was the result of the game on august 30, 1968?
CREATE TABLE table_name_69 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_69 WHERE date = "august 30, 1968"
### Context: CREATE TABLE table_name_69 (result VARCHAR, date VARCHAR) ### Question: What was the result of the game on august 30, 1968? ### Answer: SELECT result FROM table_name_69 WHERE date = "august 30, 1968"
What is the class of the w267an call sign?
CREATE TABLE table_name_13 (class VARCHAR, call_sign VARCHAR)
SELECT class FROM table_name_13 WHERE call_sign = "w267an"
### Context: CREATE TABLE table_name_13 (class VARCHAR, call_sign VARCHAR) ### Question: What is the class of the w267an call sign? ### Answer: SELECT class FROM table_name_13 WHERE call_sign = "w267an"
What is the lowest ERP W of the 67829 Facility ID?
CREATE TABLE table_name_54 (erp_w INTEGER, facility_id VARCHAR)
SELECT MIN(erp_w) FROM table_name_54 WHERE facility_id = 67829
### Context: CREATE TABLE table_name_54 (erp_w INTEGER, facility_id VARCHAR) ### Question: What is the lowest ERP W of the 67829 Facility ID? ### Answer: SELECT MIN(erp_w) FROM table_name_54 WHERE facility_id = 67829
What is the FCC info for the call sign with a frequency MHz of 101.3, a ERP W over 10, and a Facility ID smaller than 87027?
CREATE TABLE table_name_52 (fcc_info VARCHAR, facility_id VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
SELECT fcc_info FROM table_name_52 WHERE frequency_mhz = 101.3 AND erp_w > 10 AND facility_id < 87027
### Context: CREATE TABLE table_name_52 (fcc_info VARCHAR, facility_id VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) ### Question: What is the FCC info for the call sign with a frequency MHz of 101.3, a ERP W over 10, and a Facility ID smaller than 87027? ### Answer: SELECT fcc_info FROM table_name_52 WHERE frequency_mhz = 101.3 AND erp_w > 10 AND facility_id < 87027
What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17?
CREATE TABLE table_name_29 (off_reb INTEGER, ftm_fta VARCHAR, steals VARCHAR)
SELECT AVG(off_reb) FROM table_name_29 WHERE ftm_fta = "16-17" AND steals < 8
### Context: CREATE TABLE table_name_29 (off_reb INTEGER, ftm_fta VARCHAR, steals VARCHAR) ### Question: What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17? ### Answer: SELECT AVG(off_reb) FROM table_name_29 WHERE ftm_fta = "16-17" AND steals < 8
Which song released on heavenly (hvn152)?
CREATE TABLE table_name_86 (song VARCHAR, release_info VARCHAR)
SELECT song FROM table_name_86 WHERE release_info = "heavenly (hvn152)"
### Context: CREATE TABLE table_name_86 (song VARCHAR, release_info VARCHAR) ### Question: Which song released on heavenly (hvn152)? ### Answer: SELECT song FROM table_name_86 WHERE release_info = "heavenly (hvn152)"
Which album had a release of heavenly (hvn95)?
CREATE TABLE table_name_56 (album VARCHAR, release_info VARCHAR)
SELECT album FROM table_name_56 WHERE release_info = "heavenly (hvn95)"
### Context: CREATE TABLE table_name_56 (album VARCHAR, release_info VARCHAR) ### Question: Which album had a release of heavenly (hvn95)? ### Answer: SELECT album FROM table_name_56 WHERE release_info = "heavenly (hvn95)"
What is the sum of all the rounds when a Florida State player was drafted?
CREATE TABLE table_name_8 (round VARCHAR, college VARCHAR)
SELECT COUNT(round) FROM table_name_8 WHERE college = "florida state"
### Context: CREATE TABLE table_name_8 (round VARCHAR, college VARCHAR) ### Question: What is the sum of all the rounds when a Florida State player was drafted? ### Answer: SELECT COUNT(round) FROM table_name_8 WHERE college = "florida state"
What is the average round in which a Safety with an overall rank higher than 89 was drafted?
CREATE TABLE table_name_41 (round INTEGER, position VARCHAR, overall VARCHAR)
SELECT AVG(round) FROM table_name_41 WHERE position = "safety" AND overall > 89
### Context: CREATE TABLE table_name_41 (round INTEGER, position VARCHAR, overall VARCHAR) ### Question: What is the average round in which a Safety with an overall rank higher than 89 was drafted? ### Answer: SELECT AVG(round) FROM table_name_41 WHERE position = "safety" AND overall > 89
Where was 2010 tournament where the United States received the silver?
CREATE TABLE table_name_18 (venue VARCHAR, silver VARCHAR, year VARCHAR)
SELECT venue FROM table_name_18 WHERE silver = "united states" AND year = 2010
### Context: CREATE TABLE table_name_18 (venue VARCHAR, silver VARCHAR, year VARCHAR) ### Question: Where was 2010 tournament where the United States received the silver? ### Answer: SELECT venue FROM table_name_18 WHERE silver = "united states" AND year = 2010
Where was the tournament where Finland received the bronze and the United States received the silver?
CREATE TABLE table_name_22 (venue VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT venue FROM table_name_22 WHERE bronze = "finland" AND silver = "united states"
### Context: CREATE TABLE table_name_22 (venue VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: Where was the tournament where Finland received the bronze and the United States received the silver? ### Answer: SELECT venue FROM table_name_22 WHERE bronze = "finland" AND silver = "united states"
Who received the gold at the tournament at bratislava where the Czech Republic received the silver?
CREATE TABLE table_name_58 (gold VARCHAR, silver VARCHAR, venue VARCHAR)
SELECT gold FROM table_name_58 WHERE silver = "czech republic" AND venue = "bratislava"
### Context: CREATE TABLE table_name_58 (gold VARCHAR, silver VARCHAR, venue VARCHAR) ### Question: Who received the gold at the tournament at bratislava where the Czech Republic received the silver? ### Answer: SELECT gold FROM table_name_58 WHERE silver = "czech republic" AND venue = "bratislava"
Where was the post 1991 tournament where the Czech Republic received the bronze and Russia received the silver?
CREATE TABLE table_name_40 (venue VARCHAR, silver VARCHAR, year VARCHAR, bronze VARCHAR)
SELECT venue FROM table_name_40 WHERE year > 1991 AND bronze = "czech republic" AND silver = "russia"
### Context: CREATE TABLE table_name_40 (venue VARCHAR, silver VARCHAR, year VARCHAR, bronze VARCHAR) ### Question: Where was the post 1991 tournament where the Czech Republic received the bronze and Russia received the silver? ### Answer: SELECT venue FROM table_name_40 WHERE year > 1991 AND bronze = "czech republic" AND silver = "russia"
Who was the away team at the game at Kardinia Park?
CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_99 WHERE venue = "kardinia park"
### Context: CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team at the game at Kardinia Park? ### Answer: SELECT away_team FROM table_name_99 WHERE venue = "kardinia park"
What was the smallest crowd for a Melbourne away game?
CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR) ### Question: What was the smallest crowd for a Melbourne away game? ### Answer: SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "melbourne"
What day did the team play on week 8?
CREATE TABLE table_name_55 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_55 WHERE week = 8
### Context: CREATE TABLE table_name_55 (date VARCHAR, week VARCHAR) ### Question: What day did the team play on week 8? ### Answer: SELECT date FROM table_name_55 WHERE week = 8
What was the average size of the crowd for matches held at Corio Oval?
CREATE TABLE table_name_28 (crowd INTEGER, venue VARCHAR)
SELECT AVG(crowd) FROM table_name_28 WHERE venue = "corio oval"
### Context: CREATE TABLE table_name_28 (crowd INTEGER, venue VARCHAR) ### Question: What was the average size of the crowd for matches held at Corio Oval? ### Answer: SELECT AVG(crowd) FROM table_name_28 WHERE venue = "corio oval"
What home team played against St Kilda?
CREATE TABLE table_name_68 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_68 WHERE away_team = "st kilda"
### Context: CREATE TABLE table_name_68 (home_team VARCHAR, away_team VARCHAR) ### Question: What home team played against St Kilda? ### Answer: SELECT home_team FROM table_name_68 WHERE away_team = "st kilda"
At what venue was South Melbourne the home team?
CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_87 WHERE home_team = "south melbourne"
### Context: CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR) ### Question: At what venue was South Melbourne the home team? ### Answer: SELECT venue FROM table_name_87 WHERE home_team = "south melbourne"
What was Hawthorn's score when they were the home team?
CREATE TABLE table_name_24 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_24 WHERE home_team = "hawthorn"
### Context: CREATE TABLE table_name_24 (home_team VARCHAR) ### Question: What was Hawthorn's score when they were the home team? ### Answer: SELECT home_team AS score FROM table_name_24 WHERE home_team = "hawthorn"
What was the home team's score when they played at Lake Oval?
CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_96 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home team's score when they played at Lake Oval? ### Answer: SELECT home_team AS score FROM table_name_96 WHERE venue = "lake oval"
What is the latest available income inequality for the country with a population of 21,315,135?
CREATE TABLE table_name_91 (income_inequality_1994_2011__latest_available_ VARCHAR, population_2011 VARCHAR)
SELECT income_inequality_1994_2011__latest_available_ FROM table_name_91 WHERE population_2011 = "21,315,135"
### Context: CREATE TABLE table_name_91 (income_inequality_1994_2011__latest_available_ VARCHAR, population_2011 VARCHAR) ### Question: What is the latest available income inequality for the country with a population of 21,315,135? ### Answer: SELECT income_inequality_1994_2011__latest_available_ FROM table_name_91 WHERE population_2011 = "21,315,135"
What is the IEF 2011 of the country with an FSI 2012 of 99.2?
CREATE TABLE table_name_96 (ief_2011 VARCHAR, fsi_2012 VARCHAR)
SELECT ief_2011 FROM table_name_96 WHERE fsi_2012 = "99.2"
### Context: CREATE TABLE table_name_96 (ief_2011 VARCHAR, fsi_2012 VARCHAR) ### Question: What is the IEF 2011 of the country with an FSI 2012 of 99.2? ### Answer: SELECT ief_2011 FROM table_name_96 WHERE fsi_2012 = "99.2"
What is the current income inequality for the country of Seychelles?
CREATE TABLE table_name_15 (income_inequality_1994_2011__latest_available_ VARCHAR, country VARCHAR)
SELECT income_inequality_1994_2011__latest_available_ FROM table_name_15 WHERE country = "seychelles"
### Context: CREATE TABLE table_name_15 (income_inequality_1994_2011__latest_available_ VARCHAR, country VARCHAR) ### Question: What is the current income inequality for the country of Seychelles? ### Answer: SELECT income_inequality_1994_2011__latest_available_ FROM table_name_15 WHERE country = "seychelles"
What is the HDI 2011 of the country with a DI 2011 of 7.63?
CREATE TABLE table_name_54 (hdi_2011 VARCHAR, di_2011 VARCHAR)
SELECT hdi_2011 FROM table_name_54 WHERE di_2011 = "7.63"
### Context: CREATE TABLE table_name_54 (hdi_2011 VARCHAR, di_2011 VARCHAR) ### Question: What is the HDI 2011 of the country with a DI 2011 of 7.63? ### Answer: SELECT hdi_2011 FROM table_name_54 WHERE di_2011 = "7.63"
What country has an IEF 2011 of 45.3?
CREATE TABLE table_name_46 (country VARCHAR, ief_2011 VARCHAR)
SELECT country FROM table_name_46 WHERE ief_2011 = "45.3"
### Context: CREATE TABLE table_name_46 (country VARCHAR, ief_2011 VARCHAR) ### Question: What country has an IEF 2011 of 45.3? ### Answer: SELECT country FROM table_name_46 WHERE ief_2011 = "45.3"
What date did South Melbourne play as the Away team?
CREATE TABLE table_name_79 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_79 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_79 (date VARCHAR, away_team VARCHAR) ### Question: What date did South Melbourne play as the Away team? ### Answer: SELECT date FROM table_name_79 WHERE away_team = "south melbourne"
Where did Essendon play as the home team?
CREATE TABLE table_name_95 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_95 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_95 (venue VARCHAR, home_team VARCHAR) ### Question: Where did Essendon play as the home team? ### Answer: SELECT venue FROM table_name_95 WHERE home_team = "essendon"
What position does the player from arkansas play?
CREATE TABLE table_name_54 (position VARCHAR, school_country VARCHAR)
SELECT position FROM table_name_54 WHERE school_country = "arkansas"
### Context: CREATE TABLE table_name_54 (position VARCHAR, school_country VARCHAR) ### Question: What position does the player from arkansas play? ### Answer: SELECT position FROM table_name_54 WHERE school_country = "arkansas"
Who is the away side at glenferrie oval?
CREATE TABLE table_name_90 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_90 WHERE venue = "glenferrie oval"
### Context: CREATE TABLE table_name_90 (away_team VARCHAR, venue VARCHAR) ### Question: Who is the away side at glenferrie oval? ### Answer: SELECT away_team FROM table_name_90 WHERE venue = "glenferrie oval"
What is the away side's score when richmond is at home?
CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_3 WHERE home_team = "richmond"
### Context: CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the away side's score when richmond is at home? ### Answer: SELECT away_team AS score FROM table_name_3 WHERE home_team = "richmond"
What was the crowd size at Collingwood's match?
CREATE TABLE table_name_43 (crowd VARCHAR, home_team VARCHAR)
SELECT crowd FROM table_name_43 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_43 (crowd VARCHAR, home_team VARCHAR) ### Question: What was the crowd size at Collingwood's match? ### Answer: SELECT crowd FROM table_name_43 WHERE home_team = "collingwood"
What was the crowd size at Arden Street Oval?
CREATE TABLE table_name_51 (crowd VARCHAR, venue VARCHAR)
SELECT crowd FROM table_name_51 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_51 (crowd VARCHAR, venue VARCHAR) ### Question: What was the crowd size at Arden Street Oval? ### Answer: SELECT crowd FROM table_name_51 WHERE venue = "arden street oval"
What is the status of the match between Scotland v Northern Ireland?
CREATE TABLE table_name_70 (status_of_match VARCHAR, fixture VARCHAR)
SELECT status_of_match FROM table_name_70 WHERE fixture = "scotland v northern ireland"
### Context: CREATE TABLE table_name_70 (status_of_match VARCHAR, fixture VARCHAR) ### Question: What is the status of the match between Scotland v Northern Ireland? ### Answer: SELECT status_of_match FROM table_name_70 WHERE fixture = "scotland v northern ireland"
In what week was the game on August 10, 1956 played?
CREATE TABLE table_name_54 (week INTEGER, date VARCHAR)
SELECT AVG(week) FROM table_name_54 WHERE date = "august 10, 1956"
### Context: CREATE TABLE table_name_54 (week INTEGER, date VARCHAR) ### Question: In what week was the game on August 10, 1956 played? ### Answer: SELECT AVG(week) FROM table_name_54 WHERE date = "august 10, 1956"
What was the attendance of the game in week 6?
CREATE TABLE table_name_9 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_9 WHERE week = 6
### Context: CREATE TABLE table_name_9 (attendance VARCHAR, week VARCHAR) ### Question: What was the attendance of the game in week 6? ### Answer: SELECT attendance FROM table_name_9 WHERE week = 6
In what week was the game on August 24, 1956 played in front of 40,175 fans?
CREATE TABLE table_name_10 (week INTEGER, date VARCHAR, attendance VARCHAR)
SELECT MAX(week) FROM table_name_10 WHERE date = "august 24, 1956" AND attendance > 40 OFFSET 175
### Context: CREATE TABLE table_name_10 (week INTEGER, date VARCHAR, attendance VARCHAR) ### Question: In what week was the game on August 24, 1956 played in front of 40,175 fans? ### Answer: SELECT MAX(week) FROM table_name_10 WHERE date = "august 24, 1956" AND attendance > 40 OFFSET 175
What signal quality does the KCAL-DT channel have?
CREATE TABLE table_name_96 (signal_quality VARCHAR, station_call_letters VARCHAR)
SELECT signal_quality FROM table_name_96 WHERE station_call_letters = "kcal-dt"
### Context: CREATE TABLE table_name_96 (signal_quality VARCHAR, station_call_letters VARCHAR) ### Question: What signal quality does the KCAL-DT channel have? ### Answer: SELECT signal_quality FROM table_name_96 WHERE station_call_letters = "kcal-dt"
What original channel is associated with B Mountain Channel 9?
CREATE TABLE table_name_39 (original_channel VARCHAR, b_mountain_channel VARCHAR)
SELECT original_channel FROM table_name_39 WHERE b_mountain_channel = "9"
### Context: CREATE TABLE table_name_39 (original_channel VARCHAR, b_mountain_channel VARCHAR) ### Question: What original channel is associated with B Mountain Channel 9? ### Answer: SELECT original_channel FROM table_name_39 WHERE b_mountain_channel = "9"
What B Mountain Channel has station call letters of k41go?
CREATE TABLE table_name_75 (b_mountain_channel VARCHAR, station_call_letters VARCHAR)
SELECT b_mountain_channel FROM table_name_75 WHERE station_call_letters = "k41go"
### Context: CREATE TABLE table_name_75 (b_mountain_channel VARCHAR, station_call_letters VARCHAR) ### Question: What B Mountain Channel has station call letters of k41go? ### Answer: SELECT b_mountain_channel FROM table_name_75 WHERE station_call_letters = "k41go"
What Laurel Mountain Channel is associated with B Mountain Channel of 7?
CREATE TABLE table_name_51 (laurel_mountain_channel VARCHAR, b_mountain_channel VARCHAR)
SELECT laurel_mountain_channel FROM table_name_51 WHERE b_mountain_channel = "7"
### Context: CREATE TABLE table_name_51 (laurel_mountain_channel VARCHAR, b_mountain_channel VARCHAR) ### Question: What Laurel Mountain Channel is associated with B Mountain Channel of 7? ### Answer: SELECT laurel_mountain_channel FROM table_name_51 WHERE b_mountain_channel = "7"
What are the translator call letters for station call letters of KCOP-DT?
CREATE TABLE table_name_94 (translator_call_letters VARCHAR, station_call_letters VARCHAR)
SELECT translator_call_letters FROM table_name_94 WHERE station_call_letters = "kcop-dt"
### Context: CREATE TABLE table_name_94 (translator_call_letters VARCHAR, station_call_letters VARCHAR) ### Question: What are the translator call letters for station call letters of KCOP-DT? ### Answer: SELECT translator_call_letters FROM table_name_94 WHERE station_call_letters = "kcop-dt"
What date was fitzroy the home team?
CREATE TABLE table_name_2 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_2 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_2 (date VARCHAR, home_team VARCHAR) ### Question: What date was fitzroy the home team? ### Answer: SELECT date FROM table_name_2 WHERE home_team = "fitzroy"
What was the score for the away team when the home team was richmond?
CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_75 WHERE home_team = "richmond"
### Context: CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the score for the away team when the home team was richmond? ### Answer: SELECT away_team AS score FROM table_name_75 WHERE home_team = "richmond"
What is the venue where the home team is Footscray?
CREATE TABLE table_name_57 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_57 WHERE home_team = "footscray"
### Context: CREATE TABLE table_name_57 (venue VARCHAR, home_team VARCHAR) ### Question: What is the venue where the home team is Footscray? ### Answer: SELECT venue FROM table_name_57 WHERE home_team = "footscray"
What is the venue for the game on 1 June 1929 where Richmond was the away team?
CREATE TABLE table_name_96 (venue VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_96 WHERE date = "1 june 1929" AND away_team = "richmond"
### Context: CREATE TABLE table_name_96 (venue VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: What is the venue for the game on 1 June 1929 where Richmond was the away team? ### Answer: SELECT venue FROM table_name_96 WHERE date = "1 june 1929" AND away_team = "richmond"
What was the speed of the rider that earned 1 point?
CREATE TABLE table_name_24 (speed VARCHAR, points VARCHAR)
SELECT speed FROM table_name_24 WHERE points = 1
### Context: CREATE TABLE table_name_24 (speed VARCHAR, points VARCHAR) ### Question: What was the speed of the rider that earned 1 point? ### Answer: SELECT speed FROM table_name_24 WHERE points = 1
What away team is playing at the Brunswick Street Oval Venue?
CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_22 WHERE venue = "brunswick street oval"
### Context: CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR) ### Question: What away team is playing at the Brunswick Street Oval Venue? ### Answer: SELECT away_team FROM table_name_22 WHERE venue = "brunswick street oval"
What date does the Home team of Richmond have?
CREATE TABLE table_name_32 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_32 WHERE home_team = "richmond"
### Context: CREATE TABLE table_name_32 (date VARCHAR, home_team VARCHAR) ### Question: What date does the Home team of Richmond have? ### Answer: SELECT date FROM table_name_32 WHERE home_team = "richmond"
Who is the home team at Victoria Park on 20 April 1957?
CREATE TABLE table_name_62 (home_team VARCHAR, date VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_62 WHERE date = "20 april 1957" AND venue = "victoria park"
### Context: CREATE TABLE table_name_62 (home_team VARCHAR, date VARCHAR, venue VARCHAR) ### Question: Who is the home team at Victoria Park on 20 April 1957? ### Answer: SELECT home_team FROM table_name_62 WHERE date = "20 april 1957" AND venue = "victoria park"
What municipality is the Harmon Cove station located in?
CREATE TABLE table_name_58 (municipality VARCHAR, station VARCHAR)
SELECT municipality FROM table_name_58 WHERE station = "harmon cove"
### Context: CREATE TABLE table_name_58 (municipality VARCHAR, station VARCHAR) ### Question: What municipality is the Harmon Cove station located in? ### Answer: SELECT municipality FROM table_name_58 WHERE station = "harmon cove"
What municipality is the Benson Street station located in?
CREATE TABLE table_name_53 (municipality VARCHAR, station VARCHAR)
SELECT municipality FROM table_name_53 WHERE station = "benson street"
### Context: CREATE TABLE table_name_53 (municipality VARCHAR, station VARCHAR) ### Question: What municipality is the Benson Street station located in? ### Answer: SELECT municipality FROM table_name_53 WHERE station = "benson street"
What date shows corrado barazzutti's partner?
CREATE TABLE table_name_99 (date VARCHAR, partner VARCHAR)
SELECT date FROM table_name_99 WHERE partner = "corrado barazzutti"
### Context: CREATE TABLE table_name_99 (date VARCHAR, partner VARCHAR) ### Question: What date shows corrado barazzutti's partner? ### Answer: SELECT date FROM table_name_99 WHERE partner = "corrado barazzutti"
Which date has the tom gullikson butch walts final, and who was the runner-up?
CREATE TABLE table_name_74 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_74 WHERE outcome = "runner-up" AND opponents_in_the_final = "tom gullikson butch walts"
### Context: CREATE TABLE table_name_74 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR) ### Question: Which date has the tom gullikson butch walts final, and who was the runner-up? ### Answer: SELECT date FROM table_name_74 WHERE outcome = "runner-up" AND opponents_in_the_final = "tom gullikson butch walts"
Who is the home team of the game against Essendon?
CREATE TABLE table_name_96 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_96 WHERE away_team = "essendon"
### Context: CREATE TABLE table_name_96 (home_team VARCHAR, away_team VARCHAR) ### Question: Who is the home team of the game against Essendon? ### Answer: SELECT home_team FROM table_name_96 WHERE away_team = "essendon"
Who is the color commentator for ESPN from 1990 to 1992?
CREATE TABLE table_name_70 (color_commentator_s_ VARCHAR, network VARCHAR)
SELECT color_commentator_s_ FROM table_name_70 WHERE network = "espn"
### Context: CREATE TABLE table_name_70 (color_commentator_s_ VARCHAR, network VARCHAR) ### Question: Who is the color commentator for ESPN from 1990 to 1992? ### Answer: SELECT color_commentator_s_ FROM table_name_70 WHERE network = "espn"
Who was the sideline reporter prior to 1993?
CREATE TABLE table_name_8 (sideline_reporter_s_ VARCHAR, year INTEGER)
SELECT sideline_reporter_s_ FROM table_name_8 WHERE year < 1993
### Context: CREATE TABLE table_name_8 (sideline_reporter_s_ VARCHAR, year INTEGER) ### Question: Who was the sideline reporter prior to 1993? ### Answer: SELECT sideline_reporter_s_ FROM table_name_8 WHERE year < 1993
Who was the play by play commentator for ABC after 1998?
CREATE TABLE table_name_61 (play_by_play VARCHAR, network VARCHAR, year VARCHAR)
SELECT play_by_play FROM table_name_61 WHERE network = "abc" AND year > 1998
### Context: CREATE TABLE table_name_61 (play_by_play VARCHAR, network VARCHAR, year VARCHAR) ### Question: Who was the play by play commentator for ABC after 1998? ### Answer: SELECT play_by_play FROM table_name_61 WHERE network = "abc" AND year > 1998
What's the earliest year that Al Michaels was the play-by-play commentator, in which Lesley Visser and Dan Fouts were also sideline reporters?
CREATE TABLE table_name_99 (year INTEGER, play_by_play VARCHAR, sideline_reporter_s_ VARCHAR)
SELECT MIN(year) FROM table_name_99 WHERE play_by_play = "al michaels" AND sideline_reporter_s_ = "lesley visser and dan fouts"
### Context: CREATE TABLE table_name_99 (year INTEGER, play_by_play VARCHAR, sideline_reporter_s_ VARCHAR) ### Question: What's the earliest year that Al Michaels was the play-by-play commentator, in which Lesley Visser and Dan Fouts were also sideline reporters? ### Answer: SELECT MIN(year) FROM table_name_99 WHERE play_by_play = "al michaels" AND sideline_reporter_s_ = "lesley visser and dan fouts"
For how many years combined were Frank Gifford and Dan Dierdorf color commentators?
CREATE TABLE table_name_61 (year VARCHAR, color_commentator_s_ VARCHAR)
SELECT COUNT(year) FROM table_name_61 WHERE color_commentator_s_ = "frank gifford and dan dierdorf"
### Context: CREATE TABLE table_name_61 (year VARCHAR, color_commentator_s_ VARCHAR) ### Question: For how many years combined were Frank Gifford and Dan Dierdorf color commentators? ### Answer: SELECT COUNT(year) FROM table_name_61 WHERE color_commentator_s_ = "frank gifford and dan dierdorf"
Which sideline reporters worked alongside Frank Gifford and Dan Dierdorf?
CREATE TABLE table_name_17 (sideline_reporter_s_ VARCHAR, color_commentator_s_ VARCHAR)
SELECT sideline_reporter_s_ FROM table_name_17 WHERE color_commentator_s_ = "frank gifford and dan dierdorf"
### Context: CREATE TABLE table_name_17 (sideline_reporter_s_ VARCHAR, color_commentator_s_ VARCHAR) ### Question: Which sideline reporters worked alongside Frank Gifford and Dan Dierdorf? ### Answer: SELECT sideline_reporter_s_ FROM table_name_17 WHERE color_commentator_s_ = "frank gifford and dan dierdorf"
When was the Lundy withdrawn?
CREATE TABLE table_name_49 (withdrawn VARCHAR, name VARCHAR)
SELECT withdrawn FROM table_name_49 WHERE name = "lundy"
### Context: CREATE TABLE table_name_49 (withdrawn VARCHAR, name VARCHAR) ### Question: When was the Lundy withdrawn? ### Answer: SELECT withdrawn FROM table_name_49 WHERE name = "lundy"
When was the locomotive named fighter command built?
CREATE TABLE table_name_28 (whenbuilt VARCHAR, name VARCHAR)
SELECT whenbuilt FROM table_name_28 WHERE name = "fighter command"
### Context: CREATE TABLE table_name_28 (whenbuilt VARCHAR, name VARCHAR) ### Question: When was the locomotive named fighter command built? ### Answer: SELECT whenbuilt FROM table_name_28 WHERE name = "fighter command"