From 5945548e7caf35ddbca4ff504b035f25932d5f38 Mon Sep 17 00:00:00 2001 From: Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> Date: Mon, 20 May 2024 11:23:32 +0000 Subject: Mon, May 20, 2024, 4:23 AM -07:00 --- wk7/pset/movies/11.sql | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'wk7/pset') diff --git a/wk7/pset/movies/11.sql b/wk7/pset/movies/11.sql index e69de29..978cdcc 100644 --- a/wk7/pset/movies/11.sql +++ b/wk7/pset/movies/11.sql @@ -0,0 +1,7 @@ +SELECT title +FROM movies +JOIN ratings ON movies.id = ratings.movie_id +JOIN people ON ratings.person_id = people.id +WHERE name = "Chadwick Boseman" +ORDER BY rating +; -- cgit v1.2.3