automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 16:50:54 +02:00
parent 3e908d6fb8
commit b1c6f98a21
2 changed files with 3 additions and 1 deletions

2
6.sql
View File

@@ -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";

2
7.sql
View File

@@ -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 prints aesthetics.