From 67544c2ed05043cd783f0efab144439372307ef3 Mon Sep 17 00:00:00 2001 From: anthonydb Date: Thu, 5 Aug 2021 21:44:30 -0400 Subject: [PATCH] Listing title edit --- Chapter_03/Chapter_03.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chapter_03/Chapter_03.sql b/Chapter_03/Chapter_03.sql index c94fc71..b5aae80 100644 --- a/Chapter_03/Chapter_03.sql +++ b/Chapter_03/Chapter_03.sql @@ -77,7 +77,7 @@ SELECT first_name, last_name, salary FROM teachers WHERE salary >= 43500; --- Teachers who earn between $40,000 and $65,000 +-- Teachers who earn from $40,000 to $65,000 SELECT first_name, last_name, school, salary FROM teachers WHERE salary BETWEEN 40000 AND 65000;