From 7aac197f90e22038506472617df1bfc358ac44e8 Mon Sep 17 00:00:00 2001 From: daviddoji Date: Mon, 13 Apr 2026 16:58:21 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- 9.sql | 2 ++ 1 file changed, 2 insertions(+) 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;