combined_text stringlengths 106 1.05k |
|---|
###question:Where is the City of Douala?###answer:SELECT country FROM table_name_59 WHERE city = "douala"###context:CREATE TABLE table_name_59 (country VARCHAR, city 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"###context:CREATE TABLE table_name_44 (airport VARCHAR, country VARCHAR, icao VARCHAR) |
###question:What is Cuba's ICAO?###answer:SELECT icao FROM table_name_63 WHERE country = "cuba"###context:CREATE TABLE table_name_63 (icao VARCHAR, country VARCHAR) |
###question:What is Angola's airport and ICAO of fnsa?###answer: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 team plays at home at Windy Hill?###answer:SELECT home_team FROM table_name_28 WHERE venue = "windy hill"###context:CREATE TABLE table_name_28 (home_team VARCHAR, venue 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"###context:CREATE TABLE table_name_45 (away_team VARCHAR) |
###question:What day is richmond the away side?###answer:SELECT date FROM table_name_71 WHERE away_team = "richmond"###context:CREATE TABLE table_name_71 (date 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"###context:CREATE TABLE table_name_95 (home_team VARCHAR, away_team 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"###context:CREATE TABLE table_name_92 (game_name 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"###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.54?###answer: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.44?###answer: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 name of the game with a top prize of $888?###answer: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 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"###context:CREATE TABLE table_name_3 (top_prize VARCHAR, price VARCHAR, launch_date 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###context:CREATE TABLE table_name_49 (laps INTEGER, grid VAR... |
###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###context:CREATE TABLE table_name_81 (name VARCHAR, grid VARCHAR, laps VARCHAR, points VARCHAR) |
###question:Where was the 1966 final played?###answer:SELECT finals_venue__surface_ FROM table_name_12 WHERE year = 1966###context:CREATE TABLE table_name_12 (finals_venue__surface_ VARCHAR, year 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"###context:CREATE TABLE table_name_81 (worst_score INTEGER, best_dancer VARCHAR, 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"###context:CREATE TABLE table_name_47 (best_score INTEGER, dance 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"###context:CREATE TABLE table_name_47 (best_dancer VARCHAR, dan... |
###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###context:CREATE TABLE table_name_69 (number_of_dances VARCHAR, place VARCHAR, total_points 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###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 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###context:CREATE TABLE table_name_83 (number_of_dances INTEGER, place VARCHAR, average VARCHAR) |
###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###context:CREATE TABLE table_name_38 (diff INTEGER, played INTEGER) |
###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###context:CREATE TABLE table_name_52 (played INTEGER, lost 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###context:CREATE TABLE table_name_65 (lost VARCHAR, points VARCHAR, against 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"###context:CREATE TABLE table_name_34 (week VARCHAR, attendance 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"###context:CREATE TABLE table_name_8 (attendance VARCHAR, result 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"###context:CREATE TABLE table_name_98 (date VARCHAR, week VARCHAR, attendance VARCHAR) |
###question:Which Location has a PPV Buyrate of 775,000?###answer:SELECT location FROM table_name_26 WHERE ppv_buyrate = "775,000"###context:CREATE TABLE table_name_26 (location VARCHAR, ppv_buyrate VARCHAR) |
###question:Where did Geelong play as the away team?###answer:SELECT venue FROM table_name_62 WHERE away_team = "geelong"###context:CREATE TABLE table_name_62 (venue VARCHAR, 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"###context:CREATE TABLE table_name_23 (away_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"###context:CREATE TABLE table_name_33 (away_team VARCHAR, home_team 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"###context:CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR) |
###question:What is the smallest attendance in week 1?###answer:SELECT MIN(attendance) FROM table_name_76 WHERE week = 1###context:CREATE TABLE table_name_76 (attendance INTEGER, week 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###context:CREATE TABLE table_name_14 (week INTEGER, date VARCHAR, attendance 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"###context:CREATE TABLE table_name_45 (attendance INTEGER, 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"###context:CREATE TABLE table_name_69 (result VARCHAR, date VARCHAR) |
###question:What is the class of the w267an call sign?###answer: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 lowest ERP W of the 67829 Facility ID?###answer: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 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###context:CREATE TABLE table_name_52 (fcc_info VARCHAR, facility_id VARC... |
###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###context:CREATE TABLE table_name_29 (off_reb INTEGER, ftm_fta VARCHAR, steals VARCHAR) |
###question:Which song released on heavenly (hvn152)?###answer:SELECT song FROM table_name_86 WHERE release_info = "heavenly (hvn152)"###context:CREATE TABLE table_name_86 (song 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)"###context:CREATE TABLE table_name_56 (album VARCHAR, release_info 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"###context:CREATE TABLE table_name_8 (round VARCHAR, college 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###context:CREATE TABLE table_name_41 (round INTEGER, position VARCHAR, overall 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###context:CREATE TABLE table_name_18 (venue VARCHAR, silver VARCHAR, year 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"###context:CREATE TABLE table_name_22 (venue VARCHAR, bronze VARCHAR, silver 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"###context:CREATE TABLE table_name_58 (gold VARCHAR, silver VARCHAR, venue 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"###context:CREATE TABLE table_name_40 (venue VARCHAR, silver VARCHAR, year VARCHAR, br... |
###question:Who was the away team at the game at Kardinia Park?###answer:SELECT away_team FROM table_name_99 WHERE venue = "kardinia park"###context:CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR) |
###question:What was the smallest crowd for a Melbourne away game?###answer:SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "melbourne"###context:CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR) |
###question:What day did the team play on week 8?###answer:SELECT date FROM table_name_55 WHERE week = 8###context:CREATE TABLE table_name_55 (date VARCHAR, week 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"###context:CREATE TABLE table_name_28 (crowd INTEGER, venue VARCHAR) |
###question:What home team played against St Kilda?###answer: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:At what venue was South Melbourne the home team?###answer:SELECT venue FROM table_name_87 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_87 (venue VARCHAR, 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"###context:CREATE TABLE table_name_24 (home_team 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"###context:CREATE TABLE table_name_96 (home_team VARCHAR, venue 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"###context:CREATE TABLE table_name_91 (income_inequality_1994_2011__latest_available_ 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"###context:CREATE TABLE table_name_96 (ief_2011 VARCHAR, fsi_2012 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"###context:CREATE TABLE table_name_15 (income_inequality_1994_2011__latest_available_ VARCHAR, country 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"###context:CREATE TABLE table_name_54 (hdi_2011 VARCHAR, di_2011 VARCHAR) |
###question:What country has an IEF 2011 of 45.3?###answer:SELECT country FROM table_name_46 WHERE ief_2011 = "45.3"###context:CREATE TABLE table_name_46 (country VARCHAR, ief_2011 VARCHAR) |
###question:What date did South Melbourne play as the Away team?###answer:SELECT date FROM table_name_79 WHERE away_team = "south melbourne"###context:CREATE TABLE table_name_79 (date VARCHAR, away_team VARCHAR) |
###question:Where did Essendon play as the home team?###answer:SELECT venue FROM table_name_95 WHERE home_team = "essendon"###context:CREATE TABLE table_name_95 (venue VARCHAR, home_team VARCHAR) |
###question:What position does the player from arkansas play?###answer:SELECT position FROM table_name_54 WHERE school_country = "arkansas"###context:CREATE TABLE table_name_54 (position VARCHAR, school_country VARCHAR) |
###question:Who is the away side at glenferrie oval?###answer:SELECT away_team FROM table_name_90 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_90 (away_team VARCHAR, venue 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"###context:CREATE TABLE table_name_3 (away_team 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"###context:CREATE TABLE table_name_43 (crowd VARCHAR, home_team VARCHAR) |
###question:What was the crowd size at Arden Street Oval?###answer:SELECT crowd FROM table_name_51 WHERE venue = "arden street oval"###context:CREATE TABLE table_name_51 (crowd VARCHAR, venue 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"###context:CREATE TABLE table_name_70 (status_of_match VARCHAR, fixture 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"###context:CREATE TABLE table_name_54 (week INTEGER, date VARCHAR) |
###question:What was the attendance of the game in week 6?###answer:SELECT attendance FROM table_name_9 WHERE week = 6###context:CREATE TABLE table_name_9 (attendance VARCHAR, week 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###context:CREATE TABLE table_name_10 (week INTEGER, date VARCHAR, attendance 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"###context:CREATE TABLE table_name_96 (signal_quality VARCHAR, station_call_letters 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"###context:CREATE TABLE table_name_39 (original_channel VARCHAR, b_mountain_channel 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"###context:CREATE TABLE table_name_75 (b_mountain_channel VARCHAR, station_call_letters 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"###context:CREATE TABLE table_name_51 (laurel_mountain_channel VARCHAR, b_mountain_channel 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"###context:CREATE TABLE table_name_94 (translator_call_letters VARCHAR, station_call_letters VARCHAR) |
###question:What date was fitzroy the home team?###answer:SELECT date FROM table_name_2 WHERE home_team = "fitzroy"###context:CREATE TABLE table_name_2 (date 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"###context:CREATE TABLE table_name_75 (away_team 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"###context:CREATE TABLE table_name_57 (venue VARCHAR, home_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"###context:CREATE TABLE table_name_96 (venue VARCHAR, date VARCHAR, away_team VARCHAR) |
###question:What was the speed of the rider that earned 1 point?###answer:SELECT speed FROM table_name_24 WHERE points = 1###context:CREATE TABLE table_name_24 (speed VARCHAR, points 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"###context:CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR) |
###question:What date does the Home team of Richmond have?###answer:SELECT date FROM table_name_32 WHERE home_team = "richmond"###context:CREATE TABLE table_name_32 (date VARCHAR, home_team 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"###context:CREATE TABLE table_name_62 (home_team VARCHAR, date VARCHAR, venue VARCHAR) |
###question:What municipality is the Harmon Cove station located in?###answer: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 Benson Street station located in?###answer:SELECT municipality FROM table_name_53 WHERE station = "benson street"###context:CREATE TABLE table_name_53 (municipality VARCHAR, station VARCHAR) |
###question:What date shows corrado barazzutti's partner?###answer:SELECT date FROM table_name_99 WHERE partner = "corrado barazzutti"###context:CREATE TABLE table_name_99 (date VARCHAR, partner 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"###context:CREATE TABLE table_name_74 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR) |
###question:Who is the home team of the game against Essendon?###answer: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 color commentator for ESPN from 1990 to 1992?###answer: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 was the sideline reporter prior to 1993?###answer: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 play by play commentator for ABC after 1998?###answer: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: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"###context:CREATE TABLE table... |
###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"###context:CREATE TABLE table_name_61 (year 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"###context:CREATE TABLE table_name_17 (sideline_reporter_s_ VARCHAR, color_commentator_s_ VARCHAR) |
###question:When was the Lundy withdrawn?###answer:SELECT withdrawn FROM table_name_49 WHERE name = "lundy"###context:CREATE TABLE table_name_49 (withdrawn VARCHAR, name VARCHAR) |
###question:When was the locomotive named fighter command built?###answer:SELECT whenbuilt FROM table_name_28 WHERE name = "fighter command"###context:CREATE TABLE table_name_28 (whenbuilt VARCHAR, name VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.