1 parent 69f6115 commit cacc118Copy full SHA for cacc118
sql/movies-database-queries/11.sql
@@ -0,0 +1,11 @@
1
+SELECT title
2
+FROM movies
3
+ JOIN stars
4
+ ON stars.movie_id = movies.id
5
+ JOIN people
6
+ ON people.id = stars.person_id
7
+ JOIN ratings
8
+ ON ratings.movie_id = movies.id
9
+WHERE people.name = "Chadwick Boseman"
10
+ORDER BY ratings.rating DESC
11
+LIMIT 5;
0 commit comments