Skip to main content

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