question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
When was successor George E. Harris (R) seated?
CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, successor VARCHAR)
SELECT date_successor_seated FROM table_2417345_4 WHERE successor = "George E. Harris (R)"
Find the first and last name of students who are living in the dorms that have amenity TV Lounge.
CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR, amenity_name VARCHAR)
SELECT T1.fname, T1.lname FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid WHERE T2.dormid IN (SELECT T3.dormid FROM has_amenity AS T3 JOIN dorm_amenity AS T4 ON T3.amenid = T4.amenid WHERE T4.amenity_name = 'TV Lounge')
For part 2 *raid, what is listed for part 3?
CREATE TABLE table_1745843_2 (part_3 VARCHAR, part_2 VARCHAR)
SELECT part_3 FROM table_1745843_2 WHERE part_2 = "*raid"
What is To par, when Country is "United States", and when Player is "Mark Brooks"?
CREATE TABLE table_name_74 (to_par VARCHAR, country VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_74 WHERE country = "united states" AND player = "mark brooks"
Which 2004 has a Tournament of french open?
CREATE TABLE table_name_41 (tournament VARCHAR)
SELECT 2004 FROM table_name_41 WHERE tournament = "french open"
What is the final position with ties of 0, and wins of 5?
CREATE TABLE table_name_87 (final_position VARCHAR, ties VARCHAR, wins VARCHAR)
SELECT final_position FROM table_name_87 WHERE ties = "0" AND wins = "5"
Show the pilot positions that have both pilots joining after year 2005 and pilots joining before 2000.
CREATE TABLE pilot (POSITION VARCHAR, Join_Year INTEGER)
SELECT POSITION FROM pilot WHERE Join_Year < 2000 INTERSECT SELECT POSITION FROM pilot WHERE Join_Year > 2005
What aircraft type is the Casa C-212 Aviocar?
CREATE TABLE table_name_45 (type VARCHAR, aircraft VARCHAR)
SELECT type FROM table_name_45 WHERE aircraft = "casa c-212 aviocar"
What is the earliest year catalog # ual 24033 had an LP?
CREATE TABLE table_name_67 (year INTEGER, type VARCHAR, catalog__number VARCHAR)
SELECT MIN(year) FROM table_name_67 WHERE type = "lp" AND catalog__number = "ual 24033"
Who hosted the visiting team Baltimore Ravens?
CREATE TABLE table_name_24 (host_team VARCHAR, visiting_team VARCHAR)
SELECT host_team FROM table_name_24 WHERE visiting_team = "baltimore ravens"
Name the number of barangay for 205.4 density
CREATE TABLE table_269888_1 (no_of_s_barangay VARCHAR, pop_density__per_km²_ VARCHAR)
SELECT no_of_s_barangay FROM table_269888_1 WHERE pop_density__per_km²_ = "205.4"
Name the competition for australia 13, new zealand 40, drawn 3
CREATE TABLE table_20251343_4 (competition VARCHAR, head_to_head VARCHAR)
SELECT competition FROM table_20251343_4 WHERE head_to_head = "Australia 13, New Zealand 40, Drawn 3"
What is the event name when the method is submission (brabo choke)?
CREATE TABLE table_name_20 (event VARCHAR, method VARCHAR)
SELECT event FROM table_name_20 WHERE method = "submission (brabo choke)"
What which player from Canada was picked #49 and plays left wing?
CREATE TABLE table_name_18 (player VARCHAR, pick__number VARCHAR, nationality VARCHAR, position VARCHAR)
SELECT player FROM table_name_18 WHERE nationality = "canada" AND position = "left wing" AND pick__number = "49"
What is the latest episode number that was directed by Tom Dicillo?
CREATE TABLE table_28561455_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_series) FROM table_28561455_1 WHERE directed_by = "Tom DiCillo"
Which Tries against has Points against larger than 156, and Points for of 127, and Tries for larger than 17?
CREATE TABLE table_name_8 (tries_against INTEGER, tries_for VARCHAR, points_against VARCHAR, points_for VARCHAR)
SELECT AVG(tries_against) FROM table_name_8 WHERE points_against > 156 AND points_for = 127 AND tries_for > 17
Who is the player when the bbi is 5/27?
CREATE TABLE table_27268238_5 (player VARCHAR, bbi VARCHAR)
SELECT player FROM table_27268238_5 WHERE bbi = "5/27"
Which member is from the state of SA and the grey electorate?
CREATE TABLE table_name_74 (member VARCHAR, state VARCHAR, electorate VARCHAR)
SELECT member FROM table_name_74 WHERE state = "sa" AND electorate = "grey"
What is the most podiums Pedro Nunes had when in 17th position?
CREATE TABLE table_25386974_1 (podiums INTEGER, position VARCHAR)
SELECT MAX(podiums) FROM table_25386974_1 WHERE position = "17th"
How many dates have silverstone circuit
CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR)
SELECT COUNT(date) FROM table_1140103_6 WHERE circuit = "Silverstone"
What is the result of districk georgia's 1st?
CREATE TABLE table_27021001_1 (result VARCHAR, district VARCHAR)
SELECT result FROM table_27021001_1 WHERE district = "Georgia's 1st"
What is the highest year team tyrrell earned more than 14 points?
CREATE TABLE table_name_20 (year INTEGER, entrant VARCHAR, points VARCHAR)
SELECT MAX(year) FROM table_name_20 WHERE entrant = "team tyrrell" AND points > 14
Show all paragraph texts for the document "Customer reviews".
CREATE TABLE Paragraphs (paragraph_text VARCHAR, document_id VARCHAR); CREATE TABLE Documents (document_id VARCHAR, document_name VARCHAR)
SELECT T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.document_name = "Customer reviews"
What is every yellow jersey entry for the distance 125?
CREATE TABLE table_275506_1 (yellow_jersey VARCHAR, distance__km_ VARCHAR)
SELECT yellow_jersey FROM table_275506_1 WHERE distance__km_ = "125"
what is the year when the date is not played?
CREATE TABLE table_name_84 (year VARCHAR, date VARCHAR)
SELECT year FROM table_name_84 WHERE date = "not played"
What's the Hangul/Japanese of Boys Over Flowers that's drama?
CREATE TABLE table_name_80 (hangul___japanese VARCHAR, genre VARCHAR, title VARCHAR)
SELECT hangul___japanese FROM table_name_80 WHERE genre = "drama" AND title = "boys over flowers"
What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club?
CREATE TABLE table_name_41 (purse___ VARCHAR, champion VARCHAR, venue VARCHAR)
SELECT COUNT(purse___) AS $__ FROM table_name_41 WHERE champion = "sherri steinhauer" AND venue = "woburn golf and country club"
Where was the ship when the ship had captured as the disposition of ship and was carrying 225 tonnage?
CREATE TABLE table_name_29 (location VARCHAR, disposition_of_ship VARCHAR, tonnage VARCHAR)
SELECT location FROM table_name_29 WHERE disposition_of_ship = "captured" AND tonnage = "225"
What is the Score of the game @ San Antonio on June 20?
CREATE TABLE table_name_81 (score VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT score FROM table_name_81 WHERE opponent = "@ san antonio" AND date = "june 20"
Which model had a wheelbase of 136 inches?
CREATE TABLE table_name_54 (model VARCHAR, wheelbase_in VARCHAR)
SELECT model FROM table_name_54 WHERE wheelbase_in = "136"
What is the minimum of t20 matches?
CREATE TABLE table_1176371_1 (t20_matches INTEGER)
SELECT MIN(t20_matches) FROM table_1176371_1
How many grid numbers were there for the driver Giancarlo Fisichella?
CREATE TABLE table_name_3 (grid VARCHAR, driver VARCHAR)
SELECT COUNT(grid) FROM table_name_3 WHERE driver = "giancarlo fisichella"
Which player played for the Grizzlies from 1997-1998?
CREATE TABLE table_name_13 (player VARCHAR, years_for_grizzlies VARCHAR)
SELECT player FROM table_name_13 WHERE years_for_grizzlies = "1997-1998"
Find the number of amenities for each of the dorms that can accommodate more than 100 students.
CREATE TABLE dorm (dormid VARCHAR, student_capacity INTEGER); CREATE TABLE has_amenity (dormid VARCHAR)
SELECT COUNT(*), T1.dormid FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid WHERE T1.student_capacity > 100 GROUP BY T1.dormid
When did the person die who was born on 18 november 1630?
CREATE TABLE table_name_3 (death VARCHAR, birth VARCHAR)
SELECT death FROM table_name_3 WHERE birth = "18 november 1630"
Which season was one of the players rated +98?
CREATE TABLE table_name_6 (season VARCHAR, rating VARCHAR)
SELECT season FROM table_name_6 WHERE rating = "+98"
How many poles did team #14 ginn racing have?
CREATE TABLE table_1708014_1 (poles VARCHAR, team_s_ VARCHAR)
SELECT poles FROM table_1708014_1 WHERE team_s_ = "#14 Ginn Racing"
How many roles include George Broderick in the casino 1888 theater?
CREATE TABLE table_148386_2 (role VARCHAR, casino_theatre_1888 VARCHAR)
SELECT role FROM table_148386_2 WHERE casino_theatre_1888 = "George Broderick"
What album was the song My Chariot on?
CREATE TABLE table_23667534_1 (album_s_ VARCHAR, song_s__title VARCHAR)
SELECT album_s_ FROM table_23667534_1 WHERE song_s__title = "My Chariot"
What Hanyu Pinyin is in the Jinning Township?
CREATE TABLE table_name_66 (hanyu_pinyin VARCHAR, name VARCHAR)
SELECT hanyu_pinyin FROM table_name_66 WHERE name = "jinning township"
What is Loris Capirossi's time?
CREATE TABLE table_name_30 (time VARCHAR, rider VARCHAR)
SELECT time FROM table_name_30 WHERE rider = "loris capirossi"
How many copies per particle are created by the enterotoxin?
CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, function VARCHAR)
SELECT copies_per_particle FROM table_140968_1 WHERE function = "Enterotoxin"
What is Score, when Team is "@ Memphis"?
CREATE TABLE table_name_29 (score VARCHAR, team VARCHAR)
SELECT score FROM table_name_29 WHERE team = "@ memphis"
Which Home Captain has Venue of Bourda?
CREATE TABLE table_name_42 (home_captain VARCHAR, venue VARCHAR)
SELECT home_captain FROM table_name_42 WHERE venue = "bourda"
What is the lowest total that has 1977 as the year (s) won?
CREATE TABLE table_name_32 (total INTEGER, year_s__won VARCHAR)
SELECT MIN(total) FROM table_name_32 WHERE year_s__won = "1977"
how many mean elevation with lowest point being gulf of mexico and state being texas
CREATE TABLE table_1416612_1 (mean_elevation VARCHAR, lowest_point VARCHAR, state VARCHAR)
SELECT COUNT(mean_elevation) FROM table_1416612_1 WHERE lowest_point = "Gulf of Mexico" AND state = "Texas"
Beata syta is the minimum year for womens singles.
CREATE TABLE table_13857501_1 (year INTEGER, womens_singles VARCHAR)
SELECT MIN(year) FROM table_13857501_1 WHERE womens_singles = "Beata Syta"
What is the name of the player from Malaysia, Kuala Lumpur in Index f8?
CREATE TABLE table_name_67 (name VARCHAR, country VARCHAR, index VARCHAR)
SELECT name FROM table_name_67 WHERE country = "malaysia, kuala lumpur" AND index = "f8"
What is the fewest number of draws for teams with more than 0 byes?
CREATE TABLE table_name_75 (draws INTEGER, byes INTEGER)
SELECT MIN(draws) FROM table_name_75 WHERE byes > 0
Who many games were played for the series with the Sawhorse Dollar trophy?
CREATE TABLE table_name_77 (games_played VARCHAR, trophy VARCHAR)
SELECT games_played FROM table_name_77 WHERE trophy = "sawhorse dollar"
What is the fewest gold medals when there is 0 bronze medals, and the rank is 19, and silver medals are less than 1?
CREATE TABLE table_name_16 (gold INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT MIN(gold) FROM table_name_16 WHERE bronze = 0 AND rank = "19" AND silver < 1
Who was the director that had a recipient of Redbag Pictures Ltd?
CREATE TABLE table_name_54 (director_s_ VARCHAR, recipient VARCHAR)
SELECT director_s_ FROM table_name_54 WHERE recipient = "redbag pictures ltd"
What is the PI code in the hindhead area?
CREATE TABLE table_name_54 (pi_code VARCHAR, area VARCHAR)
SELECT pi_code FROM table_name_54 WHERE area = "hindhead"
What is the affiliation of a location called Issaquah?
CREATE TABLE table_name_51 (affiliation VARCHAR, location VARCHAR)
SELECT affiliation FROM table_name_51 WHERE location = "issaquah"
What is the average rank of one who is at 76 laps?
CREATE TABLE table_name_98 (rank INTEGER, laps VARCHAR)
SELECT AVG(rank) FROM table_name_98 WHERE laps = 76
What is the To Par of winning score 71-66-70-67=274?
CREATE TABLE table_name_52 (to_par VARCHAR, winning_score VARCHAR)
SELECT to_par FROM table_name_52 WHERE winning_score = 71 - 66 - 70 - 67 = 274
What is the FA Cup Apps when total goals is smaller than 4, League Cup Goals is 0, and League Apps is 8 (10)?
CREATE TABLE table_name_73 (fa_cup_apps VARCHAR, league_apps VARCHAR, total_goals VARCHAR, league_cup_goals VARCHAR)
SELECT fa_cup_apps FROM table_name_73 WHERE total_goals < 4 AND league_cup_goals = 0 AND league_apps = "8 (10)"
What is the price of 150 mbps downstread?
CREATE TABLE table_name_20 (price VARCHAR, downstream VARCHAR)
SELECT price FROM table_name_20 WHERE downstream = "150 mbps"
WHich Year has a Music director(s) of anu malik?
CREATE TABLE table_name_5 (year INTEGER, music_director_s_ VARCHAR)
SELECT SUM(year) FROM table_name_5 WHERE music_director_s_ = "anu malik"
Name the sensor res for model of s9200
CREATE TABLE table_name_74 (sensor_res VARCHAR, _size VARCHAR, model VARCHAR)
SELECT sensor_res, _size FROM table_name_74 WHERE model = "s9200"
What is the weapon for the mecha of motorcycle?
CREATE TABLE table_name_55 (weapon VARCHAR, mecha VARCHAR)
SELECT weapon FROM table_name_55 WHERE mecha = "motorcycle"
How many tournament titles for texas with over 0 total?
CREATE TABLE table_name_89 (tournament VARCHAR, total VARCHAR, team VARCHAR)
SELECT COUNT(tournament) FROM table_name_89 WHERE total > 0 AND team = "texas"
What was the event where justin robbins had a record of 9-4-1?
CREATE TABLE table_name_54 (event VARCHAR, record VARCHAR)
SELECT event FROM table_name_54 WHERE record = "9-4-1"
When оџаци is the cyrillic name other names what is the type?
CREATE TABLE table_2562572_25 (type VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT type FROM table_2562572_25 WHERE cyrillic_name_other_names = "Оџаци"
What core clocks ( mhz ) have a 21.3 memory bandwidth ( gb/s )?
CREATE TABLE table_25839957_5 (core_clock___mhz__ VARCHAR, memory_bandwidth___gb_s__ VARCHAR)
SELECT core_clock___mhz__ FROM table_25839957_5 WHERE memory_bandwidth___gb_s__ = "21.3"
What is the smallest number of laps for Team Green when the grid is 1?
CREATE TABLE table_name_67 (laps INTEGER, team VARCHAR, grid VARCHAR)
SELECT MIN(laps) FROM table_name_67 WHERE team = "team green" AND grid = 1
What's the record of the UCS 2 - Battle at the Barn when the round was n/a?
CREATE TABLE table_name_7 (record VARCHAR, round VARCHAR, event VARCHAR)
SELECT record FROM table_name_7 WHERE round = "n/a" AND event = "ucs 2 - battle at the barn"
What company built the chassis for a year later than 1959 and a climax l4 engine?
CREATE TABLE table_name_69 (chassis VARCHAR, year VARCHAR, engine VARCHAR)
SELECT chassis FROM table_name_69 WHERE year > 1959 AND engine = "climax l4"
What are the family relations of the king with the throne name 303?
CREATE TABLE table_name_20 (family_relations VARCHAR, throne_name VARCHAR)
SELECT family_relations FROM table_name_20 WHERE throne_name = "303"
What is the rank of the team having 3 bronzes and 0 silver?
CREATE TABLE table_name_79 (rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT rank FROM table_name_79 WHERE bronze = 3 AND silver = 0
What is the average points that the driver Ryan Hunter-Reay has?
CREATE TABLE table_name_54 (points INTEGER, driver VARCHAR)
SELECT AVG(points) FROM table_name_54 WHERE driver = "ryan hunter-reay"
What is Country, when Player is "Jack Nicklaus"?
CREATE TABLE table_name_56 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_56 WHERE player = "jack nicklaus"
In what week(s) did the Broncos go up against the Cleveland Browns?
CREATE TABLE table_name_99 (week INTEGER, opponent VARCHAR)
SELECT SUM(week) FROM table_name_99 WHERE opponent = "cleveland browns"
Which Format has a Region of united states, and a Catalog of kem 072?
CREATE TABLE table_name_61 (format VARCHAR, region VARCHAR, catalog VARCHAR)
SELECT format FROM table_name_61 WHERE region = "united states" AND catalog = "kem 072"
How many games have an Attendance of 19,190?
CREATE TABLE table_name_52 (game VARCHAR, attendance VARCHAR)
SELECT COUNT(game) FROM table_name_52 WHERE attendance = 19 OFFSET 190
List the player that scored 4 times.
CREATE TABLE table_24565004_15 (name VARCHAR, goals¹ VARCHAR)
SELECT name FROM table_24565004_15 WHERE goals¹ = 4
Whcih was the Class AAA in school year 2006-07?
CREATE TABLE table_name_85 (class_aAA VARCHAR, school_year VARCHAR)
SELECT class_aAA FROM table_name_85 WHERE school_year = "2006-07"
What was the race that was won by a Maserati being driven by Giuseppe Campari?
CREATE TABLE table_name_67 (circuit VARCHAR, winning_constructor VARCHAR, winning_drivers VARCHAR)
SELECT circuit FROM table_name_67 WHERE winning_constructor = "maserati" AND winning_drivers = "giuseppe campari"
Show different types of ships and the number of ships of each type.
CREATE TABLE ship (TYPE VARCHAR)
SELECT TYPE, COUNT(*) FROM ship GROUP BY TYPE
How many draws have a Cambridge United career of 2008–2009 and less than 13 losses?
CREATE TABLE table_name_2 (drawn VARCHAR, cambridge_united_career VARCHAR, lost VARCHAR)
SELECT COUNT(drawn) FROM table_name_2 WHERE cambridge_united_career = "2008–2009" AND lost < 13
Of the games before week 3 which had attendance great than 65,904?
CREATE TABLE table_name_88 (date VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_88 WHERE week < 3 AND attendance > 65 OFFSET 904
When was the microprocessor with 1.65–1.7 v, a mult of 4.5×, and a slot 1 socket released?
CREATE TABLE table_name_43 (release_date VARCHAR, socket VARCHAR, voltage VARCHAR, mult VARCHAR)
SELECT release_date FROM table_name_43 WHERE voltage = "1.65–1.7 v" AND mult = "4.5×" AND socket = "slot 1"
What is the weight of the bullet used in a Remington?
CREATE TABLE table_16010376_1 (bullet_weight VARCHAR, source VARCHAR)
SELECT bullet_weight FROM table_16010376_1 WHERE source = "Remington"
Name the week for steve toll
CREATE TABLE table_23265433_2 (week VARCHAR, transition VARCHAR)
SELECT week FROM table_23265433_2 WHERE transition = "Steve Toll"
On what Date is Olimpia the Home team?
CREATE TABLE table_name_49 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_49 WHERE home = "olimpia"
What is the length and duration of the race on April 19?
CREATE TABLE table_name_85 (length_duration VARCHAR, date VARCHAR)
SELECT length_duration FROM table_name_85 WHERE date = "april 19"
What was the pick number when Paul Krake was selected?
CREATE TABLE table_2897457_8 (pick__number INTEGER, player VARCHAR)
SELECT MIN(pick__number) FROM table_2897457_8 WHERE player = "Paul Krake"
When 44 is the col in meters what is the country?
CREATE TABLE table_18946749_1 (country VARCHAR, col__m_ VARCHAR)
SELECT country FROM table_18946749_1 WHERE col__m_ = 44
Which IHSAA Class is located in charlottesville?
CREATE TABLE table_name_24 (ihsaa_class VARCHAR, location VARCHAR)
SELECT ihsaa_class FROM table_name_24 WHERE location = "charlottesville"
I want the average pages for ISBN of 978-0-9766580-5-4
CREATE TABLE table_name_77 (pages INTEGER, isbn VARCHAR)
SELECT AVG(pages) FROM table_name_77 WHERE isbn = "978-0-9766580-5-4"
What is the lowest Grid, when Laps is 21, when Manufacturer is Yamaha, and when Time is +18.802?
CREATE TABLE table_name_10 (grid INTEGER, time VARCHAR, laps VARCHAR, manufacturer VARCHAR)
SELECT MIN(grid) FROM table_name_10 WHERE laps = 21 AND manufacturer = "yamaha" AND time = "+18.802"
What is the length of the UK remix version?
CREATE TABLE table_name_68 (length VARCHAR, version VARCHAR)
SELECT length FROM table_name_68 WHERE version = "uk remix"
What is the attendance in week 15?
CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_25 WHERE week = "15"
what's the result with first elected being 1922
CREATE TABLE table_1342359_15 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_1342359_15 WHERE first_elected = 1922
what is the natural change (per 1000) when the crude death rate (per 1000) is 10?
CREATE TABLE table_name_61 (natural_change__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR)
SELECT natural_change__per_1000_ FROM table_name_61 WHERE crude_death_rate__per_1000_ = 10
WHich General classification has an Asian rider classification of shinichi fukushima, and a Winner of jeremy hunt?
CREATE TABLE table_name_1 (general_classification VARCHAR, asian_rider_classification VARCHAR, winner VARCHAR)
SELECT general_classification FROM table_name_1 WHERE asian_rider_classification = "shinichi fukushima" AND winner = "jeremy hunt"
How many Connecticut home games were broadcast?
CREATE TABLE table_28298589_4 (broadcast VARCHAR, home_team VARCHAR)
SELECT COUNT(broadcast) FROM table_28298589_4 WHERE home_team = "Connecticut"
What is Jockey, when Horse is "Eight Belles"?
CREATE TABLE table_name_74 (jockey VARCHAR, horse VARCHAR)
SELECT jockey FROM table_name_74 WHERE horse = "eight belles"
What is every year named for the latitude of 66.5N?
CREATE TABLE table_16799784_12 (year_named VARCHAR, latitude VARCHAR)
SELECT year_named FROM table_16799784_12 WHERE latitude = "66.5N"
What is the average Attendance, when the Date is September 17, 1981?
CREATE TABLE table_name_78 (attendance INTEGER, date VARCHAR)
SELECT AVG(attendance) FROM table_name_78 WHERE date = "september 17, 1981"