4 lines
264 B
SQL
4 lines
264 B
SQL
-- write a SQL query to list the average colors of prints by Hokusai that include “river” in the English title.
|
|
-- (As an aside, do they have any hint of blue?)
|
|
SELECT "average_color" FROM "views" WHERE "artist" = "Hokusai" AND "english_title" LIKE "%river%";
|