Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Returns expr1
if cond
is true
, or expr2
otherwise. This function is a synonym for iff
function.
if(cond, expr1, expr2)
cond
: A BOOLEAN expression.expr1
: An expression of any type.expr2
: An expression that shares a least common type withexpr1
.
The result is the common maximum type of expr1
and expr2
.
> SELECT if(1 < 2, 'a', 'b');
a