From 59b0c5d5aa4f20e0742967e1b0461d1703cb3120 Mon Sep 17 00:00:00 2001 From: daviddoji Date: Mon, 13 Apr 2026 16:53:53 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- 7.sql | 1 + 1 file changed, 1 insertion(+) 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;