nvl2
function
Applies to: Databricks SQL
Databricks Runtime
Returns expr2
if expr1
is not NULL
, or expr3
otherwise.
Arguments
expr1
: An expression of any type.expr2
: An expression of any type.expr3
: An expression that shares a least common type withexpr2
.
Returns
The result is least common type of expr2
and expr3
.
This function is a synonym for CASE WHEN expr1 IS NOT NULL expr2 ELSE expr3 END
.