automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 16:53:53 +02:00
parent b1c6f98a21
commit 59b0c5d5aa

1
7.sql
View File

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