4 lines
271 B
SQL
4 lines
271 B
SQL
-- 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";
|