Files
me50/9.sql
2026-04-13 16:58:21 +02:00

3 lines
182 B
SQL

-- 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;