question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the date of Competition of 2008 africa cup of nations?
CREATE TABLE table_name_37 (date VARCHAR, competition VARCHAR)
SELECT date FROM table_name_37 WHERE competition = "2008 africa cup of nations"
Who were the writers of episode/s first aired in the US on June 9, 2012?
CREATE TABLE table_29087004_3 (written_by VARCHAR, united_states_original_airdate VARCHAR)
SELECT written_by FROM table_29087004_3 WHERE united_states_original_airdate = "June 9, 2012"
On May 26, what was the team's record?
CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_92 WHERE date = "may 26"
What is the party of the maryland 6 district?
CREATE TABLE table_name_73 (party VARCHAR, district VARCHAR)
SELECT party FROM table_name_73 WHERE district = "maryland 6"
What is the migration rating when trade is 5.7?
CREATE TABLE table_13677808_1 (migration VARCHAR, trade VARCHAR)
SELECT migration FROM table_13677808_1 WHERE trade = "5.7"
How many points were won where new points was 1680?
CREATE TABLE table_27615896_18 (points INTEGER, new_points VARCHAR)
SELECT MIN(points) AS won FROM table_27615896_18 WHERE new_points = 1680
Name the narraed by for beluga shipping
CREATE TABLE table_26168687_5 (narrated_by VARCHAR, vessel_operator VARCHAR)
SELECT narrated_by FROM table_26168687_5 WHERE vessel_operator = "Beluga Shipping"
List all the names of schools with an endowment amount smaller than or equal to 10.
CREATE TABLE school (school_name VARCHAR, school_id VARCHAR); CREATE TABLE endowment (school_id VARCHAR, amount INTEGER)
SELECT T2.school_name FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id GROUP BY T1.school_id HAVING SUM(T1.amount) <= 10
What is the highest rank of a rider whose time was 1:19.02.8?
CREATE TABLE table_name_70 (place INTEGER, time VARCHAR)
SELECT MAX(place) FROM table_name_70 WHERE time = "1:19.02.8"
Who was the home team of the game at the time of 15:00?
CREATE TABLE table_name_33 (home VARCHAR, time VARCHAR)
SELECT home FROM table_name_33 WHERE time = "15:00"
Which country had a t4 place and scored 66-73=139?
CREATE TABLE table_name_42 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT country FROM table_name_42 WHERE place = "t4" AND score = 66 - 73 = 139
what is the highest total when the nation is france and silver is more than 1?
CREATE TABLE table_name_71 (total INTEGER, nation VARCHAR, silver VARCHAR)
SELECT MAX(total) FROM table_name_71 WHERE nation = "france" AND silver > 1
What was the note with a year after 2003?
CREATE TABLE table_name_28 (note VARCHAR, year INTEGER)
SELECT note FROM table_name_28 WHERE year > 2003
When the area sq mi (km 2 ) (rank) is sqmi (km2) (5) what is the population (2010) (rank)?
CREATE TABLE table_14253123_1 (population__2010___rank_ VARCHAR, area_sq_mi__km_2____rank_ VARCHAR)
SELECT population__2010___rank_ FROM table_14253123_1 WHERE area_sq_mi__km_2____rank_ = "sqmi (km2) (5)"
What was the away team score at Hawthorn's home game?
CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_28 WHERE home_team = "hawthorn"
Which team has finished in 1st place in 2011?
CREATE TABLE table_name_95 (team VARCHAR, pos VARCHAR, year VARCHAR)
SELECT team FROM table_name_95 WHERE pos = "1st" AND year = 2011
What was the average Lost entry for Newton, for games with a drawn less than 5?
CREATE TABLE table_name_78 (lost INTEGER, team VARCHAR, drawn VARCHAR)
SELECT AVG(lost) FROM table_name_78 WHERE team = "newton" AND drawn < 5
When Regions center has a rank less than 11, what is the greatest number o floors?
CREATE TABLE table_name_62 (floors INTEGER, name VARCHAR, rank VARCHAR)
SELECT MAX(floors) FROM table_name_62 WHERE name = "regions center" AND rank < 11
Who was the champion when the attendance was 70,000?
CREATE TABLE table_name_43 (champion VARCHAR, attendance VARCHAR)
SELECT champion FROM table_name_43 WHERE attendance = "70,000"
who is the entrant when the points is 42 (45) and the chassis is brabham bt20?
CREATE TABLE table_name_25 (entrant VARCHAR, points VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_25 WHERE points = "42 (45)" AND chassis = "brabham bt20"
What is the maximum stars and year for the most recent movie?
CREATE TABLE Rating (stars INTEGER, mID VARCHAR); CREATE TABLE Movie (YEAR INTEGER); CREATE TABLE Movie (year VARCHAR, mID VARCHAR)
SELECT MAX(T1.stars), T2.year FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T2.year = (SELECT MAX(YEAR) FROM Movie)
Name the Tag Team with Entered of 6?
CREATE TABLE table_name_94 (tag_team VARCHAR, entered VARCHAR)
SELECT tag_team FROM table_name_94 WHERE entered = 6
What is the thai name of the transcription wan chan?
CREATE TABLE table_180802_3 (thai_name VARCHAR, transcription VARCHAR)
SELECT thai_name FROM table_180802_3 WHERE transcription = "wan chan"
What is the nationality of the player from Round 2, Pick 19 from College of Kansas State?
CREATE TABLE table_name_42 (nationality VARCHAR, pick VARCHAR, round VARCHAR, college VARCHAR)
SELECT nationality FROM table_name_42 WHERE round = "2" AND college = "kansas state" AND pick = "19"
What is Draws, when Wins is "Did Not Qualify"?
CREATE TABLE table_name_80 (draws VARCHAR, wins VARCHAR)
SELECT draws FROM table_name_80 WHERE wins = "did not qualify"
What is the record for the Ko (head kick) method?
CREATE TABLE table_name_24 (record VARCHAR, method VARCHAR)
SELECT record FROM table_name_24 WHERE method = "ko (head kick)"
What is the average Grid for the Rider Toni Elias with Laps more than 30?
CREATE TABLE table_name_62 (grid INTEGER, rider VARCHAR, laps VARCHAR)
SELECT AVG(grid) FROM table_name_62 WHERE rider = "toni elias" AND laps > 30
What is the average of the total when t11 is the finish?
CREATE TABLE table_name_39 (total INTEGER, finish VARCHAR)
SELECT AVG(total) FROM table_name_39 WHERE finish = "t11"
What was the highest week with 84,856 in attendance?
CREATE TABLE table_name_96 (week INTEGER, attendance VARCHAR)
SELECT MAX(week) FROM table_name_96 WHERE attendance = "84,856"
Name the No. 2 which has a No. 3 of jacob, and a No. 10 of wyatt, and a No. 6 of ethan?
CREATE TABLE table_name_66 (no_2 VARCHAR, no_6 VARCHAR, no_3 VARCHAR, no_10 VARCHAR)
SELECT no_2 FROM table_name_66 WHERE no_3 = "jacob" AND no_10 = "wyatt" AND no_6 = "ethan"
Which HPFS has a no for ReFS?
CREATE TABLE table_name_51 (hpfs VARCHAR, refs VARCHAR)
SELECT hpfs FROM table_name_51 WHERE refs = "no"
On what day was the game that ended in a score of 97-38?
CREATE TABLE table_name_1 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_1 WHERE score = "97-38"
What was the home team's record when they played the Twins on September 25?
CREATE TABLE table_name_57 (record VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT record FROM table_name_57 WHERE opponent = "twins" AND date = "september 25"
Name the country for hannes arch
CREATE TABLE table_20036882_2 (country VARCHAR, winning_pilot VARCHAR)
SELECT country FROM table_20036882_2 WHERE winning_pilot = "Hannes Arch"
Which 2012 has a 2008 of grand slam tournaments?
CREATE TABLE table_name_47 (Id VARCHAR)
SELECT 2012 FROM table_name_47 WHERE 2008 = "grand slam tournaments"
What is the lowest Year with an Album that is live love in London?
CREATE TABLE table_name_34 (year INTEGER, album VARCHAR)
SELECT MIN(year) FROM table_name_34 WHERE album = "live love in london"
what is the name that had 46 floors?
CREATE TABLE table_name_47 (name VARCHAR, floors VARCHAR)
SELECT name FROM table_name_47 WHERE floors = 46
How many different users wrote some reviews?
CREATE TABLE review (u_id VARCHAR)
SELECT COUNT(DISTINCT u_id) FROM review
Which rank has a team of Suzuki with under 16 points?
CREATE TABLE table_name_96 (rank VARCHAR, team VARCHAR, points VARCHAR)
SELECT rank FROM table_name_96 WHERE team = "suzuki" AND points < 16
How many goals have a goal ration less than 0.8 with 56 games?
CREATE TABLE table_name_49 (goals VARCHAR, goal_ratio VARCHAR, games VARCHAR)
SELECT COUNT(goals) FROM table_name_49 WHERE goal_ratio < 0.8 AND games = 56
What is the score of player craig stadler from the United States with a t8 place?
CREATE TABLE table_name_84 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
SELECT score FROM table_name_84 WHERE place = "t8" AND country = "united states" AND player = "craig stadler"
What date was the Set 3 of 12–25?
CREATE TABLE table_name_79 (date VARCHAR, set_3 VARCHAR)
SELECT date FROM table_name_79 WHERE set_3 = "12–25"
With an original artist names Bette Midler, what is the order number?
CREATE TABLE table_21501565_1 (order__number VARCHAR, original_artist VARCHAR)
SELECT COUNT(order__number) FROM table_21501565_1 WHERE original_artist = "Bette Midler"
If the opponents in the final is Hewitt McMillan and the partner is Fleming, what is the surface?
CREATE TABLE table_22597626_2 (surface VARCHAR, partner VARCHAR, opponents_in_the_final VARCHAR)
SELECT surface FROM table_22597626_2 WHERE partner = "Fleming" AND opponents_in_the_final = "Hewitt McMillan"
Name the least top 5
CREATE TABLE table_1671401_1 (top_5 INTEGER)
SELECT MIN(top_5) FROM table_1671401_1
What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44?
CREATE TABLE table_name_18 (assists INTEGER, goals VARCHAR, club VARCHAR, points VARCHAR)
SELECT AVG(assists) FROM table_name_18 WHERE club = "iserlohn roosters" AND points = 71 AND goals > 44
What is the total of wins when the evens is less than 3?
CREATE TABLE table_name_66 (wins INTEGER, events INTEGER)
SELECT SUM(wins) FROM table_name_66 WHERE events < 3
How many 2007s have 0.2 as a 2006, with a 2010 less than 0.1?
CREATE TABLE table_name_71 (Id VARCHAR)
SELECT SUM(2007) FROM table_name_71 WHERE 2006 = 0.2 AND 2010 < 0.1
What is the tourism competitiveness in 2011 of venezuela?
CREATE TABLE table_name_90 (tourism_competitiveness__2011___ttci_ VARCHAR, country VARCHAR)
SELECT tourism_competitiveness__2011___ttci_ FROM table_name_90 WHERE country = "venezuela"
What episode number of the series had a production code of bdf409?
CREATE TABLE table_28019988_5 (series__number INTEGER, production_code VARCHAR)
SELECT MIN(series__number) FROM table_28019988_5 WHERE production_code = "BDF409"
Can you tell me the County that has the Year Joined of 1964, and the Location of montezuma?
CREATE TABLE table_name_24 (county VARCHAR, year_joined VARCHAR, location VARCHAR)
SELECT county FROM table_name_24 WHERE year_joined = 1964 AND location = "montezuma"
What is the percentage of votes for the party that has Seats of 80?
CREATE TABLE table_name_15 (percentage VARCHAR, seats VARCHAR)
SELECT percentage FROM table_name_15 WHERE seats = 80
What shows for 1992 when 1988 is A, at the Australian Open?
CREATE TABLE table_name_43 (tournament VARCHAR)
SELECT 1992 FROM table_name_43 WHERE 1988 = "a" AND tournament = "australian open"
What 1976 has a 1978 of grand slam tournaments?
CREATE TABLE table_name_57 (Id VARCHAR)
SELECT 1976 FROM table_name_57 WHERE 1978 = "grand slam tournaments"
What is the winning span for the name of bernard gallacher?
CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR)
SELECT winning_span FROM table_1953516_1 WHERE name = "Bernard Gallacher"
How many poles had an average finish of 19.1?
CREATE TABLE table_1012730_1 (poles INTEGER, avg_finish VARCHAR)
SELECT MAX(poles) FROM table_1012730_1 WHERE avg_finish = "19.1"
Which against has the lowest when byes are larger than 0?
CREATE TABLE table_name_99 (against INTEGER, byes INTEGER)
SELECT MIN(against) FROM table_name_99 WHERE byes > 0
How many copies per particle are there for the base pair that is size 1059?
CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, size___s_base_pair__ VARCHAR)
SELECT COUNT(copies_per_particle) FROM table_140968_1 WHERE size___s_base_pair__ = 1059
What is the location of South Adelaide?
CREATE TABLE table_name_46 (location VARCHAR, team VARCHAR)
SELECT location FROM table_name_46 WHERE team = "south adelaide"
What year was incumbent william f. stevenson first elected?
CREATE TABLE table_1342451_38 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1342451_38 WHERE incumbent = "William F. Stevenson"
Who was the girl on week 5 that came after week 3's Mikaela James?
CREATE TABLE table_name_72 (week_5 VARCHAR, week_3 VARCHAR)
SELECT week_5 FROM table_name_72 WHERE week_3 = "mikaela james"
What was the ERP W for 96.7 MHz?
CREATE TABLE table_name_44 (erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT erp_w FROM table_name_44 WHERE frequency_mhz = 96.7
Which Att-Cmp has a TD-INT of 7-8?
CREATE TABLE table_name_21 (att_cmp VARCHAR, td_int VARCHAR)
SELECT att_cmp FROM table_name_21 WHERE td_int = "7-8"
Tell me the sum of laps with a time/retired of +13 laps with grid more than 18
CREATE TABLE table_name_21 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
SELECT SUM(laps) FROM table_name_21 WHERE time_retired = "+13 laps" AND grid > 18
What is the average for the university of dublin when the industrial and commercial panel is greater than 4 and the total of the national university of ireland is larger than 3?
CREATE TABLE table_name_75 (university_of_dublin INTEGER, industrial_and_commercial_panel VARCHAR, national_university_of_ireland VARCHAR)
SELECT AVG(university_of_dublin) FROM table_name_75 WHERE industrial_and_commercial_panel > 4 AND national_university_of_ireland > 3
What is the timeslot for the episode that aired April 28, 2009?
CREATE TABLE table_name_26 (timeslot VARCHAR, air_date VARCHAR)
SELECT timeslot FROM table_name_26 WHERE air_date = "april 28, 2009"
What team was the opponent on October 15, 1967?
CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_66 WHERE date = "october 15, 1967"
What is the total number for grid with a Suzuki GSX-R1000 K7 for +13.283?
CREATE TABLE table_name_35 (grid VARCHAR, bike VARCHAR, time VARCHAR)
SELECT COUNT(grid) FROM table_name_35 WHERE bike = "suzuki gsx-r1000 k7" AND time = "+13.283"
What is the max pressure for the 468ft•lbf (634 j) muzzle energy?
CREATE TABLE table_name_99 (max_pressure VARCHAR, muzzle_energy VARCHAR)
SELECT max_pressure FROM table_name_99 WHERE muzzle_energy = "468ft•lbf (634 j)"
what's the report with fastest lap being felipe massa and winning driver being jenson button
CREATE TABLE table_12161822_5 (report VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT report FROM table_12161822_5 WHERE fastest_lap = "Felipe Massa" AND winning_driver = "Jenson Button"
Show the country names and the corresponding number of players.
CREATE TABLE match_season (Country VARCHAR); CREATE TABLE country (Country_name VARCHAR, Country_id VARCHAR)
SELECT Country_name, COUNT(*) FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country GROUP BY T1.Country_name
What city has larger than 94.1 as a frequency?
CREATE TABLE table_name_62 (city_of_license VARCHAR, frequency_mhz INTEGER)
SELECT city_of_license FROM table_name_62 WHERE frequency_mhz > 94.1
What are the average scores of contestants whose home state is Pennsylvania?
CREATE TABLE table_16390001_2 (average VARCHAR, country VARCHAR)
SELECT average FROM table_16390001_2 WHERE country = "Pennsylvania"
What is Status, when Opposing Teams is "Scotland"?
CREATE TABLE table_name_16 (status VARCHAR, opposing_teams VARCHAR)
SELECT status FROM table_name_16 WHERE opposing_teams = "scotland"
What is the number of leg for ss17
CREATE TABLE table_13050822_2 (leg VARCHAR, stage VARCHAR)
SELECT COUNT(leg) FROM table_13050822_2 WHERE stage = "SS17"
Which Score has a Country of england, and a Year larger than 1971?
CREATE TABLE table_name_77 (score VARCHAR, country VARCHAR, year VARCHAR)
SELECT score FROM table_name_77 WHERE country = "england" AND year > 1971
Name the location of record 5-3
CREATE TABLE table_name_21 (location VARCHAR, record VARCHAR)
SELECT location FROM table_name_21 WHERE record = "5-3"
What was the successor for vacant alabama 3rd?
CREATE TABLE table_2417340_4 (successor VARCHAR, vacator VARCHAR, district VARCHAR)
SELECT successor FROM table_2417340_4 WHERE vacator = "Vacant" AND district = "Alabama 3rd"
What is the declination of the spiral galaxy Pegasus with 7337 NGC
CREATE TABLE table_name_89 (declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR, constellation VARCHAR)
SELECT declination___j2000__ FROM table_name_89 WHERE object_type = "spiral galaxy" AND constellation = "pegasus" AND ngc_number = "7337"
Name the least week for september 25, 1983
CREATE TABLE table_14940519_1 (week INTEGER, date VARCHAR)
SELECT MAX(week) FROM table_14940519_1 WHERE date = "September 25, 1983"
What is the name when tfl-yds is 2-2?
CREATE TABLE table_26176081_29 (name VARCHAR, tfl_yds VARCHAR)
SELECT name FROM table_26176081_29 WHERE tfl_yds = "2-2"
What is the Theme with a Paper Type of tullis russell coatings, and a Date with Issue of 1 october 2008?
CREATE TABLE table_name_28 (theme VARCHAR, paper_type VARCHAR, date_of_issue VARCHAR)
SELECT theme FROM table_name_28 WHERE paper_type = "tullis russell coatings" AND date_of_issue = "1 october 2008"
What was Goal that where Competition of international friendly, and a Result of 2–1?
CREATE TABLE table_name_65 (goal VARCHAR, competition VARCHAR, result VARCHAR)
SELECT goal FROM table_name_65 WHERE competition = "international friendly" AND result = "2–1"
Which Pick has a Round larger than 8, a Name of kenny fells, and an Overall larger than 297?
CREATE TABLE table_name_64 (pick INTEGER, overall VARCHAR, round VARCHAR, name VARCHAR)
SELECT SUM(pick) FROM table_name_64 WHERE round > 8 AND name = "kenny fells" AND overall > 297
What is the average when the highest score is 151?
CREATE TABLE table_28846752_4 (average VARCHAR, highest_score VARCHAR)
SELECT average FROM table_28846752_4 WHERE highest_score = "151"
what is the highest jersey when points is 0, different holders is less than 3, giro wins is less than 1 and young rider is more than 1?
CREATE TABLE table_name_72 (jerseys INTEGER, young_rider VARCHAR, giro_wins VARCHAR, points VARCHAR, different_holders VARCHAR)
SELECT MAX(jerseys) FROM table_name_72 WHERE points = 0 AND different_holders < 3 AND giro_wins < 1 AND young_rider > 1
How many heats does Julia Wilkinson have?
CREATE TABLE table_name_88 (heat VARCHAR, name VARCHAR)
SELECT COUNT(heat) FROM table_name_88 WHERE name = "julia wilkinson"
Name the losing bonus for 27
CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, tries_for VARCHAR)
SELECT losing_bonus FROM table_12792876_4 WHERE tries_for = "27"
What is the total when there were less than 0 bronze?
CREATE TABLE table_name_24 (total VARCHAR, bronze INTEGER)
SELECT COUNT(total) FROM table_name_24 WHERE bronze < 0
How many games played for the army team with over 51 points and under 5 games drawn?
CREATE TABLE table_name_81 (played VARCHAR, points VARCHAR, drawn VARCHAR, team VARCHAR)
SELECT COUNT(played) FROM table_name_81 WHERE drawn < 5 AND team = "army" AND points > 51
when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98
CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ INTEGER, standard_speed__6th_gear_ VARCHAR)
SELECT MAX(modified_speed__6th_gear_) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = "98"
What is the score of the game on September 13 when the Expos were the opponent?
CREATE TABLE table_name_49 (score VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT score FROM table_name_49 WHERE opponent = "expos" AND date = "september 13"
What's the name of the central bank in the country where Colombian Peso (cop) is the local currency?
CREATE TABLE table_1222653_10 (central_bank VARCHAR, currency VARCHAR)
SELECT central_bank FROM table_1222653_10 WHERE currency = "Colombian peso (COP)"
What was the number of draws when the Elche CF club played 38 and had a goal difference of -16?
CREATE TABLE table_name_86 (draws INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
SELECT MIN(draws) FROM table_name_86 WHERE goal_difference > -16 AND club = "elche cf" AND played > 38
who is the entrant when the engine is bmw p82?
CREATE TABLE table_name_92 (entrant VARCHAR, engine_† VARCHAR)
SELECT entrant FROM table_name_92 WHERE engine_† = "bmw p82"
When Benall DFL is Goorambat with less than 13 wins, what is the least amount of losses?
CREATE TABLE table_name_15 (losses INTEGER, benalla_dfl VARCHAR, wins VARCHAR)
SELECT MIN(losses) FROM table_name_15 WHERE benalla_dfl = "goorambat" AND wins < 13
Which Road Team has a Home Team of rochester, and a Game of game 2?
CREATE TABLE table_name_61 (road_team VARCHAR, home_team VARCHAR, game VARCHAR)
SELECT road_team FROM table_name_61 WHERE home_team = "rochester" AND game = "game 2"
How many car numbers were recorded when the time/retired is +4.0019?
CREATE TABLE table_17319931_1 (car_no VARCHAR, time_retired VARCHAR)
SELECT COUNT(car_no) FROM table_17319931_1 WHERE time_retired = "+4.0019"
What is the Set 3 when the Set 2 is 21–25, and a Set 1 is 25–21?
CREATE TABLE table_name_70 (set_3 VARCHAR, set_2 VARCHAR, set_1 VARCHAR)
SELECT set_3 FROM table_name_70 WHERE set_2 = "21–25" AND set_1 = "25–21"
What studio has the director Philip Frank Messina?
CREATE TABLE table_name_71 (studio_s_ VARCHAR, director VARCHAR)
SELECT studio_s_ FROM table_name_71 WHERE director = "philip frank messina"