automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 16:55:22 +02:00
parent 59b0c5d5aa
commit 853d01ba45

3
8.sql
View File

@@ -0,0 +1,3 @@
-- write a SQL query to list the English titles of the 5 prints with the least contrast by Hokusai, from least to highest contrast.
-- Compare them to this list on Wikipedia to see if your results match the prints aesthetics.
SELECT "english_title" FROM "views" WHERE "artist" = "Hokusai" ORDER BY "contrast" ASC LIMIT 5;