bot50
2026-04-13 14:58:25 +00:00
commit 2b995fdaa6
10 changed files with 26 additions and 0 deletions

3
7.sql Normal file
View File

@@ -0,0 +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 prints aesthetics.
SELECT "english_title" FROM "views" WHERE "artist" = "Hiroshige" ORDER BY "brightness" DESC LIMIT 5;