programming-examples/sql/SQLMovieDatabase/27. Write a query in SQL to find the titles of all movies directed by the director whose first and last name are Woddy Allen.sql
2019-11-18 14:05:53 +01:00

8 lines
272 B
SQL

/*27. Write a query in SQL to find the titles of all movies directed by the director whose first and last name are Woddy Allen.*/
SELECT DISTINCT mov_year
FROM movie
WHERE mov_id IN (
SELECT mov_id
FROM rating
WHERE rev_stars>3)
ORDER BY mov_year;