|
|
|
|
|
by kurtbuilds
523 days ago
|
|
If you want equality testing with nulls, you want to use `is (not) distinct from` instead of `=` and `<>` / `!=`. `1 is not distinct from NULL` => false `NULL is not distinct from NULL` => true `0 is not distinct from 1` => false |
|