answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT fifth_district FROM table_name_23 WHERE second_district = "paul leidig"
Who's the Fifth District with a Second District of paul leidig?
CREATE TABLE table_name_23 (fifth_district VARCHAR, second_district VARCHAR)
SELECT nationality FROM table_name_2 WHERE pick < 104 AND player = "corey fienhage"
What is the nationality of player corey fienhage, who has a pick less than 104?
CREATE TABLE table_name_2 (nationality VARCHAR, pick VARCHAR, player VARCHAR)
SELECT MAX(runs) FROM table_name_68 WHERE wickets = 66 AND matches < 13
Name the most runs for wickets of 66 and matches less than 13
CREATE TABLE table_name_68 (runs INTEGER, wickets VARCHAR, matches VARCHAR)
SELECT COUNT(points_difference) FROM table_20396710_1 WHERE points_for = "139"
when the points for is 139 is points difference?
CREATE TABLE table_20396710_1 (points_difference VARCHAR, points_for VARCHAR)
SELECT ratings__kansai_ FROM table_26591434_1 WHERE original_airdate = "May 25, 2010 22.00 - 22.54"
What is the ratings for the original air date may 25, 2010 22.00 - 22.54?
CREATE TABLE table_26591434_1 (ratings__kansai_ VARCHAR, original_airdate VARCHAR)
SELECT winning_driver FROM table_29361707_2 WHERE pole_position = "Roberval Andrade" AND fastest_lap = "Felipe Giaffone" AND winning_team = "RVR Corinthians Motorsport"
Who was the winner at the track where Roberval Andrade won pole, Felipe Giaffone had the fastest lap, and RVR Corinthians Motorsport was the winning team?
CREATE TABLE table_29361707_2 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
SELECT finish FROM table_name_35 WHERE record = "74-68"
Which finish has a Record of 74-68?
CREATE TABLE table_name_35 (finish VARCHAR, record VARCHAR)
SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546"
How many times was the catalog number cal04 / 0091037553546?
CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)
SELECT MAX(crowd) FROM table_name_61 WHERE away_team = "richmond"
What were the most in attendance in Richmond?
CREATE TABLE table_name_61 (crowd INTEGER, away_team VARCHAR)
SELECT COUNT(track) FROM table_16689920_1 WHERE time = "1:48.16"
At 1:48.16 what was the number of track time?
CREATE TABLE table_16689920_1 (track VARCHAR, time VARCHAR)
SELECT reason_for_change FROM table_224844_4 WHERE district = "Connecticut At-large"
Why was a seat left open fo Connecticut at-large?
CREATE TABLE table_224844_4 (reason_for_change VARCHAR, district VARCHAR)
SELECT video_coding FROM table_name_69 WHERE format_name = "dvcam"
What type of video coding has a format name of dvcam?
CREATE TABLE table_name_69 (video_coding VARCHAR, format_name VARCHAR)
SELECT label FROM table_name_88 WHERE region = "united states" AND format = "download"
What label is in download format in the United States?
CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR)
SELECT COUNT(*), T1.maintenance_contract_id FROM Maintenance_Contracts AS T1 JOIN Assets AS T2 ON T1.maintenance_contract_id = T2.maintenance_contract_id GROUP BY T1.maintenance_contract_id
How many assets does each maintenance contract contain? List the number and the contract id.
CREATE TABLE Assets (maintenance_contract_id VARCHAR); CREATE TABLE Maintenance_Contracts (maintenance_contract_id VARCHAR)
SELECT sorata_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "33"
How many people in the sorata municipality when the quiabaya municipality has 33?
CREATE TABLE table_2509202_2 (sorata_municipality VARCHAR, quiabaya_municipality VARCHAR)
SELECT previous_team FROM table_name_12 WHERE nba_years_[a_] = "4" AND pick < 16
What is the previous team of the player with 4 NBA years and a pick less than 16?
CREATE TABLE table_name_12 (previous_team VARCHAR, pick VARCHAR, nba_years_ VARCHAR, a_ VARCHAR)
SELECT date FROM table_name_3 WHERE attendance > 35 OFFSET 540
Which date's attendance was more than 35,540?
CREATE TABLE table_name_3 (date VARCHAR, attendance INTEGER)
SELECT qual_2 FROM table_name_32 WHERE best = "1:45.172"
What is the qual 2 when the best is 1:45.172?
CREATE TABLE table_name_32 (qual_2 VARCHAR, best VARCHAR)
SELECT year FROM table_name_41 WHERE rank = "8"
Name the year for 8 rank
CREATE TABLE table_name_41 (year VARCHAR, rank VARCHAR)
SELECT AVG(top_5) FROM table_name_79 WHERE cuts_made = 42
What is the average for the top five having a number of 42 cuts made.
CREATE TABLE table_name_79 (top_5 INTEGER, cuts_made VARCHAR)
SELECT series_ep FROM table_15187735_3 WHERE netflix = "S02E08"
Name the series ep for s02e08
CREATE TABLE table_15187735_3 (series_ep VARCHAR, netflix VARCHAR)
SELECT score FROM table_name_39 WHERE date = "14 march 2004"
What was the score on 14 march 2004?
CREATE TABLE table_name_39 (score VARCHAR, date VARCHAR)
SELECT album_title FROM table_name_53 WHERE title = "滑板"
Which Album title has a Title of 滑板?
CREATE TABLE table_name_53 (album_title VARCHAR, title VARCHAR)
SELECT COUNT(total) FROM table_name_20 WHERE bronze < 13 AND nation = "netherlands (ned)" AND gold > 4
How much Total has a Bronze smaller than 13, and a Nation of netherlands (ned), and a Gold larger than 4?
CREATE TABLE table_name_20 (total VARCHAR, gold VARCHAR, bronze VARCHAR, nation VARCHAR)
SELECT date FROM table_name_38 WHERE attendance = "bye" AND week = 11
What was date of the bye week 11?
CREATE TABLE table_name_38 (date VARCHAR, attendance VARCHAR, week VARCHAR)
SELECT MAX(crowd) FROM table_name_48 WHERE away_team = "carlton"
What is the biggest crowd when carlton is the away squad?
CREATE TABLE table_name_48 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(joined_acc) FROM table_28744929_1 WHERE institution = "North Carolina"
what year did north carolina institution join the acc?
CREATE TABLE table_28744929_1 (joined_acc INTEGER, institution VARCHAR)
SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE english___bcp__ = "For thine is the kingdom, the power"
What is the english (bcp) phrase "for thine is the kingdom, the power" in modern german with standard wording?
CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, english___bcp__ VARCHAR)
SELECT released FROM table_name_75 WHERE model = "precision m60"
what is the release date of the model precision m60?
CREATE TABLE table_name_75 (released VARCHAR, model VARCHAR)
SELECT team FROM table_name_60 WHERE location = "buenos aires , argentina"
What is the Team when the match was in buenos aires , argentina?
CREATE TABLE table_name_60 (team VARCHAR, location VARCHAR)
SELECT orbital_regime FROM table_name_76 WHERE launches > 4 AND failures < 2
What is the orbital regime of launches greater than 4 and failures less than 2?
CREATE TABLE table_name_76 (orbital_regime VARCHAR, launches VARCHAR, failures VARCHAR)
SELECT AVG(year) FROM table_name_98 WHERE outcome = "winner"
What is the average Year, when Outcome is "Winner"?
CREATE TABLE table_name_98 (year INTEGER, outcome VARCHAR)
SELECT rounds FROM table_name_48 WHERE entrant = "scuderia milano"
In what rounds did Scuderia Milano participate?
CREATE TABLE table_name_48 (rounds VARCHAR, entrant VARCHAR)
SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas"
What seasons does Nick Lucas appear in?
CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR)
SELECT home_team FROM table_name_61 WHERE week = "1"
What is the home team in week 1?
CREATE TABLE table_name_61 (home_team VARCHAR, week VARCHAR)
SELECT season FROM table_name_81 WHERE event_type = "grand prix" AND location = "kuala lumpur"
In what season did he compete in the Grand Prix in Kuala Lumpur?
CREATE TABLE table_name_81 (season VARCHAR, event_type VARCHAR, location VARCHAR)
SELECT team FROM table_name_21 WHERE year_entered_league < 2009 AND location = "bath"
Which team had a year entering the league under 2009, located in Bath?
CREATE TABLE table_name_21 (team VARCHAR, year_entered_league VARCHAR, location VARCHAR)
SELECT MAX(first_elected) FROM table_1342379_2 WHERE incumbent = "William B. Oliver"
When was incumbent William B. Oliver first elected?
CREATE TABLE table_1342379_2 (first_elected INTEGER, incumbent VARCHAR)
SELECT cyrillic_name_other_names FROM table_2562572_26 WHERE population__2011_ = 6591
What are the cyrillic and other names of the settlement whose population is 6591?
CREATE TABLE table_2562572_26 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR)
SELECT year_joined FROM table_name_66 WHERE school = "hagerstown"
What's the year that Hagerstown joined?
CREATE TABLE table_name_66 (year_joined VARCHAR, school VARCHAR)
SELECT COUNT(championship) FROM table_26202788_7 WHERE date = "January 9, 2005"
How many championships are there on the date January 9, 2005?
CREATE TABLE table_26202788_7 (championship VARCHAR, date VARCHAR)
SELECT COUNT(number__map_) FROM table_name_3 WHERE area_in_km² > 13.5 AND population_canada_2011_census = 134 OFFSET 038
How much #s have an Area in km² larger than 13.5, and a Population Canada 2011 Census of 134,038?
CREATE TABLE table_name_3 (number__map_ VARCHAR, area_in_km² VARCHAR, population_canada_2011_census VARCHAR)
SELECT MIN(overs) FROM table_name_61 WHERE runs = 18
What is the lowest Overs with a Run that is 18?
CREATE TABLE table_name_61 (overs INTEGER, runs VARCHAR)
SELECT COUNT(innings) FROM table_13337302_16 WHERE catches = 2 AND stumpings = 0
How many innings had a total of 2 catches and 0 stumpings?
CREATE TABLE table_13337302_16 (innings VARCHAR, catches VARCHAR, stumpings VARCHAR)
SELECT position FROM table_name_78 WHERE pick__number > 47 AND affiliation = "ucla"
What position has UCLA pick that is larger than #47?
CREATE TABLE table_name_78 (position VARCHAR, pick__number VARCHAR, affiliation VARCHAR)
SELECT MAX(first_elected) FROM table_1342379_45 WHERE incumbent = "Joseph T. Deal"
What was the last year that incumbent joseph t. deal was first elected?
CREATE TABLE table_1342379_45 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(bronze) FROM table_name_5 WHERE rank = 12 AND silver < 2
What is the smallest bronze with a Rank of 12, and a Silver smaller than 2?
CREATE TABLE table_name_5 (bronze INTEGER, rank VARCHAR, silver VARCHAR)
SELECT attendance FROM table_name_42 WHERE rank__number = "4"
What was the attendance when they had a ranking of #4?
CREATE TABLE table_name_42 (attendance VARCHAR, rank__number VARCHAR)
SELECT category FROM table_name_37 WHERE year = 1998 AND role_episode = "david duchovny"
What's the category in 1998 with the role/episode of David Duchovny?
CREATE TABLE table_name_37 (category VARCHAR, year VARCHAR, role_episode VARCHAR)
SELECT reader FROM table_20174050_24 WHERE author = "Cole, Stephen Stephen Cole" AND release_date = "2008-11-13 13 November 2008"
who is the reader of the audiobook authored by cole, stephen stephen cole and released on 2008-11-13 13 november 2008
CREATE TABLE table_20174050_24 (reader VARCHAR, author VARCHAR, release_date VARCHAR)
SELECT opponent FROM table_name_34 WHERE round = "12"
Which opponent has a Round of 12?
CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR)
SELECT loss FROM table_name_65 WHERE record = "46-84"
What was the loss of the game when the record was 46-84?
CREATE TABLE table_name_65 (loss VARCHAR, record VARCHAR)
SELECT grid FROM table_name_99 WHERE driver = "rubens barrichello"
What is the Grid for Rubens Barrichello?
CREATE TABLE table_name_99 (grid VARCHAR, driver VARCHAR)
SELECT COUNT(attendance) FROM table_23916462_3 WHERE date = "August 26"
How many values for attendance on the date of August 26?
CREATE TABLE table_23916462_3 (attendance VARCHAR, date VARCHAR)
SELECT owner_operator FROM table_name_85 WHERE licence_number = "pl 59"
Who is the owner operator who has license number PL 59?
CREATE TABLE table_name_85 (owner_operator VARCHAR, licence_number VARCHAR)
SELECT MAX(round1) FROM table_24784769_1 WHERE total_points = 132
How many points did the team who had 132 total points have in round 1?
CREATE TABLE table_24784769_1 (round1 INTEGER, total_points VARCHAR)
SELECT production_code FROM table_2226817_4 WHERE original_air_date = "November 27, 1988"
Name the production code for november 27, 1988
CREATE TABLE table_2226817_4 (production_code VARCHAR, original_air_date VARCHAR)
SELECT round FROM table_23449363_1 WHERE clubs_involved = 32
Which rounds had 32 clubs involved?
CREATE TABLE table_23449363_1 (round VARCHAR, clubs_involved VARCHAR)
SELECT home FROM table_name_52 WHERE date = "1 april 2008"
Who was the home team on 1 April 2008?
CREATE TABLE table_name_52 (home VARCHAR, date VARCHAR)
SELECT MIN(absorb__nm_) FROM table_26428602_1 WHERE color = "orange"
How much absorption in nm does the orange dye have?
CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER, color VARCHAR)
SELECT score FROM table_name_59 WHERE host_city = "kėdainiai"
What is the score of the season in the host city kėdainiai?
CREATE TABLE table_name_59 (score VARCHAR, host_city VARCHAR)
SELECT singapore_cup FROM table_name_92 WHERE s_league = "5 (14)"
What is the Singapore Cup when the S-League is 5 (14)?
CREATE TABLE table_name_92 (singapore_cup VARCHAR, s_league VARCHAR)
SELECT heat FROM table_name_77 WHERE lane = 3 AND time = "3:45.57"
What is the heat with a time of 3:45.57 in lane 3?
CREATE TABLE table_name_77 (heat VARCHAR, lane VARCHAR, time VARCHAR)
SELECT record FROM table_name_99 WHERE date = "december 17"
Which Record has a Date of december 17?
CREATE TABLE table_name_99 (record VARCHAR, date VARCHAR)
SELECT score FROM table_name_7 WHERE series = "3-2"
What was the score when the series was 3-2?
CREATE TABLE table_name_7 (score VARCHAR, series VARCHAR)
SELECT MIN(area_km_2) FROM table_name_61 WHERE member_state = "czech republic" AND population_in_millions < 10.3
What is the lowest area km2 of the member state of the Czech Republic and has a population in millions lesss than 10.3?
CREATE TABLE table_name_61 (area_km_2 INTEGER, member_state VARCHAR, population_in_millions VARCHAR)
SELECT t1.manufacturer_id, t1.num_of_shops FROM manufacturer AS t1 JOIN furniture_manufacte AS t2 ON t1.manufacturer_id = t2.manufacturer_id ORDER BY t2.Price_in_Dollar DESC LIMIT 1
Find the id and number of shops for the company that produces the most expensive furniture.
CREATE TABLE manufacturer (manufacturer_id VARCHAR, num_of_shops VARCHAR); CREATE TABLE furniture_manufacte (manufacturer_id VARCHAR, Price_in_Dollar VARCHAR)
SELECT substrate FROM table_182499_1 WHERE enzyme = "ALA dehydratase"
what is the subtrate for enzyme ala dehydratase
CREATE TABLE table_182499_1 (substrate VARCHAR, enzyme VARCHAR)
SELECT goals_for_against FROM table_14181578_1 WHERE w_l_d = "3-1-1"
what's the goals for/against with w-l-d being 3-1-1
CREATE TABLE table_14181578_1 (goals_for_against VARCHAR, w_l_d VARCHAR)
SELECT prominence FROM table_name_81 WHERE mountain_peak = "matchless mountain pb"
Name the Prominence of the Mountain Peak of matchless mountain pb?
CREATE TABLE table_name_81 (prominence VARCHAR, mountain_peak VARCHAR)
SELECT place FROM table_name_72 WHERE country = "south africa"
What place did the golfer take whose country is South Africa?
CREATE TABLE table_name_72 (place VARCHAR, country VARCHAR)
SELECT production_company FROM table_name_19 WHERE year = "2008-2009"
What is the name of the production company that has a year of 2008-2009?
CREATE TABLE table_name_19 (production_company VARCHAR, year VARCHAR)
SELECT mark FROM table_name_73 WHERE group = "a" AND nationality = "grenada"
What is the mark for Grenada in group A?
CREATE TABLE table_name_73 (mark VARCHAR, group VARCHAR, nationality VARCHAR)
SELECT games_played FROM table_13713206_1 WHERE goals_for_against = "29-24"
How many games has the club with 29-24 goals for/against score played?
CREATE TABLE table_13713206_1 (games_played VARCHAR, goals_for_against VARCHAR)
SELECT gt_winning_team FROM table_27743641_2 WHERE gtc_winning_team = "No. 54 Black Swan Racing"
Who were the GT winning team when the GTC winning team was No. 54 Black Swan Racing?
CREATE TABLE table_27743641_2 (gt_winning_team VARCHAR, gtc_winning_team VARCHAR)
SELECT tier FROM table_name_5 WHERE opponent_in_the_final = "manana shapakidze"
What was the tier versus Manana Shapakidze?
CREATE TABLE table_name_5 (tier VARCHAR, opponent_in_the_final VARCHAR)
SELECT surname FROM table_name_63 WHERE throws = "l" AND dob = "5/02/79"
Which Surname has Throws of l, and a DOB of 5/02/79?
CREATE TABLE table_name_63 (surname VARCHAR, throws VARCHAR, dob VARCHAR)
SELECT team FROM table_24587026_1 WHERE points = "22"
Name the team for 22 points
CREATE TABLE table_24587026_1 (team VARCHAR, points VARCHAR)
SELECT location FROM table_name_64 WHERE original_code = "victorian rules"
What is the location of the original code for victorian rules?
CREATE TABLE table_name_64 (location VARCHAR, original_code VARCHAR)
SELECT MAX(minutes) FROM table_25016555_5 WHERE player = "Tracy Reid"
When tracy reid is the player what is the highest amount of minutes?
CREATE TABLE table_25016555_5 (minutes INTEGER, player VARCHAR)
SELECT release_date FROM table_name_34 WHERE song_title = "if you talk in your sleep"
When was the song titled if you talk in your sleep released?
CREATE TABLE table_name_34 (release_date VARCHAR, song_title VARCHAR)
SELECT t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore"
Find the last names of the members of the club "Bootup Baltimore".
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)
SELECT producer FROM table_name_77 WHERE year = "december 25, 2006"
What is the Producer on December 25, 2006?
CREATE TABLE table_name_77 (producer VARCHAR, year VARCHAR)
SELECT round FROM table_name_61 WHERE tournament = "paris"
What is Round, when Tournament is "Paris"?
CREATE TABLE table_name_61 (round VARCHAR, tournament VARCHAR)
SELECT T3.name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.region_name = 'Denmark'
Show all storm names affecting region "Denmark".
CREATE TABLE region (region_id VARCHAR, region_name VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)
SELECT position FROM table_2840500_4 WHERE college_junior_club_team = "Lake Superior State University (NCAA)"
What position does that draft pick play from Lake Superior State University (NCAA)?
CREATE TABLE table_2840500_4 (position VARCHAR, college_junior_club_team VARCHAR)
SELECT MAX(laps) FROM table_name_13 WHERE class = "v8" AND entrant = "diet-coke racing"
What was the highest amount of laps when the class was v8 and the entrant was diet-coke racing?
CREATE TABLE table_name_13 (laps INTEGER, class VARCHAR, entrant VARCHAR)
SELECT engine FROM table_name_47 WHERE entrant = "team lotus" AND year > 1962
Which engine has an Entrant of team lotus, and a Year larger than 1962?
CREATE TABLE table_name_47 (engine VARCHAR, entrant VARCHAR, year VARCHAR)
SELECT opponent FROM table_name_52 WHERE date = "1991-10-13"
Which Opponent was played on 1991-10-13?
CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR)
SELECT T1.State_County FROM Addresses AS T1 JOIN Stores AS T2 ON T1.Address_ID = T2.Address_ID WHERE T2.Marketing_Region_Code = "CA"
What are the states or counties of the address of the stores with marketing region code "CA"?
CREATE TABLE Addresses (State_County VARCHAR, Address_ID VARCHAR); CREATE TABLE Stores (Address_ID VARCHAR, Marketing_Region_Code VARCHAR)
SELECT general_classification FROM table_26010857_13 WHERE stage = 3
Who leads the general classification in stage 3?
CREATE TABLE table_26010857_13 (general_classification VARCHAR, stage VARCHAR)
SELECT MIN(draft) FROM table_name_62 WHERE pick > 197 AND round = 14 AND player = "jim farrell"
What is the lowest draft of player jim farrell, who has a pick greater than 197 and a round of 14?
CREATE TABLE table_name_62 (draft INTEGER, player VARCHAR, pick VARCHAR, round VARCHAR)
SELECT weekly_rank FROM table_name_82 WHERE official_ratings__millions_ = 11.58
Which Weekly Rank has an Official ratings (millions) of 11.58?
CREATE TABLE table_name_82 (weekly_rank VARCHAR, official_ratings__millions_ VARCHAR)
SELECT SUM(date_of_official_foundation_of_municipality) FROM table_name_65 WHERE province = "kermān" AND 2006 = 167014 AND rank < 46
What is the sum of Date of Official Foundation of Municipality, when Province is "Kermān", when 2006 us "167014", and when Rank is less than 46?
CREATE TABLE table_name_65 (date_of_official_foundation_of_municipality INTEGER, rank VARCHAR, province VARCHAR)
SELECT date FROM table_name_76 WHERE goal = 34
What day has 34 goals?
CREATE TABLE table_name_76 (date VARCHAR, goal VARCHAR)
SELECT SUM(attendance) FROM table_name_18 WHERE week < 10 AND result = "l 30-21"
What sum of Attendance has a Week smaller than 10, and a Result of l 30-21?
CREATE TABLE table_name_18 (attendance INTEGER, week VARCHAR, result VARCHAR)
SELECT track FROM table_name_47 WHERE race_winner = "scott lagasse jr."
Tell me the track for scott lagasse jr.
CREATE TABLE table_name_47 (track VARCHAR, race_winner VARCHAR)
SELECT record FROM table_name_4 WHERE game = 7
What is the record of game 7?
CREATE TABLE table_name_4 (record VARCHAR, game VARCHAR)
SELECT place FROM table_name_32 WHERE player = "mark carnevale"
What place was Mark Carnevale in?
CREATE TABLE table_name_32 (place VARCHAR, player VARCHAR)
SELECT AVG(evening_gown) FROM table_name_32 WHERE average = 8.686
What is the mean evening gown number when the average is 8.686?
CREATE TABLE table_name_32 (evening_gown INTEGER, average VARCHAR)