automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 16:42:31 +02:00
parent b885c2bc01
commit 88de49ca26
2 changed files with 4 additions and 1 deletions

2
3.sql
View File

@@ -1,3 +1,3 @@
-- write a SQL query to count how many prints by Hokusai include “Fuji” in the English title. -- 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? -- Though all of Hokusais prints focused on Mt. Fuji, in how many did “Fuji” make it into the title?
SELECT COUNT(*) FROM "views" WHERE "english_title" LIKE "%Fuji%"; SELECT COUNT(*) FROM "views" WHERE "artist" = "Hokusai" AND "english_title" LIKE "%Fuji%";

3
4.sql
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%";