ISNULL
Categories: Conditional, Boolean
ISNULL
Determines if an expression is NULL. Returns true if <expression> is NULL, and false otherwise. Alias for the operator
IS NULL.
Syntax
ISNULL(expression Any type) → boolean
- expression: Expression of any type to evaluate.
Examples
ISNULL exampleselect ISNULL('dremio')
-- False
select 'dremio' IS NULL
-- False