4 lines
325 B
SQL
4 lines
325 B
SQL
-- write a SQL query to list the English titles of the 5 prints with the least contrast by Hokusai, from least to highest contrast.
|
||
-- Compare them to this list on Wikipedia to see if your results match the print’s aesthetics.
|
||
SELECT "english_title" FROM "views" WHERE "artist" = "Hokusai" ORDER BY "contrast" ASC LIMIT 5;
|