4 lines
297 B
SQL
4 lines
297 B
SQL
-- write a SQL query to count how many prints by Hokusai include “Fuji” in the English title.
|
||
-- Though all of Hokusai’s prints focused on Mt. Fuji, in how many did “Fuji” make it into the title?
|
||
SELECT COUNT(*) FROM "views" WHERE "artist" = "Hokusai" AND "english_title" LIKE "%Fuji%";
|