w3resource

SQL exercises on movie Database: Find the name of the director who directed a movie that casted a role for 'Eyes Wide Shut'


2. From the following tables, write a SQL query to find the director of a film that cast a role in 'Eyes Wide Shut'. Return director first name, last name.

Sample table: director

 dir_id |      dir_fname       |      dir_lname
--------+----------------------+----------------------
    201 | Alfred               | Hitchcock
    202 | Jack                 | Clayton
    203 | David                | Lean
    204 | Michael              | Cimino
    205 | Milos                | Forman
    206 | Ridley               | Scott
    207 | Stanley              | Kubrick
    208 | Bryan                | Singer
    209 | Roman                | Polanski
.....
    223 | Peter                | Jackson

View the table

Sample table: movie_direction

 dir_id | mov_id
--------+--------
    201 |    901
    202 |    902
    203 |    903
    204 |    904
    205 |    905
    206 |    906
    207 |    907
    208 |    908
    209 |    909
....
    221 |    923

View the table

Sample table: movie_cast

 act_id | mov_id |              role
--------+--------+--------------------------------
    101 |    901 | John Scottie Ferguson
    102 |    902 | Miss Giddens
    103 |    903 | T.E. Lawrence
    104 |    904 | Michael
    105 |    905 | Antonio Salieri
    106 |    906 | Rick Deckard
    107 |    907 | Alice Harford
    108 |    908 | McManus
    110 |    910 | Eddie Adams
....
    119 |    919 | Alfred Borden

View the table

Sample table: movie

 mov_id |                     mov_title                      | mov_year | mov_time |    mov_lang     | mov_dt_rel | mov_rel_country
--------+----------------------------------------------------+----------+----------+-----------------+------------+-----------------
    901 | Vertigo                                            |     1958 |      128 | English         | 1958-08-24 | UK
    902 | The Innocents                                      |     1961 |      100 | English         | 1962-02-19 | SW
    903 | Lawrence of Arabia                                 |     1962 |      216 | English         | 1962-12-11 | UK
    904 | The Deer Hunter                                    |     1978 |      183 | English         | 1979-03-08 | UK
    905 | Amadeus                                            |     1984 |      160 | English         | 1985-01-07 | UK
    906 | Blade Runner                                       |     1982 |      117 | English         | 1982-09-09 | UK
    907 | Eyes Wide Shut                                     |     1999 |      159 | English         |            | UK
    908 | The Usual Suspects                                 |     1995 |      106 | English         | 1995-08-25 | UK
    909 | Chinatown                                          |     1974 |      130 | English         | 1974-08-09 | UK
......
    925 | Braveheart                                         |     1995 |      178 | English         | 1995-09-08 | UK

View the table

Sample Solution:

-- Selecting 'dir_fname' and 'dir_lname' from the 'director' table
-- Filtering results where 'dir_id' is in the subquery result
SELECT dir_fname, dir_lname
FROM  director
WHERE dir_id IN (
  -- Selecting 'dir_id' from 'movie_direction' where 'mov_id' is in the subquery result
  SELECT dir_id 
  FROM movie_direction
  WHERE mov_id IN (
    -- Selecting 'mov_id' from 'movie_cast' where 'role' is any value in the subquery result
    SELECT mov_id 
    FROM movie_cast 
    WHERE role = ANY (
      -- Selecting 'role' from 'movie_cast' where 'mov_id' is in the subquery result
      SELECT role 
      FROM movie_cast 
      WHERE mov_id IN (
        -- Selecting 'mov_id' from 'movie' where 'mov_title' is 'Eyes Wide Shut'
        SELECT  mov_id 
        FROM movie 
        WHERE mov_title='Eyes Wide Shut'
      )
    )
  )
);

Sample Output:

      dir_fname       |      dir_lname
----------------------+----------------------
 Stanley              | Kubrick
(1 row)

Code Explanation:

