is null
operator
Applies to:
Databricks SQL
Databricks Runtime
Tests whether expr
is NULL
.
Returns
A BOOLEAN.
If not
is specified this operator is a synonym for isnotnull(expr)
.
Otherwise the operator is a synonym for isnull(expr)
.
Examples
> SELECT 1 is null;
false
> SELECT 1 is not null;
true