Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
50,900
<question>: How many gold have a silver of 1 and a bronze of 0? <context>: CREATE TABLE table_name_12 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
SELECT SUM(gold) FROM table_name_12 WHERE silver = 1 AND bronze < 1
50,901
<question>: What is the Aircraft when Kabul was the location, unknown fatalities, and the tail number was ya-ban? <context>: CREATE TABLE table_name_3 (aircraft VARCHAR, tail_number VARCHAR, location VARCHAR, fatalities VARCHAR)
SELECT aircraft FROM table_name_3 WHERE location = "kabul" AND fatalities = "unknown" AND tail_number = "ya-ban"
50,902
<question>: What is the Fatalities when the tail number was unknown and in Kabul> <context>: CREATE TABLE table_name_53 (fatalities VARCHAR, tail_number VARCHAR, location VARCHAR)
SELECT fatalities FROM table_name_53 WHERE tail_number = "unknown" AND location = "kabul"
50,903
<question>: What is the location for the an-12b aircraft? <context>: CREATE TABLE table_name_50 (location VARCHAR, aircraft VARCHAR)
SELECT location FROM table_name_50 WHERE aircraft = "an-12b"
50,904
<question>: What location had 25/25 fatalities? <context>: CREATE TABLE table_name_15 (location VARCHAR, fatalities VARCHAR)
SELECT location FROM table_name_15 WHERE fatalities = "25/25"
50,905
<question>: What tail number was on the an-26, with 25/25 fatalities? <context>: CREATE TABLE table_name_82 (tail_number VARCHAR, aircraft VARCHAR, fatalities VARCHAR)
SELECT tail_number FROM table_name_82 WHERE aircraft = "an-26" AND fatalities = "25/25"
50,906
<question>: What type of aircraft was the plane with a tail number of ya-bao? <context>: CREATE TABLE table_name_75 (aircraft VARCHAR, tail_number VARCHAR)
SELECT aircraft FROM table_name_75 WHERE tail_number = "ya-bao"
50,907
<question>: What is the total number of Points from a Match that is larger than 18? <context>: CREATE TABLE table_name_38 (points VARCHAR, match INTEGER)
SELECT COUNT(points) FROM table_name_38 WHERE match > 18
50,908
<question>: In what Season was the Series Formula Renault 3.5 series with less than 7 Races? <context>: CREATE TABLE table_name_74 (season INTEGER, series VARCHAR, races VARCHAR)
SELECT SUM(season) FROM table_name_74 WHERE series = "formula renault 3.5 series" AND races < 7
50,909
<question>: What was the Series in 2009? <context>: CREATE TABLE table_name_67 (series VARCHAR, season VARCHAR)
SELECT series FROM table_name_67 WHERE season = 2009
50,910
<question>: How many Wins in the Year with more than 16 Races? <context>: CREATE TABLE table_name_7 (wins VARCHAR, races INTEGER)
SELECT wins FROM table_name_7 WHERE races > 16
50,911
<question>: In what Season were then less than 3 Races with less than 1 Win? <context>: CREATE TABLE table_name_51 (season INTEGER, races VARCHAR, wins VARCHAR)
SELECT AVG(season) FROM table_name_51 WHERE races < 3 AND wins < 1
50,912
<question>: Which 1st leg has a Team #1 of ummc ekaterinburg? <context>: CREATE TABLE table_name_33 (team__number1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_33 WHERE team__number1 = "ummc ekaterinburg"
50,913
<question>: Which Team #2 has a Team #1 of gambrinus sika brno? <context>: CREATE TABLE table_name_70 (team__number2 VARCHAR, team__number1 VARCHAR)
SELECT team__number2 FROM table_name_70 WHERE team__number1 = "gambrinus sika brno"
50,914
<question>: What is the Goal number in Råsunda, Stockholm with a Result of 2–2? <context>: CREATE TABLE table_name_80 (goal INTEGER, result VARCHAR, venue VARCHAR)
SELECT AVG(goal) FROM table_name_80 WHERE result = "2–2" AND venue = "råsunda, stockholm"
50,915
<question>: What is the Result of Goal number 3? <context>: CREATE TABLE table_name_21 (result VARCHAR, goal VARCHAR)
SELECT result FROM table_name_21 WHERE goal = 3
50,916
<question>: On what day was a game played at Reese Smith Field, with a score of 4-3? <context>: CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR, site_stadium VARCHAR)
SELECT date FROM table_name_14 WHERE score = "4-3" AND site_stadium = "reese smith field"
50,917
<question>: What was the score for the game played on May 10 at Alex Box Stadium? <context>: CREATE TABLE table_name_65 (score VARCHAR, site_stadium VARCHAR, date VARCHAR)
SELECT score FROM table_name_65 WHERE site_stadium = "alex box stadium" AND date = "may 10"
50,918
<question>: What was the score for the game played at Sarge Frye Field? <context>: CREATE TABLE table_name_15 (score VARCHAR, site_stadium VARCHAR)
SELECT score FROM table_name_15 WHERE site_stadium = "sarge frye field"
50,919
<question>: On what date was a game played, which left the team with a record of 5-7? <context>: CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_16 WHERE record = "5-7"
50,920
<question>: What was the score of the game played at Harmon Stadium on February 24? <context>: CREATE TABLE table_name_38 (score VARCHAR, site_stadium VARCHAR, date VARCHAR)
SELECT score FROM table_name_38 WHERE site_stadium = "harmon stadium" AND date = "february 24"
50,921
<question>: Where was the game on May 9 played? <context>: CREATE TABLE table_name_21 (site_stadium VARCHAR, date VARCHAR)
SELECT site_stadium FROM table_name_21 WHERE date = "may 9"
50,922
<question>: What is the greatest position when the points are less than 21, and the played greater than 14? <context>: CREATE TABLE table_name_78 (position INTEGER, points VARCHAR, played VARCHAR)
SELECT MAX(position) FROM table_name_78 WHERE points < 21 AND played > 14
50,923
<question>: What is the fewest lost with a difference of 9 and a less than 3 drawn? <context>: CREATE TABLE table_name_69 (lost INTEGER, difference VARCHAR, drawn VARCHAR)
SELECT MIN(lost) FROM table_name_69 WHERE difference = "9" AND drawn < 3
50,924
<question>: Team Estudantes Paulista with a position less than 4 has what average against? <context>: CREATE TABLE table_name_78 (against INTEGER, team VARCHAR, position VARCHAR)
SELECT AVG(against) FROM table_name_78 WHERE team = "estudantes paulista" AND position < 4
50,925
<question>: What was the margin of victory on Apr 8, 1979? <context>: CREATE TABLE table_name_28 (margin_of_victory VARCHAR, date VARCHAR)
SELECT margin_of_victory FROM table_name_28 WHERE date = "apr 8, 1979"
50,926
<question>: What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley? <context>: CREATE TABLE table_name_69 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_69 WHERE margin_of_victory = "2 strokes" AND runner_s__up = "pat bradley"
50,927
<question>: What was the margin of victory when the winning score was −5 (69-69-73=211)? <context>: CREATE TABLE table_name_21 (margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT margin_of_victory FROM table_name_21 WHERE winning_score = −5(69 - 69 - 73 = 211)
50,928
<question>: Which tournament had a winning score of −5 (69-69-73=211)? <context>: CREATE TABLE table_name_37 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_37 WHERE winning_score = −5(69 - 69 - 73 = 211)
50,929
<question>: When was the winning score −6 (69-69-73-71=282)? <context>: CREATE TABLE table_name_7 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_name_7 WHERE winning_score = −6(69 - 69 - 73 - 71 = 282)
50,930
<question>: Who is the opponent of the game played on November 20, 1995? <context>: CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_66 WHERE date = "november 20, 1995"
50,931
<question>: What is the highest Grid with a Name that is jamie whincup? <context>: CREATE TABLE table_name_67 (grid INTEGER, name VARCHAR)
SELECT MAX(grid) FROM table_name_67 WHERE name = "jamie whincup"
50,932
<question>: What is the Team with a Lap that is 5? <context>: CREATE TABLE table_name_48 (team VARCHAR, laps VARCHAR)
SELECT team FROM table_name_48 WHERE laps = 5
50,933
<question>: What's the lowest round Justin Forsett was drafted in, with a draft pick larger than 233? <context>: CREATE TABLE table_name_62 (round INTEGER, name VARCHAR, pick VARCHAR)
SELECT MIN(round) FROM table_name_62 WHERE name = "justin forsett" AND pick > 233
50,934
<question>: What's the average round the position of RB was drafted? <context>: CREATE TABLE table_name_90 (round INTEGER, position VARCHAR)
SELECT AVG(round) FROM table_name_90 WHERE position = "rb"
50,935
<question>: What's the average round Red Bryant was drafted with a pick larger than 121? <context>: CREATE TABLE table_name_29 (round INTEGER, name VARCHAR, pick VARCHAR)
SELECT AVG(round) FROM table_name_29 WHERE name = "red bryant" AND pick > 121
50,936
<question>: Can you tell me the Overall Record that has the Away Team of miami? <context>: CREATE TABLE table_name_46 (overall_record VARCHAR, away_team VARCHAR)
SELECT overall_record FROM table_name_46 WHERE away_team = "miami"
50,937
<question>: Can you tell me the Overall Record that has the Week of 3? <context>: CREATE TABLE table_name_81 (overall_record VARCHAR, week VARCHAR)
SELECT overall_record FROM table_name_81 WHERE week = 3
50,938
<question>: Can you tell me the Divisional Record that has the Away Team of dallas? <context>: CREATE TABLE table_name_58 (divisional_record VARCHAR, away_team VARCHAR)
SELECT divisional_record FROM table_name_58 WHERE away_team = "dallas"
50,939
<question>: Can you tell me the Overall Record that has the Week smaller than 16, and the Divisional Record of (1-0), and the Away Team of miami? <context>: CREATE TABLE table_name_42 (overall_record VARCHAR, away_team VARCHAR, week VARCHAR, divisional_record VARCHAR)
SELECT overall_record FROM table_name_42 WHERE week < 16 AND divisional_record = "(1-0)" AND away_team = "miami"
50,940
<question>: Can you tell me the Week that has the Home Team of detroit, and the Divisional Record of (3-0), and the Overall Record of (5-1), and the Away Team of minnesota? <context>: CREATE TABLE table_name_40 (week VARCHAR, away_team VARCHAR, overall_record VARCHAR, home_team VARCHAR, divisional_record VARCHAR)
SELECT week FROM table_name_40 WHERE home_team = "detroit" AND divisional_record = "(3-0)" AND overall_record = "(5-1)" AND away_team = "minnesota"
50,941
<question>: Who is the choreographer with the style pas de deux? <context>: CREATE TABLE table_name_10 (choreographer_s_ VARCHAR, style VARCHAR)
SELECT choreographer_s_ FROM table_name_10 WHERE style = "pas de deux"
50,942
<question>: What is the title of the person who started their reign in 1999? <context>: CREATE TABLE table_name_63 (title VARCHAR, start_of_reign VARCHAR)
SELECT title FROM table_name_63 WHERE start_of_reign = 1999
50,943
<question>: What is the date of birth of the person who started their reign in 1986? <context>: CREATE TABLE table_name_61 (Birth VARCHAR, start_of_reign VARCHAR)
SELECT Birth AS name FROM table_name_61 WHERE start_of_reign = 1986
50,944
<question>: What is the average number for goals less than 73? <context>: CREATE TABLE table_name_23 (average VARCHAR, goals INTEGER)
SELECT COUNT(average) FROM table_name_23 WHERE goals < 73
50,945
<question>: What is the total average for 1990-1995, and goals less than 90? <context>: CREATE TABLE table_name_40 (average VARCHAR, career VARCHAR, goals VARCHAR)
SELECT COUNT(average) FROM table_name_40 WHERE career = "1990-1995" AND goals < 90
50,946
<question>: What was the lowest Position for a Team with fewer than 3 Lost, a Difference of 1, and more than 7 games Played? <context>: CREATE TABLE table_name_43 (position INTEGER, played VARCHAR, lost VARCHAR, difference VARCHAR)
SELECT MIN(position) FROM table_name_43 WHERE lost < 3 AND difference = "1" AND played > 7
50,947
<question>: What is the sum of games Played by the Team Vasco Da Gama, with fewer than 12 Against? <context>: CREATE TABLE table_name_12 (played INTEGER, team VARCHAR, against VARCHAR)
SELECT SUM(played) FROM table_name_12 WHERE team = "vasco da gama" AND against < 12
50,948
<question>: What was the Difference of the Team that had a Position less than 2? <context>: CREATE TABLE table_name_8 (difference VARCHAR, position INTEGER)
SELECT difference FROM table_name_8 WHERE position < 2
50,949
<question>: Which attendance number was taken on november 21, 2004? <context>: CREATE TABLE table_name_54 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_54 WHERE date = "november 21, 2004"
50,950
<question>: Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents? <context>: CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_39 WHERE week < 16 AND opponent = "washington redskins"
50,951
<question>: How many weeks had the Green Bay packers as opponents? <context>: CREATE TABLE table_name_74 (week INTEGER, opponent VARCHAR)
SELECT SUM(week) FROM table_name_74 WHERE opponent = "green bay packers"
50,952
<question>: What Country had a Score of 71-67=138? <context>: CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138
50,953
<question>: What Country had a Score of 75-68=143? <context>: CREATE TABLE table_name_91 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_91 WHERE score = 75 - 68 = 143
50,954
<question>: How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored? <context>: CREATE TABLE table_name_35 (innings INTEGER, runs_scored VARCHAR, balls_faced VARCHAR, average VARCHAR, sr VARCHAR)
SELECT SUM(innings) FROM table_name_35 WHERE average < 6.33 AND sr < 71.43 AND balls_faced > 36 AND runs_scored < 19
50,955
<question>: What is the number of averages having a balls faced over 297 and more than 7 innings? <context>: CREATE TABLE table_name_34 (average VARCHAR, balls_faced VARCHAR, innings VARCHAR)
SELECT COUNT(average) FROM table_name_34 WHERE balls_faced > 297 AND innings > 7
50,956
<question>: What is the smallest number of innings with a strike rate of 72.05 and under 297 balls faced? <context>: CREATE TABLE table_name_89 (innings INTEGER, sr VARCHAR, balls_faced VARCHAR)
SELECT MIN(innings) FROM table_name_89 WHERE sr = 72.05 AND balls_faced < 297
50,957
<question>: What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5? <context>: CREATE TABLE table_name_99 (balls_faced INTEGER, average VARCHAR, sr VARCHAR, innings VARCHAR)
SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5
50,958
<question>: What is the Nation with a Date that is may 6, 1991? <context>: CREATE TABLE table_name_51 (nation VARCHAR, date VARCHAR)
SELECT nation FROM table_name_51 WHERE date = "may 6, 1991"
50,959
<question>: What is the Record with a Date that is may 20, 1961? <context>: CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_73 WHERE date = "may 20, 1961"
50,960
<question>: Who was the partner of the winner? <context>: CREATE TABLE table_name_46 (partner VARCHAR, outcome VARCHAR)
SELECT partner FROM table_name_46 WHERE outcome = "winner"
50,961
<question>: How many Places (Posición) has a Draw (PE) larger than 2 and a Team (Equipo) of paraíso and a Won (PG) larger than 6? <context>: CREATE TABLE table_name_53 (place__posición_ VARCHAR, won__pg_ VARCHAR, draw__pe_ VARCHAR, team__equipo_ VARCHAR)
SELECT COUNT(place__posición_) FROM table_name_53 WHERE draw__pe_ > 2 AND team__equipo_ = "paraíso" AND won__pg_ > 6
50,962
<question>: How many league cups have yeovil town as the club, with a league less than 16? <context>: CREATE TABLE table_name_88 (league VARCHAR, club VARCHAR)
SELECT COUNT(league) AS Cup FROM table_name_88 WHERE club = "yeovil town" AND league < 16
50,963
<question>: What is the average FA Cup that has gary jones as the player, and an FA trophy greater than 5? <context>: CREATE TABLE table_name_15 (fa_cup INTEGER, player VARCHAR, fa_trophy VARCHAR)
SELECT AVG(fa_cup) FROM table_name_15 WHERE player = "gary jones" AND fa_trophy > 5
50,964
<question>: What FA trophys have tony hemmings as the player, with a league greater than 15? <context>: CREATE TABLE table_name_98 (fa_trophy INTEGER, player VARCHAR, league VARCHAR)
SELECT SUM(fa_trophy) FROM table_name_98 WHERE player = "tony hemmings" AND league > 15
50,965
<question>: What is the score where the country is Japan? <context>: CREATE TABLE table_name_95 (score VARCHAR, country VARCHAR)
SELECT score FROM table_name_95 WHERE country = "japan"
50,966
<question>: Which province has muju as the capital? <context>: CREATE TABLE table_name_82 (province VARCHAR, capital VARCHAR)
SELECT province FROM table_name_82 WHERE capital = "muju"
50,967
<question>: What is the modern equivalent of 良州 in Hanja? <context>: CREATE TABLE table_name_17 (modern_equivalent VARCHAR, hanja VARCHAR)
SELECT modern_equivalent FROM table_name_17 WHERE hanja = "良州"
50,968
<question>: What is the capital of the province with 양주 in Hangul? <context>: CREATE TABLE table_name_21 (capital VARCHAR, hangul VARCHAR)
SELECT capital FROM table_name_21 WHERE hangul = "양주"
50,969
<question>: What is the capital of the province with 漢州 in Hanja? <context>: CREATE TABLE table_name_88 (capital VARCHAR, hanja VARCHAR)
SELECT capital FROM table_name_88 WHERE hanja = "漢州"
50,970
<question>: What is the Hanja for the sakju province? <context>: CREATE TABLE table_name_78 (hanja VARCHAR, province VARCHAR)
SELECT hanja FROM table_name_78 WHERE province = "sakju"
50,971
<question>: What is the fewest number of top-25s for events with more than 0 wins? <context>: CREATE TABLE table_name_17 (top_25 INTEGER, wins INTEGER)
SELECT MIN(top_25) FROM table_name_17 WHERE wins > 0
50,972
<question>: What is the highest number of top-10s in events with more than 0 wins? <context>: CREATE TABLE table_name_46 (top_10 INTEGER, wins INTEGER)
SELECT MAX(top_10) FROM table_name_46 WHERE wins > 0
50,973
<question>: What is the number of top-25s in events under 13, cuts made under 3, and 1 top-10? <context>: CREATE TABLE table_name_47 (top_25 VARCHAR, top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR)
SELECT top_25 FROM table_name_47 WHERE events < 13 AND cuts_made < 3 AND top_10 = 1
50,974
<question>: Which season had an average under 28, a rank under 10, and a partner of Janja Lesar? <context>: CREATE TABLE table_name_7 (season VARCHAR, professional_partner VARCHAR, average VARCHAR, rank VARCHAR)
SELECT season FROM table_name_7 WHERE average < 28 AND rank < 10 AND professional_partner = "janja lesar"
50,975
<question>: What is the highest season that had rank under 1? <context>: CREATE TABLE table_name_45 (season INTEGER, rank INTEGER)
SELECT MAX(season) FROM table_name_45 WHERE rank < 1
50,976
<question>: Who was the professional partner in season 4? <context>: CREATE TABLE table_name_29 (professional_partner VARCHAR, season VARCHAR)
SELECT professional_partner FROM table_name_29 WHERE season = 4
50,977
<question>: Who had the highest rebounds against detroit? <context>: CREATE TABLE table_name_65 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_name_65 WHERE team = "detroit"
50,978
<question>: How much gold received by nation of uzbekistan (uzb)? <context>: CREATE TABLE table_name_93 (gold INTEGER, nation VARCHAR)
SELECT MAX(gold) FROM table_name_93 WHERE nation = "uzbekistan (uzb)"
50,979
<question>: Which team has the lowest gold and 0 silver? <context>: CREATE TABLE table_name_68 (gold INTEGER, silver INTEGER)
SELECT MIN(gold) FROM table_name_68 WHERE silver < 0
50,980
<question>: How much gold when silver, bronze and total is smaller than 1? <context>: CREATE TABLE table_name_27 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT MAX(gold) FROM table_name_27 WHERE silver < 1 AND bronze = 1 AND total < 1
50,981
<question>: What is the ICAO with commenced operations before 1989? <context>: CREATE TABLE table_name_2 (icao VARCHAR, commenced_operations INTEGER)
SELECT icao FROM table_name_2 WHERE commenced_operations < 1989
50,982
<question>: What is the lowest commenced operations that has a nouvelair callsign? <context>: CREATE TABLE table_name_90 (commenced_operations INTEGER, callsign VARCHAR)
SELECT MIN(commenced_operations) FROM table_name_90 WHERE callsign = "nouvelair"
50,983
<question>: What callsign has commenced operations in 2011? <context>: CREATE TABLE table_name_34 (callsign VARCHAR, commenced_operations VARCHAR)
SELECT callsign FROM table_name_34 WHERE commenced_operations = 2011
50,984
<question>: What language is used when the service is sky primafila 10 and the package/option is qualsiasi? <context>: CREATE TABLE table_name_19 (language VARCHAR, package_option VARCHAR, television_service VARCHAR)
SELECT language FROM table_name_19 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 10"
50,985
<question>: What is the content when the package/option is qualsiasi and sky primafila 14 is the television service? <context>: CREATE TABLE table_name_13 (content VARCHAR, package_option VARCHAR, television_service VARCHAR)
SELECT content FROM table_name_13 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 14"
50,986
<question>: What is the HDTV that has television service of tv 8 mont blanc and content is general television? <context>: CREATE TABLE table_name_26 (hdtv VARCHAR, content VARCHAR, television_service VARCHAR)
SELECT hdtv FROM table_name_26 WHERE content = "general television" AND television_service = "tv 8 mont blanc"
50,987
<question>: Which city's IATA is nkg? <context>: CREATE TABLE table_name_64 (city VARCHAR, iata VARCHAR)
SELECT city FROM table_name_64 WHERE iata = "nkg"
50,988
<question>: Which airport is in Xinjiang province in the city Kuqa? <context>: CREATE TABLE table_name_45 (airport VARCHAR, province VARCHAR, city VARCHAR)
SELECT airport FROM table_name_45 WHERE province = "xinjiang" AND city = "kuqa"
50,989
<question>: Which province's IATA is kix? <context>: CREATE TABLE table_name_21 (province VARCHAR, iata VARCHAR)
SELECT province FROM table_name_21 WHERE iata = "kix"
50,990
<question>: Which airport's IATA is pen? <context>: CREATE TABLE table_name_31 (airport VARCHAR, iata VARCHAR)
SELECT airport FROM table_name_31 WHERE iata = "pen"
50,991
<question>: Which Event has a Record of 4:02.54? <context>: CREATE TABLE table_name_90 (event VARCHAR, record VARCHAR)
SELECT event FROM table_name_90 WHERE record = "4:02.54"
50,992
<question>: Whcih Date has an Event of 3000 m? <context>: CREATE TABLE table_name_6 (date VARCHAR, event VARCHAR)
SELECT date FROM table_name_6 WHERE event = "3000 m"
50,993
<question>: Which Record has a Date of 23 february 1986? <context>: CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_20 WHERE date = "23 february 1986"
50,994
<question>: Which Date has a Record of 8:39.49? <context>: CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_95 WHERE record = "8:39.49"
50,995
<question>: Which Record has a Date of 3 march 2013? <context>: CREATE TABLE table_name_71 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_71 WHERE date = "3 march 2013"
50,996
<question>: Which Nation has a Record of 15.16 m? <context>: CREATE TABLE table_name_84 (nation VARCHAR, record VARCHAR)
SELECT nation FROM table_name_84 WHERE record = "15.16 m"
50,997
<question>: What is the Nationality of the Player with more than 8 Goals and Apps of 52? <context>: CREATE TABLE table_name_5 (nationality VARCHAR, goals VARCHAR, apps VARCHAR)
SELECT nationality FROM table_name_5 WHERE goals > 8 AND apps = 52
50,998
<question>: How many Apps did Player Gilberto with more than 1 Goals have? <context>: CREATE TABLE table_name_64 (apps INTEGER, player VARCHAR, goals VARCHAR)
SELECT AVG(apps) FROM table_name_64 WHERE player = "gilberto" AND goals > 1
50,999
<question>: On what date was the 4th round, with home team Itabuna, played? <context>: CREATE TABLE table_name_4 (date VARCHAR, round VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_4 WHERE round = "4th" AND home_team = "itabuna"