From c456ed5842b753b72649b72f628ee7d5f97d3ba7 Mon Sep 17 00:00:00 2001 From: rosemm Date: Mon, 4 Nov 2024 10:42:40 -0500 Subject: [PATCH] Typo --- sql_basics/sql_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql_basics/sql_basics.md b/sql_basics/sql_basics.md index d0185e1..0c57d67 100644 --- a/sql_basics/sql_basics.md +++ b/sql_basics/sql_basics.md @@ -1216,7 +1216,7 @@ In particular, we covered: * `DISTINCT`: used to ask for only a single example of each possible unique value * `WHERE`: used to give a condition which filters the data retrieved * `IS NULL`: used to compare a value to *NULL* (an empty/missing value) -* `IS NOT NULL`: used to compare a value to not *NULL* (a value that is not missing and not empty) +* `IS NOT NULL`: used to compare a value to not *NULL* (a value that is not empty/missing) * `ORDER BY`: used to display results organized by the values in one or more columns * `LIMIT`: used to truncate (cut off) the number of result rows retrieved at a given number * `AS`: used to alias (rename) columns or tables