bot50
2026-04-13 15:01:22 +00:00
commit 7c48caa87d
10 changed files with 31 additions and 0 deletions

3
3.sql Normal file
View File

@@ -0,0 +1,3 @@
-- write a SQL query to count how many prints by Hokusai include “Fuji” in the English title.
-- Though all of Hokusais 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%";