Chapter 3 updates post tech review; Chapter 7 WIP

This commit is contained in:
anthonydb 2020-08-02 13:44:16 -04:00
parent 16e22e90ff
commit 9ca9d7d906

View File

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