answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT MAX(wins) FROM table_name_82 WHERE draws > 4 AND club = "cd orense" AND points > 36
CREATE TABLE table_name_82 (wins INTEGER, points VARCHAR, draws VARCHAR, club VARCHAR)
What is the highest number of wins for club Cd Orense, with points greater than 36 and more than 4 draws?
SELECT SUM(played) FROM table_name_65 WHERE position < 1
CREATE TABLE table_name_65 (played INTEGER, position INTEGER)
What is the total number of played for the entry with a position of less than 1?
SELECT record FROM table_name_99 WHERE time = "3:53"
CREATE TABLE table_name_99 (record VARCHAR, time VARCHAR)
For the match that lasted 3:53 minutes, what was the final record?
SELECT location FROM table_name_18 WHERE event = "ufc 154"
CREATE TABLE table_name_18 (location VARCHAR, event VARCHAR)
Where was the UFC 154 match held?
SELECT 1 AS st_leg FROM table_name_40 WHERE team_1 = "rc cannes"
CREATE TABLE table_name_40 (team_1 VARCHAR)
What is the 1st leg that has a Rc Cannes Team 1?
SELECT MIN(position) FROM table_name_45 WHERE points > 40 AND wins = 16 AND loses < 3
CREATE TABLE table_name_45 (position INTEGER, loses VARCHAR, points VARCHAR, wins VARCHAR)
What is the lowest positioned club with points greater than 40, 16 wins and losses less than 3?
SELECT MIN(position) FROM table_name_84 WHERE wins = 2 AND loses > 13
CREATE TABLE table_name_84 (position INTEGER, wins VARCHAR, loses VARCHAR)
What is the lowest positioned team with 2 wins and losses greater than 13?
SELECT MIN(wins) FROM table_name_88 WHERE goals_conceded < 26 AND draws = 1 AND goals_scored < 74
CREATE TABLE table_name_88 (wins INTEGER, goals_scored VARCHAR, goals_conceded VARCHAR, draws VARCHAR)
What is the smallest number of wins where goals conceded are below 26, draws are 1 and goals scored are below 74?
SELECT MIN(wins) FROM table_name_60 WHERE points < 25 AND goals_scored = 22 AND club = "minija kretinga" AND goals_conceded < 39
CREATE TABLE table_name_60 (wins INTEGER, goals_conceded VARCHAR, club VARCHAR, points VARCHAR, goals_scored VARCHAR)
For the club Minija Kretinga, what's the lowest number of wins with points smaller than 25, goals at 22 and goals conceded below 39?
SELECT place FROM table_name_50 WHERE silver = "valeri postoianov ( urs )" AND year > 1969 AND bronze = "alexander gazov ( urs )"
CREATE TABLE table_name_50 (place VARCHAR, bronze VARCHAR, silver VARCHAR, year VARCHAR)
In which Place was the Silver won by valeri postoianov ( urs ) later than 1969 and the Bronze won by alexander gazov ( urs )?
SELECT bronze FROM table_name_59 WHERE place = "melbourne"
CREATE TABLE table_name_59 (bronze VARCHAR, place VARCHAR)
Who won the Bronze at Melbourne?
SELECT place FROM table_name_3 WHERE silver = "vladimir vesselov ( urs )"
CREATE TABLE table_name_3 (place VARCHAR, silver VARCHAR)
In what Place was the Silver won by vladimir vesselov ( urs )?
SELECT award FROM table_name_66 WHERE result = "nominated" AND film = "sankranthi"
CREATE TABLE table_name_66 (award VARCHAR, result VARCHAR, film VARCHAR)
What is Award, when Result is "Nominated", and when Film is "Sankranthi"?
SELECT award FROM table_name_35 WHERE category = "best actor" AND year < 1988
CREATE TABLE table_name_35 (award VARCHAR, category VARCHAR, year VARCHAR)
What is Award, when Category is "Best Actor", and when Year is less than 1988?
SELECT COUNT(year) FROM table_name_18 WHERE award = "vamsi berkley award" AND category = "best actor"
CREATE TABLE table_name_18 (year VARCHAR, award VARCHAR, category VARCHAR)
What is the total number of Year, when Award is "Vamsi Berkley Award", and when Category is "Best Actor"?
SELECT result FROM table_name_87 WHERE film = "dharma chakram" AND award = "nandi award for best actor"
CREATE TABLE table_name_87 (result VARCHAR, film VARCHAR, award VARCHAR)
What is Result, when Film is "Dharma Chakram", and when Award is "Nandi Award for Best Actor"?
SELECT opponent FROM table_name_11 WHERE date = "dec 8"
CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR)
What is Opponent, when Date is "Dec 8"?
SELECT score FROM table_name_30 WHERE date = "nov 28"
CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)
What is Score, when Date is "Nov 28"?
SELECT date FROM table_name_8 WHERE score = "80-79"
CREATE TABLE table_name_8 (date VARCHAR, score VARCHAR)
What is Date, when Score is "80-79"?
SELECT record FROM table_name_11 WHERE opponent = "new york knicks"
CREATE TABLE table_name_11 (record VARCHAR, opponent VARCHAR)
What is Record, when Opponent is "New York Knicks"?
SELECT score FROM table_name_9 WHERE opponent = "@ new york knicks"
CREATE TABLE table_name_9 (score VARCHAR, opponent VARCHAR)
What is Score, when Opponent is "@ New York Knicks"?
SELECT result FROM table_name_19 WHERE opponent = "rochester royals"
CREATE TABLE table_name_19 (result VARCHAR, opponent VARCHAR)
What is Result, when Opponent is "Rochester Royals"?
SELECT result FROM table_name_59 WHERE venue = "strathclyde homes stadium"
CREATE TABLE table_name_59 (result VARCHAR, venue VARCHAR)
What was the Result at Strathclyde Homes Stadium?
SELECT score FROM table_name_99 WHERE country = "spain"
CREATE TABLE table_name_99 (score VARCHAR, country VARCHAR)
Name the Score of spain?
SELECT country FROM table_name_20 WHERE to_par = "−2"
CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR)
Which Country has a To par of −2? Question 2
SELECT place FROM table_name_1 WHERE to_par = "−1" AND player = "don pooley"
CREATE TABLE table_name_1 (place VARCHAR, to_par VARCHAR, player VARCHAR)
Which Place has a To par of −1 and don pooley?
SELECT result FROM table_name_24 WHERE week = 15
CREATE TABLE table_name_24 (result VARCHAR, week VARCHAR)
What is week 15's result?
SELECT AVG(week) FROM table_name_31 WHERE opponent = "cleveland browns"
CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR)
What week did Cleveland Browns played?
SELECT MAX(goals) FROM table_name_43 WHERE name = "grella"
CREATE TABLE table_name_43 (goals INTEGER, name VARCHAR)
What is the Highest Goals for Grella?
SELECT notes FROM table_name_67 WHERE name = "grella"
CREATE TABLE table_name_67 (notes VARCHAR, name VARCHAR)
What is in the Notes for Player Name Grella?
SELECT position FROM table_name_24 WHERE round > 5 AND player = "matthew tassone"
CREATE TABLE table_name_24 (position VARCHAR, round VARCHAR, player VARCHAR)
Who position did matthew tassone who was drafted after round 5 play?
SELECT MAX(_percentage_hydropower) FROM table_name_80 WHERE _percentage_oil < 24.5 AND country = "united arab emirates" AND _percentage_nuclear_power < 0
CREATE TABLE table_name_80 (_percentage_hydropower INTEGER, _percentage_nuclear_power VARCHAR, _percentage_oil VARCHAR, country VARCHAR)
what is the highest % hydropower when the % oil is less than 24.5, country is united arab emirates and the % nuclear power is 0?
SELECT MAX(_percentage_hydropower) FROM table_name_59 WHERE _percentage_coal = 4.9 AND _percentage_nuclear_power > 0
CREATE TABLE table_name_59 (_percentage_hydropower INTEGER, _percentage_coal VARCHAR, _percentage_nuclear_power VARCHAR)
what is the highest % hydropower when % coal is 4.9 and % nuclear power is more than 0?
SELECT MAX(electricity_production__kw_h), _billion_ FROM table_name_19 WHERE _percentage_other_renewable = 0.4 AND _percentage_coal = 0 AND _percentage_hydropower > 99
CREATE TABLE table_name_19 (_billion_ VARCHAR, electricity_production__kw_h INTEGER, _percentage_hydropower VARCHAR, _percentage_other_renewable VARCHAR, _percentage_coal VARCHAR)
what is the highest electricity production (kw/h, billion) when the % other renewable is 0.4, % coal is 0 and % hydropower is more than 99?
SELECT player FROM table_name_94 WHERE round = 6
CREATE TABLE table_name_94 (player VARCHAR, round VARCHAR)
Who is the player in round 6?
SELECT college_junior_club_team__league_ FROM table_name_66 WHERE player = "louis leblanc"
CREATE TABLE table_name_66 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
What college did Louis LeBlanc attend?
SELECT SUM(goals_against) FROM table_name_41 WHERE goals_for > 52 AND losses < 10
CREATE TABLE table_name_41 (goals_against INTEGER, goals_for VARCHAR, losses VARCHAR)
How many goals against total did the team with more than 52 goals and fewer than 10 losses have?
SELECT MIN(draws) FROM table_name_14 WHERE club = "levante ud" AND goal_difference < 6
CREATE TABLE table_name_14 (draws INTEGER, club VARCHAR, goal_difference VARCHAR)
What was the low number of draws for Levante Ud when their goal difference was smaller than 6?
SELECT AVG(against) FROM table_name_80 WHERE draws < 0
CREATE TABLE table_name_80 (against INTEGER, draws INTEGER)
What is the average entry in the against column with draws smaller than 0?
SELECT SUM(losses) FROM table_name_75 WHERE portland_dfl = "westerns" AND draws > 1
CREATE TABLE table_name_75 (losses INTEGER, portland_dfl VARCHAR, draws VARCHAR)
What is the total number of losses that has draws larger than 1 and a Portland DFL of westerns?
SELECT SUM(draws) FROM table_name_94 WHERE byes > 0
CREATE TABLE table_name_94 (draws INTEGER, byes INTEGER)
What is the sum of draws for all byes larger than 0?
SELECT SUM(byes) FROM table_name_11 WHERE portland_dfl = "westerns" AND losses > 14
CREATE TABLE table_name_11 (byes INTEGER, portland_dfl VARCHAR, losses VARCHAR)
What is the sum of byes for losses larger than 14 for a Portland DFL of westerns?
SELECT result FROM table_name_85 WHERE opponent_number = "at 2 usc"
CREATE TABLE table_name_85 (result VARCHAR, opponent_number VARCHAR)
What was the result when the opponent was at 2 usc?
SELECT result FROM table_name_52 WHERE date = "10/08/1988"
CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)
What was the result on 10/08/1988?
SELECT rank__number FROM table_name_53 WHERE result = "w42-14"
CREATE TABLE table_name_53 (rank__number VARCHAR, result VARCHAR)
What was the rank# of the opponent when the result of the game was w42-14?
SELECT result FROM table_name_15 WHERE attendance = "56,500"
CREATE TABLE table_name_15 (result VARCHAR, attendance VARCHAR)
What was the result of the game that had 56,500 in attendance?
SELECT rank__number FROM table_name_57 WHERE attendance = "93,829"
CREATE TABLE table_name_57 (rank__number VARCHAR, attendance VARCHAR)
What was the rank# of the opponent when there was 93,829 in attendance?
SELECT date FROM table_name_24 WHERE rank__number = "5" AND opponent_number = "stanford"
CREATE TABLE table_name_24 (date VARCHAR, rank__number VARCHAR, opponent_number VARCHAR)
On what date was the game played where the opponent was Stanford, ranked #5?
SELECT number_of_electorates__2009_ FROM table_name_21 WHERE reserved_for___sc___st__none_ = "total:"
CREATE TABLE table_name_21 (number_of_electorates__2009_ VARCHAR, reserved_for___sc___st__none_ VARCHAR)
Which Number of electorates (2009) has a Reserved for (SC / ST /None) of total:?
SELECT tournament FROM table_name_37 WHERE year > 1973
CREATE TABLE table_name_37 (tournament VARCHAR, year INTEGER)
What tournament took place after 1973?
SELECT tournament FROM table_name_14 WHERE extra = "200 m" AND year < 1972
CREATE TABLE table_name_14 (tournament VARCHAR, extra VARCHAR, year VARCHAR)
What tournament took place before 1972 with an extra of 200 m?
SELECT current_code FROM table_name_20 WHERE type = "club trophy" AND years = "1867 only"
CREATE TABLE table_name_20 (current_code VARCHAR, type VARCHAR, years VARCHAR)
What is the current code for the club trophy, in 1867 only?
SELECT location FROM table_name_64 WHERE original_code = "victorian rules"
CREATE TABLE table_name_64 (location VARCHAR, original_code VARCHAR)
What is the location of the original code for victorian rules?
SELECT location FROM table_name_69 WHERE type = "club trophy"
CREATE TABLE table_name_69 (location VARCHAR, type VARCHAR)
What is the location for the club trophy?
SELECT location FROM table_name_52 WHERE type = "club trophy" AND years = "1867 only"
CREATE TABLE table_name_52 (location VARCHAR, type VARCHAR, years VARCHAR)
What is the location for the club trophy from the year 1867 only?
SELECT score FROM table_name_24 WHERE tournament = "tampere , finland"
CREATE TABLE table_name_24 (score VARCHAR, tournament VARCHAR)
What is Score, when Tournament is "Tampere , Finland"?
SELECT surface FROM table_name_31 WHERE opponent = "jiří vaněk"
CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR)
What is Surface, when Opponent is "Jiří Vaněk"?
SELECT score FROM table_name_52 WHERE opponent = "ivo minář"
CREATE TABLE table_name_52 (score VARCHAR, opponent VARCHAR)
What is Score, when Opponent is "Ivo Minář"?
SELECT score FROM table_name_38 WHERE opponent = "daniel gimeno-traver"
CREATE TABLE table_name_38 (score VARCHAR, opponent VARCHAR)
What is Score, when Opponent is "Daniel Gimeno-Traver"?
SELECT tournament FROM table_name_50 WHERE moves = 37 AND result = "½–½"
CREATE TABLE table_name_50 (tournament VARCHAR, moves VARCHAR, result VARCHAR)
What is Tournament, when Moves is "37", and when Result is "½–½"?
SELECT result FROM table_name_77 WHERE year > 1999 AND white = "kramnik" AND tournament = "mainz cc champions duel (5)"
CREATE TABLE table_name_77 (result VARCHAR, tournament VARCHAR, year VARCHAR, white VARCHAR)
What is Result, when Year is greater than 1999, when White is "Kramnik", and when Tournament is "Mainz CC Champions Duel (5)"?
SELECT opening FROM table_name_77 WHERE white = "kramnik" AND year < 2001 AND tournament = "siemens giants"
CREATE TABLE table_name_77 (opening VARCHAR, tournament VARCHAR, white VARCHAR, year VARCHAR)
What is Opening, when White is Kramnik, when Year is less than 2001, and when Tournament is "Siemens Giants"?
SELECT tournament FROM table_name_46 WHERE black = "kramnik" AND result = "½–½" AND moves = 40
CREATE TABLE table_name_46 (tournament VARCHAR, moves VARCHAR, black VARCHAR, result VARCHAR)
What is Tournament, when Black is "Kramnik", when Result is "½–½", and when Moves is "40"?
SELECT location FROM table_name_9 WHERE opponent = "jae young kim"
CREATE TABLE table_name_9 (location VARCHAR, opponent VARCHAR)
What was the location where the opponent was Jae Young Kim?
SELECT event FROM table_name_46 WHERE opponent = "jose carlos oliveira"
CREATE TABLE table_name_46 (event VARCHAR, opponent VARCHAR)
Which event was the opponent jose carlos oliveira?
SELECT round FROM table_name_87 WHERE opponent = "bobby rehman"
CREATE TABLE table_name_87 (round VARCHAR, opponent VARCHAR)
How many rounds was the bout against bobby rehman?
SELECT location FROM table_name_89 WHERE record = "12-5"
CREATE TABLE table_name_89 (location VARCHAR, record VARCHAR)
Where was the location when the record was 12-5?
SELECT dvd_title FROM table_name_57 WHERE region_1 = "n/a" AND no_of_discs > 3
CREATE TABLE table_name_57 (dvd_title VARCHAR, region_1 VARCHAR, no_of_discs VARCHAR)
Which DVD Title has a Region 1 of n/a and greater than 3 in No. of Discs?
SELECT region_1 FROM table_name_83 WHERE no_of_episodes = 12 AND region_2 = "18 august 2008"
CREATE TABLE table_name_83 (region_1 VARCHAR, no_of_episodes VARCHAR, region_2 VARCHAR)
Which region 1 has 12 Episodes and a Region 2 of 18 August 2008?
SELECT tries_for FROM table_name_14 WHERE tries_against = "140"
CREATE TABLE table_name_14 (tries_for VARCHAR, tries_against VARCHAR)
WHAT TRIES HAVE TRIES AGAINST AT 140?
SELECT tries_against FROM table_name_1 WHERE played = "22" AND points_against = "784"
CREATE TABLE table_name_1 (tries_against VARCHAR, played VARCHAR, points_against VARCHAR)
WHAT IS THE TRIES AGAINST WITH PLAYED 22, POINTS AGAINST 784?
SELECT tries_for FROM table_name_36 WHERE points_for = "190"
CREATE TABLE table_name_36 (tries_for VARCHAR, points_for VARCHAR)
WHAT IS THE TRIES WITH POINTS 190?
SELECT points FROM table_name_89 WHERE tries_for = "55"
CREATE TABLE table_name_89 (points VARCHAR, tries_for VARCHAR)
WHAT IS THE POINTS WITH 55 TRIES?
SELECT lost FROM table_name_32 WHERE losing_bonus = "1" AND points_for = "148"
CREATE TABLE table_name_32 (lost VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
WHAT IS THE LOST WITH 1 LOSING BONUS, 148 POINTS?
SELECT losing_bonus FROM table_name_31 WHERE points_for = "190"
CREATE TABLE table_name_31 (losing_bonus VARCHAR, points_for VARCHAR)
WHAT IS THE LOSING BONUS WITH 190 POINTS?
SELECT SUM(pick) FROM table_name_99 WHERE position = "guard"
CREATE TABLE table_name_99 (pick INTEGER, position VARCHAR)
What is the sum of the pick of the guard position player?
SELECT nfl_club FROM table_name_60 WHERE pick = 153
CREATE TABLE table_name_60 (nfl_club VARCHAR, pick VARCHAR)
What is the NFL club with pick # 153?
SELECT player FROM table_name_58 WHERE round < 13 AND pick = 74
CREATE TABLE table_name_58 (player VARCHAR, round VARCHAR, pick VARCHAR)
Who is the player from a round less than 13 and has a pick of 74?
SELECT player FROM table_name_47 WHERE round = 13 AND position = "center"
CREATE TABLE table_name_47 (player VARCHAR, round VARCHAR, position VARCHAR)
Who is the player from round 13 that plays center?
SELECT nfl_club FROM table_name_39 WHERE pick < 74 AND round > 2
CREATE TABLE table_name_39 (nfl_club VARCHAR, pick VARCHAR, round VARCHAR)
What is the NFL club with a pick less than 74 and a round greater than 2?
SELECT conference_semifinals FROM table_name_73 WHERE record = "55–27"
CREATE TABLE table_name_73 (conference_semifinals VARCHAR, record VARCHAR)
Which Conference Semifinals has a Record of 55–27?
SELECT conference_semifinals FROM table_name_57 WHERE conference_finals = "† denotes division championship"
CREATE TABLE table_name_57 (conference_semifinals VARCHAR, conference_finals VARCHAR)
Which Conference Semifinals has a Conference Finals of † denotes division championship?
SELECT conference_finals FROM table_name_32 WHERE seed = "† denotes division championship"
CREATE TABLE table_name_32 (conference_finals VARCHAR, seed VARCHAR)
Which Conference Finals has a Seed of † denotes division championship?
SELECT rank FROM table_name_43 WHERE publication = "the observer music monthly"
CREATE TABLE table_name_43 (rank VARCHAR, publication VARCHAR)
What rank is the publication the observer music monthly?
SELECT MAX(year) FROM table_name_10 WHERE publication = "the observer music monthly"
CREATE TABLE table_name_10 (year INTEGER, publication VARCHAR)
What is the publication the observer music monthly highest year?
SELECT AVG(attendance) FROM table_name_71 WHERE venue = "candlestick park" AND date = "december 27"
CREATE TABLE table_name_71 (attendance INTEGER, venue VARCHAR, date VARCHAR)
What is the average Attendance, when Venue is "Candlestick Park", and when Date is "December 27"?
SELECT result FROM table_name_32 WHERE date = "november 22"
CREATE TABLE table_name_32 (result VARCHAR, date VARCHAR)
What is Result, when Date is "November 22"?
SELECT AVG(attendance) FROM table_name_54 WHERE venue = "candlestick park" AND date = "november 25"
CREATE TABLE table_name_54 (attendance INTEGER, venue VARCHAR, date VARCHAR)
What is the average Attendance, when Venue is "Candlestick Park", and when Date is "November 25"?
SELECT bronze FROM table_name_55 WHERE silver = "tatiana ryabkina" AND gold = "anne margrethe hausken"
CREATE TABLE table_name_55 (bronze VARCHAR, silver VARCHAR, gold VARCHAR)
What bronze has tatiana ryabkina as the silver, anne margrethe hausken as the gold?
SELECT label FROM table_name_14 WHERE format = "cd" AND region = "australia"
CREATE TABLE table_name_14 (label VARCHAR, format VARCHAR, region VARCHAR)
What label is in CD format in Australia?
SELECT label FROM table_name_96 WHERE catalog = "crg3p-90054"
CREATE TABLE table_name_96 (label VARCHAR, catalog VARCHAR)
What is the label for catalog number CRG3P-90054?
SELECT format FROM table_name_40 WHERE label = "mca"
CREATE TABLE table_name_40 (format VARCHAR, label VARCHAR)
What is the format for the MCA label?
SELECT catalog FROM table_name_33 WHERE label = "grilled cheese"
CREATE TABLE table_name_33 (catalog VARCHAR, label VARCHAR)
What is the catalog number for the Grilled Cheese label?
SELECT region FROM table_name_15 WHERE format = "cd" AND label = "mca"
CREATE TABLE table_name_15 (region VARCHAR, format VARCHAR, label VARCHAR)
Which region has the format CD and label MCA?
SELECT format FROM table_name_50 WHERE region = "united states" AND date = "january 12, 2010" AND label = "mightier than sword"
CREATE TABLE table_name_50 (format VARCHAR, label VARCHAR, region VARCHAR, date VARCHAR)
What is the format for the label Mightier than Sword on January 12, 2010 in the United States?
SELECT station FROM table_name_15 WHERE height_above_sea_level__m_ = "54m" AND "closed" = "closed"
CREATE TABLE table_name_15 (station VARCHAR, height_above_sea_level__m_ VARCHAR)
Which station that sat 54m above seal level is now Closed?
SELECT closed FROM table_name_6 WHERE opened < 1877 AND distance_from_wellington = "2.44km"
CREATE TABLE table_name_6 (closed VARCHAR, opened VARCHAR, distance_from_wellington VARCHAR)
Opened prior to 1877 only 2.44km from Wellington, when did this station close?
SELECT height_above_sea_level__m_ FROM table_name_2 WHERE opened < 1887 AND distance_from_wellington = "175.67km"
CREATE TABLE table_name_2 (height_above_sea_level__m_ VARCHAR, opened VARCHAR, distance_from_wellington VARCHAR)
What is the height above sea level for the station opened 175.67km from Wellington prior to 1887?
SELECT height_above_sea_level__m_ FROM table_name_22 WHERE opened > 1876 AND distance_from_wellington = "604.53km"
CREATE TABLE table_name_22 (height_above_sea_level__m_ VARCHAR, opened VARCHAR, distance_from_wellington VARCHAR)
For the station opened after 1876 at 604.53km from Wellington, what is the height above sea level?
SELECT opponent FROM table_name_81 WHERE attendance = "70,012"
CREATE TABLE table_name_81 (opponent VARCHAR, attendance VARCHAR)
Who was the opponent at the game attended by 70,012?