answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT tournament FROM table_name_86 WHERE date = "august 11, 1984"
What tournament was being played on August 11, 1984?
CREATE TABLE table_name_86 (tournament VARCHAR, date VARCHAR)
SELECT id FROM Highschooler EXCEPT SELECT student_id FROM Friend
Show ids of all students who do not have any friends.
CREATE TABLE Highschooler (id VARCHAR, student_id VARCHAR); CREATE TABLE Friend (id VARCHAR, student_id VARCHAR)
SELECT catalog FROM table_name_31 WHERE label = "alfa records" AND date = "november 21, 1980"
What Catalog has a label of Alfa records and a date of November 21, 1980?
CREATE TABLE table_name_31 (catalog VARCHAR, label VARCHAR, date VARCHAR)
SELECT player FROM table_name_71 WHERE score = 72 - 69 - 73 = 214
Which Player has a Score of 72-69-73=214?
CREATE TABLE table_name_71 (player VARCHAR, score VARCHAR)
SELECT nation FROM table_name_53 WHERE gold = 0 AND silver = 0 AND total = 2
Which nation has 0 gold, 0 silver and 2 total?
CREATE TABLE table_name_53 (nation VARCHAR, total VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT nationality FROM table_2840500_4 WHERE player = "Christian Lefebvre"
What is the nationality of Christian Lefebvre?
CREATE TABLE table_2840500_4 (nationality VARCHAR, player VARCHAR)
SELECT AVG(first_elected) FROM table_name_18 WHERE incumbent = "john shadegg"
What is John Shadegg's First Elected date?
CREATE TABLE table_name_18 (first_elected INTEGER, incumbent VARCHAR)
SELECT SUM(core__number) FROM table_name_80 WHERE part_number_opn_ = "osa242cep5au" AND tdp__w_ > 82.1
What is the sum of core# with a part number of osa242cep5au and TDP greater than 82.1?
CREATE TABLE table_name_80 (core__number INTEGER, part_number_opn_ VARCHAR, tdp__w_ VARCHAR)
SELECT film_show FROM table_name_19 WHERE year = 2010
What is the Film/Show, when the Year is 2010?
CREATE TABLE table_name_19 (film_show VARCHAR, year VARCHAR)
SELECT COUNT(year) FROM table_1547951_3 WHERE outcome = "Runner-up" AND championship = "US Open"
Name the total number of years where runner-up and championship is us open
CREATE TABLE table_1547951_3 (year VARCHAR, outcome VARCHAR, championship VARCHAR)
SELECT home_captain FROM table_name_42 WHERE venue = "bourda"
Which Home Captain has Venue of Bourda?
CREATE TABLE table_name_42 (home_captain VARCHAR, venue VARCHAR)
SELECT place FROM table_name_46 WHERE player = "paul mcginley"
What place did Paul McGinley finish in?
CREATE TABLE table_name_46 (place VARCHAR, player VARCHAR)
SELECT time FROM table_name_31 WHERE home = "high park demons"
What is the Time with a Home that is high park demons?
CREATE TABLE table_name_31 (time VARCHAR, home VARCHAR)
SELECT SUM(place) FROM table_name_60 WHERE lost < 2
What is the sum of the place that has less than 2 losses?
CREATE TABLE table_name_60 (place INTEGER, lost INTEGER)
SELECT score FROM table_name_99 WHERE venue = "sultan qaboos sports complex, muscat"
The game played at Sultan Qaboos Sports Complex, Muscat had what score?
CREATE TABLE table_name_99 (score VARCHAR, venue VARCHAR)
SELECT date_of_vacancy FROM table_11190568_7 WHERE replaced_by = "Davy FitzGerald"
When is the date of vacancy of Davy Fitzgerald being a replacement?
CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
SELECT MAX(no_in_season) FROM table_12226390_4 WHERE written_by = "Bobby Bell and Bill Lee"
What episode was written by Bobby Bell and Bill Lee?
CREATE TABLE table_12226390_4 (no_in_season INTEGER, written_by VARCHAR)
SELECT surface FROM table_name_26 WHERE partner = "debbie graham"
What was the Surface during the match with Partner Debbie Graham?
CREATE TABLE table_name_26 (surface VARCHAR, partner VARCHAR)
SELECT mountains_classification_klasyfikacja_górska FROM table_22917458_15 WHERE winner = "Alessandro Ballan"
Who was the mountain classification winner in the stage won by Alessandro Ballan?
CREATE TABLE table_22917458_15 (mountains_classification_klasyfikacja_górska VARCHAR, winner VARCHAR)
SELECT name FROM table_name_64 WHERE round > 10 AND position = "placekicker"
Who had the placekicker position with a round above 10?
CREATE TABLE table_name_64 (name VARCHAR, round VARCHAR, position VARCHAR)
SELECT MAX(cuts_made) FROM table_name_54 WHERE top_25 = 4
Which tournament has the highest number of cuts while also having 4 top 25 appearances?
CREATE TABLE table_name_54 (cuts_made INTEGER, top_25 VARCHAR)
SELECT turnout__percentage FROM table_name_11 WHERE ngilu = "3,429"
What's listed for the Turnout % with a Ngilu of 3,429?
CREATE TABLE table_name_11 (turnout__percentage VARCHAR, ngilu VARCHAR)
SELECT MAX(latitude) FROM table_name_24 WHERE pop__2010_ = 24 AND water__sqmi_ > 0.319
What is latitude when 2010 population is 24 and water is more than 0.319?
CREATE TABLE table_name_24 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR)
SELECT episode_title FROM table_name_81 WHERE original_airdate = "october 8, 1988"
Name the episode that aired october 8, 1988
CREATE TABLE table_name_81 (episode_title VARCHAR, original_airdate VARCHAR)
SELECT MAX(cuts_made) FROM table_name_44 WHERE top_25 = 3 AND events < 13
How many cuts did he make in the tournament with 3 top 25s and under 13 events?
CREATE TABLE table_name_44 (cuts_made INTEGER, top_25 VARCHAR, events VARCHAR)
SELECT MIN(rank) FROM table_name_39 WHERE lane = 5 AND time < 11.06
Name the lowest Rank with a Lane of 5 and a Time smaller than 11.06?
CREATE TABLE table_name_39 (rank INTEGER, lane VARCHAR, time VARCHAR)
SELECT constellation FROM table_name_37 WHERE object_type = "open cluster"
What is the constellation for open cluster?
CREATE TABLE table_name_37 (constellation VARCHAR, object_type VARCHAR)
SELECT opponent FROM table_name_31 WHERE game < 5 AND record = "0-1-0"
Who is the opponent before game 5 with a 0-1-0 record?
CREATE TABLE table_name_31 (opponent VARCHAR, game VARCHAR, record VARCHAR)
SELECT SUM(production_number) FROM table_name_33 WHERE title = "from hare to heir"
What is the production number of From Hare to Heir?
CREATE TABLE table_name_33 (production_number INTEGER, title VARCHAR)
SELECT AVG(frequency_mhz) FROM table_name_2 WHERE call_sign = "w224bn"
What is the Frequency MHz for the station with a call sign of w224bn?
CREATE TABLE table_name_2 (frequency_mhz INTEGER, call_sign VARCHAR)
SELECT winning_team FROM table_name_21 WHERE most_laps_led = "alex tagliani"
What is Winning Team, when Most Laps Led is Alex Tagliani?
CREATE TABLE table_name_21 (winning_team VARCHAR, most_laps_led VARCHAR)
SELECT MIN(tasmania) FROM table_1057262_2
what's the minimum tasmania value
CREATE TABLE table_1057262_2 (tasmania INTEGER)
SELECT host_team FROM table_name_4 WHERE date = "december 19"
Who was the host team on December 19?
CREATE TABLE table_name_4 (host_team VARCHAR, date VARCHAR)
SELECT MIN(year) FROM table_name_35 WHERE genre = "action"
What is the earliest year when action was the genre?
CREATE TABLE table_name_35 (year INTEGER, genre VARCHAR)
SELECT COUNT(guest_2) FROM table_20466963_13 WHERE presenter = "Colin Murray" AND date = "6 April"
Name the guest 2 for colin murray 6 april
CREATE TABLE table_20466963_13 (guest_2 VARCHAR, presenter VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_33 WHERE score = "† 4–4 †"
How many were in attendance when the score was † 4–4 †?
CREATE TABLE table_name_33 (attendance VARCHAR, score VARCHAR)
SELECT SUM(swimsuit) FROM table_name_25 WHERE evening_gown > 9.257 AND interview = 9.357
What is the number for swimsuit when the evening gown number is larger than 9.257 and the interview number is 9.357?
CREATE TABLE table_name_25 (swimsuit INTEGER, evening_gown VARCHAR, interview VARCHAR)
SELECT abbr FROM table_name_65 WHERE italian = "argovia"
What is the abbr of argovia?
CREATE TABLE table_name_65 (abbr VARCHAR, italian VARCHAR)
SELECT class FROM table_name_57 WHERE frequency = "560 am"
What is the class when the frequency is 560 AM?
CREATE TABLE table_name_57 (class VARCHAR, frequency VARCHAR)
SELECT processor FROM table_name_58 WHERE model = "powerbook 100"
The Powerbook 100 model has what processor?
CREATE TABLE table_name_58 (processor VARCHAR, model VARCHAR)
SELECT finish FROM table_name_96 WHERE total = 288
What's the finish for the total 288?
CREATE TABLE table_name_96 (finish VARCHAR, total VARCHAR)
SELECT Carrier FROM device ORDER BY Carrier
List the carriers of devices in ascending alphabetical order.
CREATE TABLE device (Carrier VARCHAR)
SELECT goals¹ FROM table_24565004_20 WHERE name = "Daniel Sanchez"
Name the goals for daniel sanchez
CREATE TABLE table_24565004_20 (goals¹ VARCHAR, name VARCHAR)
SELECT lost FROM table_17941032_1 WHERE tries_for = "55"
When 55 is the tries for what is the lost?
CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR)
SELECT Title FROM Cartoon WHERE Directed_by = "Ben Jones"
List all cartoon directed by "Ben Jones".
CREATE TABLE Cartoon (Title VARCHAR, Directed_by VARCHAR)
SELECT rider_names FROM table_27833186_1 WHERE location = "Euer Valley, CA" AND horse_name = "Magic Sirocco"
Who were the winning riders of the championship in Euer Valley, CA and whose horse was Magic Sirocco?
CREATE TABLE table_27833186_1 (rider_names VARCHAR, location VARCHAR, horse_name VARCHAR)
SELECT result FROM table_name_54 WHERE venue = "edmonton, canada"
What is the Result of Venue of edmonton, canada?
CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR)
SELECT MIN(against) FROM table_name_17 WHERE drawn < 2 AND points = 10 AND lost < 4
What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost?
CREATE TABLE table_name_17 (against INTEGER, lost VARCHAR, drawn VARCHAR, points VARCHAR)
SELECT points FROM table_name_6 WHERE laps = "75"
How many points have 75 laps?
CREATE TABLE table_name_6 (points VARCHAR, laps VARCHAR)
SELECT airport FROM table_name_44 WHERE country = "south africa" AND icao = "fajs"
Which airport is in South Africa and has a ICAO fajs?
CREATE TABLE table_name_44 (airport VARCHAR, country VARCHAR, icao VARCHAR)
SELECT SUM(ngc_number) FROM table_name_31 WHERE object_type = "spiral galaxy" AND right_ascension___j2000__ = "08h14m40.4s"
I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s
CREATE TABLE table_name_31 (ngc_number INTEGER, object_type VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT T1.staff_name, T1.staff_id FROM Staff AS T1 JOIN Fault_Log AS T2 ON T1.staff_id = T2.recorded_by_staff_id EXCEPT SELECT T3.staff_name, T3.staff_id FROM Staff AS T3 JOIN Engineer_Visits AS T4 ON T3.staff_id = T4.contact_staff_id
What is the name and id of the staff who recorded the fault log but has not contacted any visiting engineers?
CREATE TABLE Engineer_Visits (contact_staff_id VARCHAR); CREATE TABLE Staff (staff_name VARCHAR, staff_id VARCHAR); CREATE TABLE Fault_Log (recorded_by_staff_id VARCHAR)
SELECT position FROM table_name_31 WHERE pick < 41 AND school_club_team = "ohio state"
Which position has a pick less than 41 from Ohio State?
CREATE TABLE table_name_31 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)
SELECT status FROM table_171236_1 WHERE census_ranking = "693 of 5,008"
If the census ranking is 693 of 5,008, what is the status?
CREATE TABLE table_171236_1 (status VARCHAR, census_ranking VARCHAR)
SELECT date FROM table_28768469_10 WHERE location_attendance = "Ford Center 17,021"
The location attendance is ford center 17,021 on what dates?
CREATE TABLE table_28768469_10 (date VARCHAR, location_attendance VARCHAR)
SELECT title FROM table_name_29 WHERE no_in_series < 4
What are the titles for episodes prior to episode 4?
CREATE TABLE table_name_29 (title VARCHAR, no_in_series INTEGER)
SELECT home_team FROM table_name_13 WHERE away_team = "hawthorn"
What is the name of the home team that played against Hawthorn?
CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR)
SELECT leading_lady FROM table_name_71 WHERE studio = "uni" AND director = "frank strayer"
Who was the leading lady for Uni studio and Frank Strayer?
CREATE TABLE table_name_71 (leading_lady VARCHAR, studio VARCHAR, director VARCHAR)
SELECT city___town FROM table_name_53 WHERE icao = "gvsf"
Which city has an ICAO of gvsf?
CREATE TABLE table_name_53 (city___town VARCHAR, icao VARCHAR)
SELECT name FROM table_name_58 WHERE source = "soenderjyske.dk"
What player is associated with soenderjyske.dk?
CREATE TABLE table_name_58 (name VARCHAR, source VARCHAR)
SELECT round FROM table_name_55 WHERE name = "john goodyear"
Which Round has a Name of john goodyear?
CREATE TABLE table_name_55 (round VARCHAR, name VARCHAR)
SELECT points_against FROM table_name_68 WHERE losing_bonus = "3" AND tries_for = "84"
How many points against did the club with a losing bonus of 3 and 84 tries have?
CREATE TABLE table_name_68 (points_against VARCHAR, losing_bonus VARCHAR, tries_for VARCHAR)
SELECT COUNT(tracks) FROM table_name_93 WHERE density = "single"
How many tracks have a single density?
CREATE TABLE table_name_93 (tracks VARCHAR, density VARCHAR)
SELECT operator FROM table_18365784_3 WHERE departure = "11.02"
Who was the train operator when the train departed at 11.02 in 1922?
CREATE TABLE table_18365784_3 (operator VARCHAR, departure VARCHAR)
SELECT road_team FROM table_name_39 WHERE result = "105-95"
What is the Road Team in the game with a Result of 105-95?
CREATE TABLE table_name_39 (road_team VARCHAR, result VARCHAR)
SELECT COUNT(year) FROM table_24430894_20 WHERE mutya_ng_pilipinas_asia_pacific = "Ritchie Ocampo"
List the number of years where ritchie ocampo was the mutya ng pilipinas winner.
CREATE TABLE table_24430894_20 (year VARCHAR, mutya_ng_pilipinas_asia_pacific VARCHAR)
SELECT AVG(total_freshwater_withdrawal__km_3__yr_) FROM table_name_5 WHERE industrial_use__m_3__p_yr__in__percentage_ = "337(63%)" AND per_capita_withdrawal__m_3__p_yr_ > 535
What is the average Total Freshwater Withdrawal (km 3 /yr), when Industrial Use (m 3 /p/yr)(in %) is 337(63%), and when Per Capita Withdrawal (m 3 /p/yr) is greater than 535?
CREATE TABLE table_name_5 (total_freshwater_withdrawal__km_3__yr_ INTEGER, industrial_use__m_3__p_yr__in__percentage_ VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR)
SELECT 1 AS st_edition FROM table_name_77 WHERE episode = "4"
What is the 1st Edition for the Episode 4?
CREATE TABLE table_name_77 (episode VARCHAR)
SELECT try_bonus FROM table_17941032_1 WHERE tries_for = "80"
When 80 is the tries for what is the try bonus?
CREATE TABLE table_17941032_1 (try_bonus VARCHAR, tries_for VARCHAR)
SELECT date FROM table_name_55 WHERE score = "1-2" AND year = 1994
What day did they record a score of 1-2 in 1994?
CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR, year VARCHAR)
SELECT no_1 FROM table_name_26 WHERE no_2 = "john"
What is the No. 1 of the person with a No. 2 of John?
CREATE TABLE table_name_26 (no_1 VARCHAR, no_2 VARCHAR)
SELECT high_assists FROM table_name_85 WHERE game = 22
Who had the high assists in Game 22?
CREATE TABLE table_name_85 (high_assists VARCHAR, game VARCHAR)
SELECT elevated FROM table_name_25 WHERE cardinalatial_title = "priest of s. eusebio and archbishop of benevento"
What's listed for the Elevated with a Cardinalatial title of Priest of S. Eusebio and Archbishop of Benevento?
CREATE TABLE table_name_25 (elevated VARCHAR, cardinalatial_title VARCHAR)
SELECT STRUCT(high) FROM table_1942366_9 WHERE category = "Good"
How many different C_{high} values are there for the good category?
CREATE TABLE table_1942366_9 (high VARCHAR, category VARCHAR)
SELECT name FROM table_name_80 WHERE entered_office = "entered office"
What is the name of the minister who has an entered office of entered office?
CREATE TABLE table_name_80 (name VARCHAR, entered_office VARCHAR)
SELECT city_of_license FROM table_name_7 WHERE call_sign = "k215es"
Name the city of license for call sign of k215es
CREATE TABLE table_name_7 (city_of_license VARCHAR, call_sign VARCHAR)
SELECT MIN(average_score) FROM table_name_12 WHERE number = 2
What is the lowest average for number 2?
CREATE TABLE table_name_12 (average_score INTEGER, number VARCHAR)
SELECT directed_by FROM table_name_55 WHERE written_by = "robin schwartz & robert tarlow"
What is the name of the director of the episode written by robin schwartz & robert tarlow?
CREATE TABLE table_name_55 (directed_by VARCHAR, written_by VARCHAR)
SELECT COUNT(byes) FROM table_name_3 WHERE wins = 11 AND tallangatta_dfl = "barnawartha"
What is the total number of byes that has 11 wins and a Tallangatta DFL of Barnawartha?
CREATE TABLE table_name_3 (byes VARCHAR, wins VARCHAR, tallangatta_dfl VARCHAR)
SELECT MAX(population) FROM table_name_34 WHERE median_household_income = "$32,902" AND number_of_households < 11 OFFSET 125
What is the highest Population that has a Median household income of $32,902 with a number of households less than 11,125
CREATE TABLE table_name_34 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR)
SELECT fastest_lap FROM table_name_49 WHERE winning_driver = "seiji ara"
What is the fastest lap for Seiji Ara?
CREATE TABLE table_name_49 (fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT MAX(_number) FROM table_19229713_4 WHERE us_viewers__million_ = "1.87"
Name the number for viewers being 1.87
CREATE TABLE table_19229713_4 (_number INTEGER, us_viewers__million_ VARCHAR)
SELECT total__million_€__ FROM table_2293510_1 WHERE ppp__million_€_ = 21779
What's the total (in million €) in the region where PPP is 21779 million €?
CREATE TABLE table_2293510_1 (total__million_€__ VARCHAR, ppp__million_€_ VARCHAR)
SELECT replaced_by FROM table_name_30 WHERE position_in_table = "11th" AND manner_of_departure = "resigned"
Who was the manager that was positioned 11th in table and resigned in departure?
CREATE TABLE table_name_30 (replaced_by VARCHAR, position_in_table VARCHAR, manner_of_departure VARCHAR)
SELECT source_of_wealth FROM table_name_51 WHERE value = "£5726m"
What source of wealth has a value of £5726m?
CREATE TABLE table_name_51 (source_of_wealth VARCHAR, value VARCHAR)
SELECT SUM(pts) FROM table_name_98 WHERE chassis = "jordan 192"
What is the total number of points for entrants with a Jordan 192 chassis?
CREATE TABLE table_name_98 (pts INTEGER, chassis VARCHAR)
SELECT record FROM table_name_69 WHERE week > 5 AND opponent = "at new york giants"
Week larger than 5, and an opponent of at new york giants had what record?
CREATE TABLE table_name_69 (record VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT louise FROM table_name_83 WHERE dainty_june = "tracy venner"
Who was Louise when Tracy Venner was Dainty June?
CREATE TABLE table_name_83 (louise VARCHAR, dainty_june VARCHAR)
SELECT goals FROM table_name_5 WHERE club = "hawthorn" AND season = "1971"
How many goals did the club from Hawthorn score in the 1971 season?
CREATE TABLE table_name_5 (goals VARCHAR, club VARCHAR, season VARCHAR)
SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid WHERE T2.distance > 5000 GROUP BY T1.aid ORDER BY COUNT(*) >= 5
Show the name and distance of the aircrafts with more than 5000 distance and which at least 5 people have its certificate.
CREATE TABLE Certificate (aid VARCHAR); CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR, distance INTEGER)
SELECT opponents FROM table_name_95 WHERE year < 2008 AND progress = "third round"
What were the Opponents of the team, that made it to the third round, before 2008?
CREATE TABLE table_name_95 (opponents VARCHAR, year VARCHAR, progress VARCHAR)
SELECT ravg FROM table_name_27 WHERE ratt = "9"
What is the RAvg of the year with Ratt of 9?
CREATE TABLE table_name_27 (ravg VARCHAR, ratt VARCHAR)
SELECT grid FROM table_name_28 WHERE rider = "shinya nakano"
What is the grid of rider shinya nakano?
CREATE TABLE table_name_28 (grid VARCHAR, rider VARCHAR)
SELECT COUNT(centerfold_model) FROM table_1566852_4 WHERE cover_model = "Torrie Wilson"
How many centerfold models were there when the cover model was Torrie Wilson?
CREATE TABLE table_1566852_4 (centerfold_model VARCHAR, cover_model VARCHAR)
SELECT COUNT(percentage) FROM table_name_20 WHERE party = "liberal" AND percent_of_seats < 25
What is the percentage of the liberal party with less than 25 percent of seats?
CREATE TABLE table_name_20 (percentage VARCHAR, party VARCHAR, percent_of_seats VARCHAR)
SELECT high_rebounds FROM table_name_17 WHERE team = "@ charlotte"
What are the high rebounds of team @ Charlotte?
CREATE TABLE table_name_17 (high_rebounds VARCHAR, team VARCHAR)
SELECT place FROM table_name_15 WHERE country = "united states" AND to_par = "+1" AND player = "tim herron"
What is the place of plyaer Tim Herron from the United States with a to par of +1?
CREATE TABLE table_name_15 (place VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT rainfall_by_volume__km_3__year_ FROM table_25983027_1 WHERE rainfall_by_depth__mm_year_ = 2801
In Pacifico Central where the rainfall by depth (mm/year) was 2801 what was the rainfall by volume?
CREATE TABLE table_25983027_1 (rainfall_by_volume__km_3__year_ VARCHAR, rainfall_by_depth__mm_year_ VARCHAR)
SELECT frequency FROM table_name_33 WHERE facility_id = 13598
Which Frequency has a Facility ID of 13598?
CREATE TABLE table_name_33 (frequency VARCHAR, facility_id VARCHAR)
SELECT result FROM table_name_88 WHERE date = "september 14, 2008"
What was the score of the game on September 14, 2008?
CREATE TABLE table_name_88 (result VARCHAR, date VARCHAR)