From 3e908d6fb8baa946ab9acd2b2bcbd46971936cbc Mon Sep 17 00:00:00 2001 From: daviddoji Date: Mon, 13 Apr 2026 16:49:58 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- 6.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/6.sql b/6.sql index e69de29..834119d 100644 --- a/6.sql +++ b/6.sql @@ -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”. +ELECT ROUND(AVG("entropy"), 2) AS "Hiroshige Average Entropy" FROM "views" WHERE "artist" = "Hiroshige";