bot50
2026-04-13 14:32:55 +00:00
commit 4eb04cd2dd
10 changed files with 6 additions and 0 deletions

3
1.sql Normal file
View File

@@ -0,0 +1,3 @@
-- write a SQL query that a translator might take interest in: list, side by side, the Japanese title and the
-- English title for each print. Ensure the Japanese title is the first column, followed by the English title.
SELECT "japanese_title", "english_title" FROM "views";

0
10.sql Normal file
View File

3
2.sql Normal file
View File

@@ -0,0 +1,3 @@
-- write a SQL query to list the average colors of prints by Hokusai that include “river” in the English title.
-- (As an aside, do they have any hint of blue?)
SELECT "average_color" FROM "views" WHERE "artist" = "Hokusai" AND "english_title" LIKE "%river%";

0
3.sql Normal file
View File

0
4.sql Normal file
View File

0
5.sql Normal file
View File

0
6.sql Normal file
View File

0
7.sql Normal file
View File

0
8.sql Normal file
View File

0
9.sql Normal file
View File