diff --git a/7.sql b/7.sql index 020142f..5bf3830 100644 --- a/7.sql +++ b/7.sql @@ -1,2 +1,3 @@ -- write a SQL query to list the English titles of the 5 brightest prints by Hiroshige, from most to least bright. -- Compare them to this list on Wikipedia to see if your results match the print’s aesthetics. +SELECT "english_title" FROM "views" WHERE "artist" = "Hiroshige" ORDER BY "brightness" DESC LIMIT 5;