bot50
2026-04-13 14:50:59 +00:00
commit 7b1c2f97a4
10 changed files with 20 additions and 0 deletions

3
6.sql Normal file
View File

@@ -0,0 +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”.
SELECT ROUND(AVG("entropy"), 2) AS "Hiroshige Average Entropy" FROM "views" WHERE "artist" = "Hiroshige";