From 9ca9d7d90605e19ed14c4122723c54a68d2c8694 Mon Sep 17 00:00:00 2001 From: anthonydb Date: Sun, 2 Aug 2020 13:44:16 -0400 Subject: [PATCH] Chapter 3 updates post tech review; Chapter 7 WIP --- 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 bf07278..c94fc71 100644 --- a/Chapter_03/Chapter_03.sql +++ b/Chapter_03/Chapter_03.sql @@ -84,7 +84,7 @@ WHERE salary BETWEEN 40000 AND 65000; SELECT first_name, last_name, school, salary FROM teachers -WHERE salary >= 40000 AND salary < 65001; +WHERE salary >= 40000 AND salary <= 65000; -- Listing 3-8: Filtering with LIKE AND ILIKE