<=>
(lt eq gt sign) operator
Applies to: Databricks SQL
Databricks Runtime
Returns the same result as the EQUAL(=)
for non-null operands, but returns true
if both are NULL
, false
if one of the them is NULL
.
Arguments
expr1
: An expression of a comparable type.expr2
: An expression that shares a least common type withexpr1
.