The said query in SQL that retrieves the first and last name of the
director(s) who directed a movie in which any actor played
a role that was also played in the movie 'Eyes Wide Shut'.
1. In the innermost subquery, it selects the mov_id of the movie 'Eyes Wide Shut' from the movie table.
Then, it uses that mov_id to select all roles played in
that movie from the movie_cast table.
2. Then that list of roles are use to select all mov_id values from the movie_cast table where the same
roles were played. This effectively finds all movies that have at
least one actor playing the same roles as in 'Eyes Wide Shut'.
3. Then, it selects the dir_id values from the movie_direction table for each of those movies found in the step 2.
4. Then the outermost query selects the first and last names of
the director(s) whose dir_id values were found in the step 3.

Alternative Solutions:

Alternative 1:


SELECT d.dir_fname, d.dir_lname
FROM director d
JOIN movie_direction md ON d.dir_id = md.dir_id
JOIN movie_cast mc ON md.mov_id = mc.mov_id
WHERE mc.role = ANY (
    SELECT mc2.role
    FROM movie_cast mc2
    JOIN movie m ON mc2.mov_id = m.mov_id
    WHERE m.mov_title = 'Eyes Wide Shut'
);

Explanation:

This query retrieves directors who have worked on the movie "Eyes Wide Shut" by navigating through the relationships between the director, movie_direction, and movie_cast tables, filtering based on the role of cast members.

Alternative 2:


SELECT d.dir_fname, d.dir_lname
FROM director d
JOIN movie_direction md ON d.dir_id = md.dir_id
JOIN movie_cast mc ON md.mov_id = mc.mov_id
JOIN movie m ON mc.mov_id = m.mov_id
WHERE m.mov_title = 'Eyes Wide Shut';

Explanation:

This SQL query retrieves the first and last names of directors (dir_fname and dir_lname) who have worked on the movie "Eyes Wide Shut". It joins the director table with the movie_direction table based on the director IDs (dir_id). This allows us to associate directors with movies.

Alternative 3:


SELECT d.dir_fname, d.dir_lname
FROM director d
WHERE EXISTS (
    SELECT 1
    FROM movie_direction md
    JOIN movie_cast mc ON md.mov_id = mc.mov_id
    WHERE md.dir_id = d.dir_id
    AND mc.role = ANY (
        SELECT mc2.role
        FROM movie_cast mc2
        JOIN movie m ON mc2.mov_id = m.mov_id
        WHERE m.mov_title = 'Eyes Wide Shut'
    )
);

Explanation:

This query retrieves directors who have worked on the movie "Eyes Wide Shut" by checking if there exists a connection between the director, movie direction, and movie cast tables for that specific movie title.

Alternative 4:


SELECT d.dir_fname, d.dir_lname
FROM director d, movie_direction md, movie_cast mc, movie m
WHERE d.dir_id = md.dir_id
AND md.mov_id = mc.mov_id
AND mc.mov_id = m.mov_id
AND mc.role = ANY (
    SELECT mc2.role
    FROM movie_cast mc2
    WHERE mc2.mov_id = (
        SELECT mov_id
        FROM movie
        WHERE mov_title = 'Eyes Wide Shut'
    )
);

Explanation:

This query retrieves directors who have worked on the movie "Eyes Wide Shut" by joining multiple tables ('director', 'movie_direction', 'movie_cast', and 'movie') and applying conditions to establish the relationships and filter the results based on roles.

Go to:


PREV : From the following table, write a SQL query to find the actors who played a role in the movie 'Annie Hall'. Return all the fields of actor table.
NEXT : From the following table, write a SQL query to find those movies, which released in the country besides UK. Return movie title, movie year, movie time, date of release, releasing country.


Practice Online



Movie database model


Query Visualization:

Duration:

Query visualization of Find the name of the director who directed a movie that casted a role for 'Eyes Wide Shut' - Duration.


Rows:

Query visualization of Find the name of the director who directed a movie that casted a role for 'Eyes Wide Shut' - Rows.


Cost:

Query visualization of Find the name of the director who directed a movie that casted a role for 'Eyes Wide Shut' - Cost.


Have another way to solve this solution? Contribute your code (and comments) through Disqus.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.