IS NULL is SQL's explicit missing-value test for NULL cells.
Input table
Start with shipments where some shipped dates are NULL.
Shipments
Where query
Use IS NULL to test for missing shipped dates explicitly.
WHERE shipped date IS NULL
Predicate truth
NULL shipped dates evaluate to TRUE; known dates evaluate to FALSE.
IS NULL truth check
Filtered output
Only rows with missing shipped dates pass the WHERE filter.
missing shipped dates