Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
42,700 | <question>: Where is the City of Douala? <context>: CREATE TABLE table_name_59 (country VARCHAR, city VARCHAR) | SELECT country FROM table_name_59 WHERE city = "douala" |
42,701 | <question>: Which airport is in South Africa and has a ICAO fajs? <context>: CREATE TABLE table_name_44 (airport VARCHAR, country VARCHAR, icao VARCHAR) | SELECT airport FROM table_name_44 WHERE country = "south africa" AND icao = "fajs" |
42,702 | <question>: What is Cuba's ICAO? <context>: CREATE TABLE table_name_63 (icao VARCHAR, country VARCHAR) | SELECT icao FROM table_name_63 WHERE country = "cuba" |
42,703 | <question>: What is Angola's airport and ICAO of fnsa? <context>: CREATE TABLE table_name_75 (airport VARCHAR, country VARCHAR, icao VARCHAR) | SELECT airport FROM table_name_75 WHERE country = "angola" AND icao = "fnsa" |
42,704 | <question>: What team plays at home at Windy Hill? <context>: CREATE TABLE table_name_28 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_28 WHERE venue = "windy hill" |
42,705 | <question>: What was Footscray's score as an away team? <context>: CREATE TABLE table_name_45 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_45 WHERE away_team = "footscray" |
42,706 | <question>: What day is richmond the away side? <context>: CREATE TABLE table_name_71 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_71 WHERE away_team = "richmond" |
42,707 | <question>: Who is the home team when hawthorn is the away team? <context>: CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_95 WHERE away_team = "hawthorn" |
42,708 | <question>: What is the name of the game with odds of winning 1 in 4.23 with a top prize of $15,000? <context>: 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" |
42,709 | <question>: What is the launch date odds of winning 1 in 4.23 with a top prize of $15,000? <context>: 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" |
42,710 | <question>: What is the launch date odds of winning 1 in 4.54? <context>: 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" |
42,711 | <question>: What is the launch date odds of winning 1 in 4.44? <context>: 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" |
42,712 | <question>: What is the name of the game with a top prize of $888? <context>: CREATE TABLE table_name_55 (game_name VARCHAR, top_prize VARCHAR) | SELECT game_name FROM table_name_55 WHERE top_prize = "$888" |
42,713 | <question>: What is the top price of $1 with a launch date on February 12, 2008? <context>: 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" |
42,714 | <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? <context>: 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 |
42,715 | <question>: What is the name of the driver who went 46 laps had less than 9 points and had a grid number under 12? <context>: 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 |
42,716 | <question>: Where was the 1966 final played? <context>: CREATE TABLE table_name_12 (finals_venue__surface_ VARCHAR, year VARCHAR) | SELECT finals_venue__surface_ FROM table_name_12 WHERE year = 1966 |
42,717 | <question>: What is the average Worst score for Mario Lopez as the Best dancer and Tango as the Dance? <context>: 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" |
42,718 | <question>: What is the highest Best score for the Dance Mambo? <context>: CREATE TABLE table_name_47 (best_score INTEGER, dance VARCHAR) | SELECT MAX(best_score) FROM table_name_47 WHERE dance = "mambo" |
42,719 | <question>: Who is the Best dancer with the Worst dancer of Jerry Springer, a Best score of 29, and the Dance was the Quickstep? <context>: 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" |
42,720 | <question>: How many dances placed below 1 with a point total of 40? <context>: 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 |
42,721 | <question>: What is the lowest number of dances with a rank larger than 4 and a place of 8? <context>: 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 |
42,722 | <question>: What is the lowest number of dances with a less than 2 place and an average smaller than 27.5? <context>: 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 |
42,723 | <question>: What is the total difference for teams that played less than 6 games? <context>: CREATE TABLE table_name_38 (diff INTEGER, played INTEGER) | SELECT SUM(diff) FROM table_name_38 WHERE played < 6 |
42,724 | <question>: What is the highest number of games played for teams that lost over 5 games and had an against total of 228? <context>: CREATE TABLE table_name_52 (played INTEGER, lost VARCHAR, against VARCHAR) | SELECT MAX(played) FROM table_name_52 WHERE lost > 5 AND against = 228 |
42,725 | <question>: How many games lost for team(s) with less than 4 paints and against total of over 340? <context>: CREATE TABLE table_name_65 (lost VARCHAR, points VARCHAR, against VARCHAR) | SELECT COUNT(lost) FROM table_name_65 WHERE points < 4 AND against > 340 |
42,726 | <question>: What week was the game that had an attendance of 24,242? <context>: CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR) | SELECT week FROM table_name_34 WHERE attendance = "24,242" |
42,727 | <question>: What was the attendance of the game that had a score of l 35–14? <context>: CREATE TABLE table_name_8 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_8 WHERE result = "l 35–14" |
42,728 | <question>: When was the pre-Week 10 game that had an attendance of over 38,865? <context>: CREATE TABLE table_name_98 (date VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_98 WHERE week < 10 AND attendance = "38,865" |
42,729 | <question>: Which Location has a PPV Buyrate of 775,000? <context>: CREATE TABLE table_name_26 (location VARCHAR, ppv_buyrate VARCHAR) | SELECT location FROM table_name_26 WHERE ppv_buyrate = "775,000" |
42,730 | <question>: Where did Geelong play as the away team? <context>: CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_62 WHERE away_team = "geelong" |
42,731 | <question>: What was the away team's score against Hawthorn? <context>: CREATE TABLE table_name_23 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_23 WHERE away_team = "hawthorn" |
42,732 | <question>: When Fitzroy was the home team, what was the away team's score? <context>: CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_33 WHERE home_team = "fitzroy" |
42,733 | <question>: How big was the largest crowd recorded at the Arden Street Oval venue? <context>: CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR) | SELECT MAX(crowd) FROM table_name_73 WHERE venue = "arden street oval" |
42,734 | <question>: What is the smallest attendance in week 1? <context>: CREATE TABLE table_name_76 (attendance INTEGER, week VARCHAR) | SELECT MIN(attendance) FROM table_name_76 WHERE week = 1 |
42,735 | <question>: What is the larges week for the date august 9, 1968 and less than 64,020 in attendance? <context>: 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 |
42,736 | <question>: What is the smallest attendance number for august 9, 1968? <context>: CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR) | SELECT MIN(attendance) FROM table_name_45 WHERE date = "august 9, 1968" |
42,737 | <question>: What was the result of the game on august 30, 1968? <context>: CREATE TABLE table_name_69 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_69 WHERE date = "august 30, 1968" |
42,738 | <question>: What is the class of the w267an call sign? <context>: CREATE TABLE table_name_13 (class VARCHAR, call_sign VARCHAR) | SELECT class FROM table_name_13 WHERE call_sign = "w267an" |
42,739 | <question>: What is the lowest ERP W of the 67829 Facility ID? <context>: CREATE TABLE table_name_54 (erp_w INTEGER, facility_id VARCHAR) | SELECT MIN(erp_w) FROM table_name_54 WHERE facility_id = 67829 |
42,740 | <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? <context>: 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 |
42,741 | <question>: What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17? <context>: 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 |
42,742 | <question>: Which song released on heavenly (hvn152)? <context>: CREATE TABLE table_name_86 (song VARCHAR, release_info VARCHAR) | SELECT song FROM table_name_86 WHERE release_info = "heavenly (hvn152)" |
42,743 | <question>: Which album had a release of heavenly (hvn95)? <context>: CREATE TABLE table_name_56 (album VARCHAR, release_info VARCHAR) | SELECT album FROM table_name_56 WHERE release_info = "heavenly (hvn95)" |
42,744 | <question>: What is the sum of all the rounds when a Florida State player was drafted? <context>: CREATE TABLE table_name_8 (round VARCHAR, college VARCHAR) | SELECT COUNT(round) FROM table_name_8 WHERE college = "florida state" |
42,745 | <question>: What is the average round in which a Safety with an overall rank higher than 89 was drafted? <context>: CREATE TABLE table_name_41 (round INTEGER, position VARCHAR, overall VARCHAR) | SELECT AVG(round) FROM table_name_41 WHERE position = "safety" AND overall > 89 |
42,746 | <question>: Where was 2010 tournament where the United States received the silver? <context>: CREATE TABLE table_name_18 (venue VARCHAR, silver VARCHAR, year VARCHAR) | SELECT venue FROM table_name_18 WHERE silver = "united states" AND year = 2010 |
42,747 | <question>: Where was the tournament where Finland received the bronze and the United States received the silver? <context>: CREATE TABLE table_name_22 (venue VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT venue FROM table_name_22 WHERE bronze = "finland" AND silver = "united states" |
42,748 | <question>: Who received the gold at the tournament at bratislava where the Czech Republic received the silver? <context>: CREATE TABLE table_name_58 (gold VARCHAR, silver VARCHAR, venue VARCHAR) | SELECT gold FROM table_name_58 WHERE silver = "czech republic" AND venue = "bratislava" |
42,749 | <question>: Where was the post 1991 tournament where the Czech Republic received the bronze and Russia received the silver? <context>: 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" |
42,750 | <question>: Who was the away team at the game at Kardinia Park? <context>: CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_99 WHERE venue = "kardinia park" |
42,751 | <question>: What was the smallest crowd for a Melbourne away game? <context>: CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR) | SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "melbourne" |
42,752 | <question>: What day did the team play on week 8? <context>: CREATE TABLE table_name_55 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_55 WHERE week = 8 |
42,753 | <question>: What was the average size of the crowd for matches held at Corio Oval? <context>: CREATE TABLE table_name_28 (crowd INTEGER, venue VARCHAR) | SELECT AVG(crowd) FROM table_name_28 WHERE venue = "corio oval" |
42,754 | <question>: What home team played against St Kilda? <context>: CREATE TABLE table_name_68 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_68 WHERE away_team = "st kilda" |
42,755 | <question>: At what venue was South Melbourne the home team? <context>: CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_87 WHERE home_team = "south melbourne" |
42,756 | <question>: What was Hawthorn's score when they were the home team? <context>: CREATE TABLE table_name_24 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_24 WHERE home_team = "hawthorn" |
42,757 | <question>: What was the home team's score when they played at Lake Oval? <context>: CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_96 WHERE venue = "lake oval" |
42,758 | <question>: What is the latest available income inequality for the country with a population of 21,315,135? <context>: 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" |
42,759 | <question>: What is the IEF 2011 of the country with an FSI 2012 of 99.2? <context>: CREATE TABLE table_name_96 (ief_2011 VARCHAR, fsi_2012 VARCHAR) | SELECT ief_2011 FROM table_name_96 WHERE fsi_2012 = "99.2" |
42,760 | <question>: What is the current income inequality for the country of Seychelles? <context>: 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" |
42,761 | <question>: What is the HDI 2011 of the country with a DI 2011 of 7.63? <context>: CREATE TABLE table_name_54 (hdi_2011 VARCHAR, di_2011 VARCHAR) | SELECT hdi_2011 FROM table_name_54 WHERE di_2011 = "7.63" |
42,762 | <question>: What country has an IEF 2011 of 45.3? <context>: CREATE TABLE table_name_46 (country VARCHAR, ief_2011 VARCHAR) | SELECT country FROM table_name_46 WHERE ief_2011 = "45.3" |
42,763 | <question>: What date did South Melbourne play as the Away team? <context>: CREATE TABLE table_name_79 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_79 WHERE away_team = "south melbourne" |
42,764 | <question>: Where did Essendon play as the home team? <context>: CREATE TABLE table_name_95 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_95 WHERE home_team = "essendon" |
42,765 | <question>: What position does the player from arkansas play? <context>: CREATE TABLE table_name_54 (position VARCHAR, school_country VARCHAR) | SELECT position FROM table_name_54 WHERE school_country = "arkansas" |
42,766 | <question>: Who is the away side at glenferrie oval? <context>: CREATE TABLE table_name_90 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_90 WHERE venue = "glenferrie oval" |
42,767 | <question>: What is the away side's score when richmond is at home? <context>: CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_3 WHERE home_team = "richmond" |
42,768 | <question>: What was the crowd size at Collingwood's match? <context>: CREATE TABLE table_name_43 (crowd VARCHAR, home_team VARCHAR) | SELECT crowd FROM table_name_43 WHERE home_team = "collingwood" |
42,769 | <question>: What was the crowd size at Arden Street Oval? <context>: CREATE TABLE table_name_51 (crowd VARCHAR, venue VARCHAR) | SELECT crowd FROM table_name_51 WHERE venue = "arden street oval" |
42,770 | <question>: What is the status of the match between Scotland v Northern Ireland? <context>: 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" |
42,771 | <question>: In what week was the game on August 10, 1956 played? <context>: CREATE TABLE table_name_54 (week INTEGER, date VARCHAR) | SELECT AVG(week) FROM table_name_54 WHERE date = "august 10, 1956" |
42,772 | <question>: What was the attendance of the game in week 6? <context>: CREATE TABLE table_name_9 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_9 WHERE week = 6 |
42,773 | <question>: In what week was the game on August 24, 1956 played in front of 40,175 fans? <context>: 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 |
42,774 | <question>: What signal quality does the KCAL-DT channel have? <context>: 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" |
42,775 | <question>: What original channel is associated with B Mountain Channel 9? <context>: CREATE TABLE table_name_39 (original_channel VARCHAR, b_mountain_channel VARCHAR) | SELECT original_channel FROM table_name_39 WHERE b_mountain_channel = "9" |
42,776 | <question>: What B Mountain Channel has station call letters of k41go? <context>: 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" |
42,777 | <question>: What Laurel Mountain Channel is associated with B Mountain Channel of 7? <context>: 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" |
42,778 | <question>: What are the translator call letters for station call letters of KCOP-DT? <context>: 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" |
42,779 | <question>: What date was fitzroy the home team? <context>: CREATE TABLE table_name_2 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_2 WHERE home_team = "fitzroy" |
42,780 | <question>: What was the score for the away team when the home team was richmond? <context>: CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_75 WHERE home_team = "richmond" |
42,781 | <question>: What is the venue where the home team is Footscray? <context>: CREATE TABLE table_name_57 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_57 WHERE home_team = "footscray" |
42,782 | <question>: What is the venue for the game on 1 June 1929 where Richmond was the away team? <context>: 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" |
42,783 | <question>: What was the speed of the rider that earned 1 point? <context>: CREATE TABLE table_name_24 (speed VARCHAR, points VARCHAR) | SELECT speed FROM table_name_24 WHERE points = 1 |
42,784 | <question>: What away team is playing at the Brunswick Street Oval Venue? <context>: CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_22 WHERE venue = "brunswick street oval" |
42,785 | <question>: What date does the Home team of Richmond have? <context>: CREATE TABLE table_name_32 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_32 WHERE home_team = "richmond" |
42,786 | <question>: Who is the home team at Victoria Park on 20 April 1957? <context>: 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" |
42,787 | <question>: What municipality is the Harmon Cove station located in? <context>: CREATE TABLE table_name_58 (municipality VARCHAR, station VARCHAR) | SELECT municipality FROM table_name_58 WHERE station = "harmon cove" |
42,788 | <question>: What municipality is the Benson Street station located in? <context>: CREATE TABLE table_name_53 (municipality VARCHAR, station VARCHAR) | SELECT municipality FROM table_name_53 WHERE station = "benson street" |
42,789 | <question>: What date shows corrado barazzutti's partner? <context>: CREATE TABLE table_name_99 (date VARCHAR, partner VARCHAR) | SELECT date FROM table_name_99 WHERE partner = "corrado barazzutti" |
42,790 | <question>: Which date has the tom gullikson butch walts final, and who was the runner-up? <context>: 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" |
42,791 | <question>: Who is the home team of the game against Essendon? <context>: CREATE TABLE table_name_96 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_96 WHERE away_team = "essendon" |
42,792 | <question>: Who is the color commentator for ESPN from 1990 to 1992? <context>: CREATE TABLE table_name_70 (color_commentator_s_ VARCHAR, network VARCHAR) | SELECT color_commentator_s_ FROM table_name_70 WHERE network = "espn" |
42,793 | <question>: Who was the sideline reporter prior to 1993? <context>: CREATE TABLE table_name_8 (sideline_reporter_s_ VARCHAR, year INTEGER) | SELECT sideline_reporter_s_ FROM table_name_8 WHERE year < 1993 |
42,794 | <question>: Who was the play by play commentator for ABC after 1998? <context>: 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 |
42,795 | <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? <context>: 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" |
42,796 | <question>: For how many years combined were Frank Gifford and Dan Dierdorf color commentators? <context>: 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" |
42,797 | <question>: Which sideline reporters worked alongside Frank Gifford and Dan Dierdorf? <context>: 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" |
42,798 | <question>: When was the Lundy withdrawn? <context>: CREATE TABLE table_name_49 (withdrawn VARCHAR, name VARCHAR) | SELECT withdrawn FROM table_name_49 WHERE name = "lundy" |
42,799 | <question>: When was the locomotive named fighter command built? <context>: CREATE TABLE table_name_28 (whenbuilt VARCHAR, name VARCHAR) | SELECT whenbuilt FROM table_name_28 WHERE name = "fighter command" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.