Problems / Null Handling Basics / Editorial
Null handling is critical in real-world data.
COALESCE takes any number of arguments and returns the first non-null one. IS NULL / IS NOT NULL are the correct way to check for nulls — never use = NULL.
= NULL
Solve Null Handling Basics yourself →