Lesson 10 of 3231%
(Progress persistence is disabled until Phase 9)
SQL
Beginner
Working with NULL
Handling missing data.
Working with NULL
Handling missing data.
Example
-- Find users with missing country data (demo)
SELECT * FROM users WHERE country IS NULL;
Test it Yourself