automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 16:58:21 +02:00
parent 853d01ba45
commit 7aac197f90

2
9.sql
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;