diff --git a/9.sql b/9.sql index e69de29..88a1179 100644 --- a/9.sql +++ b/9.sql @@ -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;