Modern SQL: IS DISTINCT FROM — A comparison operator that treats two NULL values as the same
In SQL NULL = NULL isn’t true. Use IS NOT DISTINCT FROM instead of equals (=) for null-aware comparisons.