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
{{< codeheader "ISNULL example" >}}
select ISNULL('dremio')
-- False
{{< codeheader "ISNULL example" >}}
select 'dremio' IS NULL
-- False