This check focuses on the SQL rule that UNKNOWN rows do not pass a WHERE filter.
Input table
Start with shipments where some date cells are NULL.
exercise input with NULLs
Where query
Compare each row with the target shipped date.
shipped date equals target
Predicate truth
A NULL date becomes UNKNOWN, not a match.
TRUE versus UNKNOWN check
Filtered output
The recomputed output keeps only the TRUE row.
checked output