bot50
2026-04-13 14:58:25 +00:00
commit 2b995fdaa6
10 changed files with 26 additions and 0 deletions

2
9.sql Normal file
View File

@@ -0,0 +1,2 @@
-- write a SQL query to find the English title and artist of the print with the highest brightness.
SELECT "english_title", "artist" FROM "views" ORDER BY "brightness" DESC LIMIT 1;