Returns true if a value is null, false otherwise.
true
false
Unlike isblank, this only checks for null — empty strings and whitespace return false.
isblank
isnull(null) → true isnull(0) → false isnull('') → false isnull('hello') → false