bot50
2026-04-13 14:53:57 +00:00
commit 55ff354150
10 changed files with 21 additions and 0 deletions

3
4.sql Normal file
View File

@@ -0,0 +1,3 @@
-- write a SQL query to count how many prints by Hiroshige have English titles that refer to the “Eastern Capital”.
-- Hiroshiges prints were created in Japans “Edo period,” referencing the eastern capital city of Edo, now Tokyo.
SELECT COUNT(*) FROM "views" WHERE "artist" = "Hiroshige" AND "english_title" LIKE "%Eastern%Capital%";