From 853d01ba45d708aaf01f1e3a1d4e8bcab636e1d6 Mon Sep 17 00:00:00 2001 From: daviddoji Date: Mon, 13 Apr 2026 16:55:22 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- 8.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/8.sql b/8.sql index e69de29..a62b60c 100644 --- a/8.sql +++ b/8.sql @@ -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 print’s aesthetics. +SELECT "english_title" FROM "views" WHERE "artist" = "Hokusai" ORDER BY "contrast" ASC LIMIT 5;