Categories: Boolean
IS [NOT] NULL
Determines if an expression is NULL or not NULL. Alias for the function ISNULL/ISNOTNULL.
Syntax
IS [NOT] NULL(expression any) → boolean
- expression: Expression of any Dremio supported data type to evaluate.
Examples
ISNULL function returns true if
select ISNULL('dremio')
-- False
ISNULL operator returns true if
select 'dremio' IS NULL
-- False
IS [NOT] NULL(expression any) → boolean
- expression: Expression of any Dremio supported data type to evaluate.
Examples
ISNOTNULL function returns true if
select ISNOTNULL('dremio')
-- True
ISNOTNULL operator returns true if
select 'dremio' IS NOT NULL
-- False
Was this page helpful?
Glad to hear it! Thank you for your feedback.
Sorry to hear that. Thank you for your feedback.