6 lines
336 B
SQL
6 lines
336 B
SQL
-- write a SQL query to answer a question of your choice about the prints. The query should:
|
|
-- Make use of AS to rename a column
|
|
-- Involve at least one condition, using WHERE
|
|
-- Sort by at least one column, using ORDER BY
|
|
SELECT ROUND(AVG("brightness"), 2) AS "Hiroshige Average Brightness" FROM "views" WHERE "artist" = "Hiroshige";
|