question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the current club with more than 368 apps and a debut year earlier than 1994?
columns: - name: current_club type: VARCHAR - name: apps type: VARCHAR - name: debut_year type: VARCHAR table: table_name_51
SELECT current_club FROM table_name_51 WHERE apps > 368 AND debut_year < 1994
What is the date for the United Kingdom with an LP format?
columns: - name: date type: VARCHAR - name: country type: VARCHAR - name: format type: VARCHAR table: table_name_88
SELECT date FROM table_name_88 WHERE country = "united kingdom" AND format = "lp"
What location and it's attendance was the game against the Nets?
columns: - name: location_attendance type: VARCHAR - name: team type: VARCHAR table: table_23248910_6
SELECT location_attendance FROM table_23248910_6 WHERE team = "Nets"
Name the total number of popular votes for mn attorney general in 1994
columns: - name: popular_votes type: VARCHAR - name: office type: VARCHAR - name: year type: VARCHAR table: table_name_74
SELECT COUNT(popular_votes) FROM table_name_74 WHERE office = "mn attorney general" AND year = 1994
Rick Plant was the man of the match in what competition?
columns: - name: competition type: VARCHAR - name: man_of_the_match type: VARCHAR table: table_name_39
SELECT competition FROM table_name_39 WHERE man_of_the_match = "rick plant"
How many votes did McCain get in Scott?
columns: - name: mccain_number type: INTEGER - name: county type: VARCHAR table: table_20799587_1
SELECT MIN(mccain_number) FROM table_20799587_1 WHERE county = "Scott"
What is the hioghest amount of silver medals for a nation ranked higher than 19 and less than 2 gold medals?
columns: - name: silver type: INTEGER - name: rank type: VARCHAR - name: gold type: VARCHAR table: table_name_75
SELECT MAX(silver) FROM table_name_75 WHERE rank = "19" AND gold < 2
What is To par, when Score is "70-68-68-71=277"?
columns: - name: to_par type: VARCHAR - name: score type: VARCHAR table: table_name_18
SELECT to_par FROM table_name_18 WHERE score = 70 - 68 - 68 - 71 = 277
What is the height if de is the position?
columns: - name: height type: VARCHAR - name: position type: VARCHAR table: table_20871703_1
SELECT COUNT(height) FROM table_20871703_1 WHERE position = "DE"
How many different years was the name/designation cetme?
columns: - name: year_of_introduction type: VARCHAR - name: name___designation type: VARCHAR table: table_26389588_1
SELECT COUNT(year_of_introduction) FROM table_26389588_1 WHERE name___designation = "CETME"
Which December has a Game of 37 and Points smaller than 47?
columns: - name: december type: INTEGER - name: game type: VARCHAR - name: points type: VARCHAR table: table_name_35
SELECT AVG(december) FROM table_name_35 WHERE game = 37 AND points < 47
Nam ethe enlisted for troop carrier group
columns: - name: enlisted type: VARCHAR - name: type_of_unit type: VARCHAR table: table_23508196_5
SELECT enlisted FROM table_23508196_5 WHERE type_of_unit = "Troop carrier group"
Which Bask has Soft of 18, and a Total larger than 35?
columns: - name: bask type: INTEGER - name: soft type: VARCHAR - name: total type: VARCHAR table: table_name_17
SELECT AVG(bask) FROM table_name_17 WHERE soft = "18" AND total > 35
Name the most losst for corinthians
columns: - name: lost type: INTEGER - name: team type: VARCHAR table: table_15319684_1
SELECT MIN(lost) FROM table_15319684_1 WHERE team = "Corinthians"
On what date was the record set with a time of 1:07.18?
columns: - name: date type: VARCHAR - name: time type: VARCHAR table: table_name_44
SELECT date FROM table_name_44 WHERE time = "1:07.18"
What is the smallest number of seats in a vehicle currently retired and in quantities less than 8?
columns: - name: number_of_seats type: INTEGER - name: current_status type: VARCHAR - name: quantity type: VARCHAR table: table_name_21
SELECT MIN(number_of_seats) FROM table_name_21 WHERE current_status = "retired" AND quantity < 8
What is Record, when Game is "36"?
columns: - name: record type: VARCHAR - name: game type: VARCHAR table: table_name_79
SELECT record FROM table_name_79 WHERE game = 36
which championship had arantxa sánchez vicario todd woodbridge as opponents in the final
columns: - name: championship type: VARCHAR - name: opponents_in_the_final type: VARCHAR table: table_1918850_2
SELECT championship FROM table_1918850_2 WHERE opponents_in_the_final = "Arantxa Sánchez Vicario Todd Woodbridge"
When victoria coren and rhod gilbert are both on the lees team what is the score?
columns: - name: scores type: VARCHAR - name: lees_team type: VARCHAR table: table_23575917_6
SELECT scores FROM table_23575917_6 WHERE lees_team = "Victoria Coren and Rhod Gilbert"
Which venue has a Result of 1–2?
columns: - name: venue type: VARCHAR - name: result type: VARCHAR table: table_name_98
SELECT venue FROM table_name_98 WHERE result = "1–2"
What is the ERP for the Rockhampton region?
columns: - name: erp__analog__digital_ type: VARCHAR - name: region_served type: VARCHAR table: table_name_27
SELECT erp__analog__digital_ FROM table_name_27 WHERE region_served = "rockhampton"
what is the object type when the ngc number is 3314?
columns: - name: object_type type: VARCHAR - name: ngc_number type: VARCHAR table: table_name_98
SELECT object_type FROM table_name_98 WHERE ngc_number = 3314
what time does the train that arrives in lonavla at 22:22 depart pune
columns: - name: departure_pune type: VARCHAR - name: arrival_lonavla type: VARCHAR table: table_29301050_1
SELECT departure_pune FROM table_29301050_1 WHERE arrival_lonavla = "22:22"
WHAT IS THE 2010 PERFORMANCE THAT HAD 2009 0F 0, AND FINALS TOURNAMENT?
columns: - name: tournament type: VARCHAR table: table_name_19
SELECT 2010 FROM table_name_19 WHERE 2009 = "0" AND tournament = "finals"
Which chassis had Rounds of 7, and an Entrant of Ecurie Rosier?
columns: - name: chassis type: VARCHAR - name: rounds type: VARCHAR - name: entrant type: VARCHAR table: table_name_15
SELECT chassis FROM table_name_15 WHERE rounds = "7" AND entrant = "ecurie rosier"
What is the latest week when the chicago bears are the opponent?
columns: - name: week type: INTEGER - name: opponent type: VARCHAR table: table_name_27
SELECT MAX(week) FROM table_name_27 WHERE opponent = "chicago bears"
What finish time started at 32?
columns: - name: finish type: VARCHAR - name: start type: VARCHAR table: table_name_9
SELECT finish FROM table_name_9 WHERE start = "32"
What is the name of the team with round less than 2, and the nationality is the United States?
columns: - name: college_junior_club_team__league_ type: VARCHAR - name: round type: VARCHAR - name: nationality type: VARCHAR table: table_name_25
SELECT college_junior_club_team__league_ FROM table_name_25 WHERE round < 2 AND nationality = "united states"
What is the rate of 17 years?
columns: - name: rate type: VARCHAR - name: year type: VARCHAR table: table_name_55
SELECT rate FROM table_name_55 WHERE year = "17 years"
When 9:47:38 is the time (utc) how many measurements of latitude are there?
columns: - name: latitude type: VARCHAR - name: time__utc_ type: VARCHAR table: table_24192190_1
SELECT COUNT(latitude) FROM table_24192190_1 WHERE time__utc_ = "9:47:38"
When was the attendance 1,034?
columns: - name: date type: INTEGER - name: attendance type: VARCHAR table: table_name_51
SELECT MIN(date) FROM table_name_51 WHERE attendance = "1,034"
Which engine has daimler benz ag as an entrant?
columns: - name: engine type: VARCHAR - name: entrant type: VARCHAR table: table_name_7
SELECT engine FROM table_name_7 WHERE entrant = "daimler benz ag"
What did the Victoria park home team score?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_1
SELECT home_team AS score FROM table_name_1 WHERE venue = "victoria park"
what is the market income per capita where the county is hancock?
columns: - name: market_income_per_capita type: VARCHAR - name: county type: VARCHAR table: table_22815568_13
SELECT market_income_per_capita FROM table_22815568_13 WHERE county = "Hancock"
Tell me the tournament for opponents of andrei pavel rogier wassen
columns: - name: tournament type: VARCHAR - name: opponents_in_the_final type: VARCHAR table: table_name_53
SELECT tournament FROM table_name_53 WHERE opponents_in_the_final = "andrei pavel rogier wassen"
What is the average points of the Ferrari 1512 Chassis after 1965?
columns: - name: points type: INTEGER - name: chassis type: VARCHAR - name: year type: VARCHAR table: table_name_18
SELECT AVG(points) FROM table_name_18 WHERE chassis = "ferrari 1512" AND year > 1965
What is the 2007 value with a 4r in 2006, a 1r in 2004, and a 4r in 2009?
columns: - name: Id type: VARCHAR table: table_name_48
SELECT 2007 FROM table_name_48 WHERE 2006 = "4r" AND 2004 = "1r" AND 2009 = "4r"
What was the score of the game when Sheffield Wednesday was the home team?
columns: - name: score type: VARCHAR - name: home_team type: VARCHAR table: table_name_32
SELECT score FROM table_name_32 WHERE home_team = "sheffield wednesday"
What was the title of the episode written by Mark Goffman?
columns: - name: title type: VARCHAR - name: written_by type: VARCHAR table: table_23255941_1
SELECT title FROM table_23255941_1 WHERE written_by = "Mark Goffman"
What is the LFN support with 32-bit architecture on Windows Home Server?
columns: - name: lfn_support type: VARCHAR - name: architecture type: VARCHAR - name: name type: VARCHAR table: table_name_74
SELECT lfn_support FROM table_name_74 WHERE architecture = "32-bit" AND name = "windows home server"
Which original artist has a Episode of workshop #1?
columns: - name: original_artist type: VARCHAR - name: episode type: VARCHAR table: table_name_32
SELECT original_artist FROM table_name_32 WHERE episode = "workshop #1"
When kevin bridges and katy wix are both on the less team what is the score?
columns: - name: scores type: VARCHAR - name: lees_team type: VARCHAR table: table_23575917_6
SELECT scores FROM table_23575917_6 WHERE lees_team = "Kevin Bridges and Katy Wix"
What is the average pick for Princeton after round 3?
columns: - name: pick type: INTEGER - name: round type: VARCHAR - name: college type: VARCHAR table: table_name_29
SELECT AVG(pick) FROM table_name_29 WHERE round > 3 AND college = "princeton"
What is Height, when Name is "Manuela Zanchi"?
columns: - name: height type: VARCHAR - name: name type: VARCHAR table: table_name_95
SELECT height FROM table_name_95 WHERE name = "manuela zanchi"
For the year 1975, what is Propulsion, with a Number (quantity ordered) of 4756-4788 (33 buses)?
columns: - name: fuel_propulsion type: VARCHAR - name: year type: VARCHAR - name: numbers__quantity_ordered_ type: VARCHAR table: table_name_41
SELECT fuel_propulsion FROM table_name_41 WHERE year = 1975 AND numbers__quantity_ordered_ = "4756-4788 (33 buses)"
Who is the second performer in episode 5?
columns: - name: performer_2 type: VARCHAR - name: episode type: VARCHAR table: table_14934885_1
SELECT performer_2 FROM table_14934885_1 WHERE episode = 5
what is the most draw when the competition is soviet league and dynamo is more than 34?
columns: - name: draw type: INTEGER - name: competition type: VARCHAR - name: dynamo type: VARCHAR table: table_name_19
SELECT MAX(draw) FROM table_name_19 WHERE competition = "soviet league" AND dynamo > 34
What is Road Team, when Result is "74-71"?
columns: - name: road_team type: VARCHAR - name: result type: VARCHAR table: table_name_36
SELECT road_team FROM table_name_36 WHERE result = "74-71"
What is the average number of starts when 11 cuts were made and the top 10 ranking is larger than 4?
columns: - name: starts type: INTEGER - name: cuts_made type: VARCHAR - name: top_10 type: VARCHAR table: table_name_33
SELECT AVG(starts) FROM table_name_33 WHERE cuts_made = 11 AND top_10 > 4
Which 2009 has a 2006 of A, and a 2011 of sf?
columns: - name: Id type: VARCHAR table: table_name_83
SELECT 2009 FROM table_name_83 WHERE 2006 = "a" AND 2011 = "sf"
What is the location of the Durfee Mill No. 1, built before 1872 ?
columns: - name: location type: VARCHAR - name: built type: VARCHAR - name: name type: VARCHAR table: table_name_7
SELECT location FROM table_name_7 WHERE built < 1872 AND name = "durfee mill no. 1"
what album is 4:30 long
columns: - name: album type: VARCHAR - name: length type: VARCHAR table: table_name_95
SELECT album FROM table_name_95 WHERE length = "4:30"
Who built the train in 1966 with over 40 produced?
columns: - name: "builder\u2019s_model" type: VARCHAR - name: total_produced type: VARCHAR - name: build_date type: VARCHAR table: table_name_83
SELECT builder’s_model FROM table_name_83 WHERE total_produced > 40 AND build_date = "1966"
What is the sum of laps for Derek Warwick?
columns: - name: laps type: INTEGER - name: driver type: VARCHAR table: table_name_20
SELECT SUM(laps) FROM table_name_20 WHERE driver = "derek warwick"
How many gold(s) for teams with a total of 14, and over 6 bronze medals?
columns: - name: gold type: INTEGER - name: total type: VARCHAR - name: bronze type: VARCHAR table: table_name_26
SELECT SUM(gold) FROM table_name_26 WHERE total = 14 AND bronze > 6
Name the air date for jay j. demopoulos
columns: - name: original_air_date type: VARCHAR - name: written_by type: VARCHAR table: table_24466855_1
SELECT original_air_date FROM table_24466855_1 WHERE written_by = "Jay J. Demopoulos"
What was the percentage of yes votes for the measure where the no votes number 199174?
columns: - name: _percentage_yes type: VARCHAR - name: no_votes type: VARCHAR table: table_256286_45
SELECT _percentage_yes FROM table_256286_45 WHERE no_votes = 199174
What is the mascot with the colors green and navy?
columns: - name: mascot type: VARCHAR - name: colors type: VARCHAR table: table_15873547_1
SELECT mascot FROM table_15873547_1 WHERE colors = "Green and Navy"
What is the English title of the film Directed by Jayme Monjardim?
columns: - name: english_title type: VARCHAR - name: director type: VARCHAR table: table_name_21
SELECT english_title FROM table_name_21 WHERE director = "jayme monjardim"
What is the catalogue for Harbor Lights as a title?
columns: - name: catalogue type: VARCHAR - name: song_title type: VARCHAR table: table_name_59
SELECT catalogue FROM table_name_59 WHERE song_title = "harbor lights"
Who had a finish of t16?
columns: - name: player type: VARCHAR - name: finish type: VARCHAR table: table_name_81
SELECT player FROM table_name_81 WHERE finish = "t16"
What is 2004, when 2010 is "Grand Slam Tournaments"?
columns: - name: Id type: VARCHAR table: table_name_81
SELECT 2004 FROM table_name_81 WHERE 2010 = "grand slam tournaments"
Who was the opponent on December 27?
columns: - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_17360840_6
SELECT opponent FROM table_17360840_6 WHERE date = "December 27"
Which label is from Spain?
columns: - name: label type: VARCHAR - name: country type: VARCHAR table: table_name_31
SELECT label FROM table_name_31 WHERE country = "spain"
Can you tell me the Season that has the Score of 1-0?
columns: - name: season type: VARCHAR - name: score type: VARCHAR table: table_name_34
SELECT season FROM table_name_34 WHERE score = "1-0"
Who had the pole position in the August 15, 1981 race?
columns: - name: pole_position type: VARCHAR - name: date type: VARCHAR table: table_22765887_1
SELECT pole_position FROM table_22765887_1 WHERE date = "August 15, 1981"
Which Graded Hammer (Non GH3) has a Model of cvp501?
columns: - name: graded_hammer__non_gh3_ type: VARCHAR - name: model type: VARCHAR table: table_name_44
SELECT graded_hammer__non_gh3_ FROM table_name_44 WHERE model = "cvp501"
Which Norwegian (nynorsk) has a Danish of farvel?
columns: - name: norwegian__nynorsk_ type: VARCHAR - name: danish type: VARCHAR table: table_name_12
SELECT norwegian__nynorsk_ FROM table_name_12 WHERE danish = "farvel"
Which best 3-year period has a best 15-year period of smyslov; kasparov, and a Position of 5?
columns: - name: best_3_year_period type: VARCHAR - name: best_15_year_period type: VARCHAR - name: position type: VARCHAR table: table_name_61
SELECT best_3_year_period FROM table_name_61 WHERE best_15_year_period = "smyslov; kasparov" AND position = 5
Who was the republican when hillary clinton was the democrat and the sample size was more than 1087 with a margin of error of 2.6?
columns: - name: republican type: VARCHAR - name: margin_of_error type: VARCHAR - name: sample_size type: VARCHAR - name: democrat type: VARCHAR table: table_name_47
SELECT republican FROM table_name_47 WHERE sample_size > 1087 AND democrat = "hillary clinton" AND margin_of_error = 2.6
Who was the home team at Lake Oval?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_66
SELECT home_team FROM table_name_66 WHERE venue = "lake oval"
What score has nashville predators as the opponent?
columns: - name: score type: VARCHAR - name: opponent type: VARCHAR table: table_name_91
SELECT score FROM table_name_91 WHERE opponent = "nashville predators"
How many civilians died in the conflict that left 178, excluding foreigners, dead?
columns: - name: civilian_deaths type: VARCHAR - name: total_deaths__not_including_foreigners_ type: VARCHAR table: table_name_19
SELECT civilian_deaths FROM table_name_19 WHERE total_deaths__not_including_foreigners_ = "178"
what is the normal environment of occurrence that has a Proto-Germanic origin /ai/
columns: - name: normal_environment_of_occurrence__in_native_words_ type: VARCHAR - name: proto_germanic_origin type: VARCHAR table: table_name_86
SELECT normal_environment_of_occurrence__in_native_words_ FROM table_name_86 WHERE proto_germanic_origin = "/ai/"
What is the least amount of draws with an against of 1261?
columns: - name: draws type: INTEGER - name: against type: VARCHAR table: table_name_16
SELECT MIN(draws) FROM table_name_16 WHERE against = 1261
What is the highest overall rank of any Tennessee State player drafted before round 10?
columns: - name: overall type: INTEGER - name: school_club_team type: VARCHAR - name: round type: VARCHAR table: table_name_48
SELECT MIN(overall) FROM table_name_48 WHERE school_club_team = "tennessee state" AND round < 10
Who was the producer for the film directed by 1997?
columns: - name: producer type: VARCHAR - name: director type: VARCHAR table: table_name_42
SELECT producer FROM table_name_42 WHERE director = "1997"
Which Paul McCartney has a Linda McCartney of keyboards or drum?
columns: - name: paul_mccartney type: VARCHAR - name: linda_mccartney type: VARCHAR table: table_name_15
SELECT paul_mccartney FROM table_name_15 WHERE linda_mccartney = "keyboards or drum"
Name the number of rank for april 2013 for 2012 ran kbeing 225
columns: - name: april_2013_cum_rank type: VARCHAR - name: rank_2012 type: VARCHAR table: table_24307126_3
SELECT COUNT(april_2013_cum_rank) FROM table_24307126_3 WHERE rank_2012 = 225
What was the total time for the match that ocurred in Round 3 with opponent Keith Wisniewski?
columns: - name: time type: VARCHAR - name: round type: VARCHAR - name: opponent type: VARCHAR table: table_name_39
SELECT time FROM table_name_39 WHERE round = "3" AND opponent = "keith wisniewski"
How many games have 61-16 as the record?
columns: - name: game type: VARCHAR - name: record type: VARCHAR table: table_name_14
SELECT COUNT(game) FROM table_name_14 WHERE record = "61-16"
Which round has an Opposing Team of manchester united?
columns: - name: round type: VARCHAR - name: opposing_team type: VARCHAR table: table_name_64
SELECT round FROM table_name_64 WHERE opposing_team = "manchester united"
What is Score, when Player is "Deane Beman"?
columns: - name: score type: VARCHAR - name: player type: VARCHAR table: table_name_20
SELECT score FROM table_name_20 WHERE player = "deane beman"
What instrumental has tkven-i as the genitive?
columns: - name: instrumental type: VARCHAR - name: genitive type: VARCHAR table: table_name_42
SELECT instrumental FROM table_name_42 WHERE genitive = "tkven-i"
What is the sum of Wins, when Team is Sweden, and when Played is less than 5?
columns: - name: wins type: INTEGER - name: team type: VARCHAR - name: played type: VARCHAR table: table_name_79
SELECT SUM(wins) FROM table_name_79 WHERE team = "sweden" AND played < 5
Who did the Giants play before week 7 in Tulane Stadium?
columns: - name: opponent type: VARCHAR - name: week type: VARCHAR - name: game_site type: VARCHAR table: table_name_25
SELECT opponent FROM table_name_25 WHERE week < 7 AND game_site = "tulane stadium"
Which Home has a Visitor of nashville?
columns: - name: home type: VARCHAR - name: visitor type: VARCHAR table: table_name_44
SELECT home FROM table_name_44 WHERE visitor = "nashville"
What is the highest season that had rank under 1?
columns: - name: season type: INTEGER - name: rank type: INTEGER table: table_name_45
SELECT MAX(season) FROM table_name_45 WHERE rank < 1
How many rounds had a time of 5:00 at UFC 155?
columns: - name: round type: VARCHAR - name: time type: VARCHAR - name: event type: VARCHAR table: table_name_25
SELECT COUNT(round) FROM table_name_25 WHERE time = "5:00" AND event = "ufc 155"
How much was the transfer fee when n is 2?
columns: - name: transfer_fee type: VARCHAR - name: n type: VARCHAR table: table_22810095_8
SELECT transfer_fee FROM table_22810095_8 WHERE n = 2
How many years have an Opponent in the final of welby van horn?
columns: - name: year type: INTEGER - name: opponent_in_the_final type: VARCHAR table: table_name_74
SELECT SUM(year) FROM table_name_74 WHERE opponent_in_the_final = "welby van horn"
Name the 2009 for 2007 of 2r and tournament of wimbledon
columns: - name: tournament type: VARCHAR table: table_name_35
SELECT 2009 FROM table_name_35 WHERE 2007 = "2r" AND tournament = "wimbledon"
What is the date where the winner was the Oakland Raiders in 1975?
columns: - name: date type: VARCHAR - name: year type: VARCHAR - name: winner type: VARCHAR table: table_name_95
SELECT date FROM table_name_95 WHERE year = 1975 AND winner = "oakland raiders"
Who was the challenger when winner was kimio nonaga?
columns: - name: challenger type: VARCHAR - name: winner type: VARCHAR table: table_23982399_12
SELECT challenger FROM table_23982399_12 WHERE winner = "Kimio Nonaga"
What is the Label of the release on Stereo vinyl LP with Catalog number SF-7635?
columns: - name: label type: VARCHAR - name: format type: VARCHAR - name: catalog type: VARCHAR table: table_name_75
SELECT label FROM table_name_75 WHERE format = "stereo vinyl lp" AND catalog = "sf-7635"
Which Ipsos 5/16/09 has a TNS-Sofres 5/28/09 of 2.5%?
columns: - name: ipsos_5_16_09 type: VARCHAR - name: tns_sofres_5_28_09 type: VARCHAR table: table_name_72
SELECT ipsos_5_16_09 FROM table_name_72 WHERE tns_sofres_5_28_09 = "2.5%"
The game the Bruins scored 26 ,what was the result?
columns: - name: result type: VARCHAR - name: opponents type: VARCHAR table: table_21058836_1
SELECT result FROM table_21058836_1 WHERE opponents = 26
Which of the second parties has second member Charles Robert Colvile, a conservative first party, and first member William Mundy?
columns: - name: second_party type: VARCHAR - name: first_member type: VARCHAR - name: second_member type: VARCHAR - name: first_party type: VARCHAR table: table_name_31
SELECT second_party FROM table_name_31 WHERE second_member = "charles robert colvile" AND first_party = "conservative" AND first_member = "william mundy"
What is the smallest ERP W with a frequency MHz of 94.9?
columns: - name: erp_w type: INTEGER - name: frequency_mhz type: VARCHAR table: table_name_26
SELECT MIN(erp_w) FROM table_name_26 WHERE frequency_mhz = 94.9
For the prior occupation listed as assistant police commissioner (ret'd) what are the entire list of romanised name.
columns: - name: romanised_name type: VARCHAR - name: prior_occupation type: VARCHAR table: table_17964087_2
SELECT romanised_name FROM table_17964087_2 WHERE prior_occupation = "Assistant Police Commissioner (ret'd)"