From b1c6f98a21f0e9f14e96d14638d12d0f9d518c3d Mon Sep 17 00:00:00 2001 From: daviddoji Date: Mon, 13 Apr 2026 16:50:54 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- 6.sql | 2 +- 7.sql | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/6.sql b/6.sql index 834119d..d85cea3 100644 --- a/6.sql +++ b/6.sql @@ -1,3 +1,3 @@ -- write a SQL query to find the average entropy of prints by Hiroshige, rounded to two decimal places. -- Call the resulting column “Hiroshige Average Entropy”. -ELECT ROUND(AVG("entropy"), 2) AS "Hiroshige Average Entropy" FROM "views" WHERE "artist" = "Hiroshige"; +SELECT ROUND(AVG("entropy"), 2) AS "Hiroshige Average Entropy" FROM "views" WHERE "artist" = "Hiroshige"; diff --git a/7.sql b/7.sql index e69de29..020142f 100644 --- a/7.sql +++ b/7.sql @@ -0,0 +1,2 @@ +-- 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.