Summary

NULL in a nutshell:

 // equality:
 A = B or A is null and B is null
 // inequality:
 A <> B
 or A is null and B is not null
 or A is not null and B is null