<=>
(Lt EQ GT Sign) operador
Aplica-se a: Databricks SQL
Databricks Runtime
Retorna o mesmo resultado que o EQUAL(=)
para operandos não nulos, mas retorna true
se ambos forem NULL
, false
se um deles for NULL
. Este operador é sinónimo de expr1 is not distinct from expr2
.
Sintaxe
expr1 <=> expr2
Argumentos
-
expr1
: Uma expressão de tipo comparável. : Uma expressão que partilha um tipo menos comum com .
Devoluções
UM BOOLEAN.
Exemplos
> SELECT 2 <=> 2;
true
> SELECT 1 <=> '1';
true
> SELECT true <=> NULL;
false
> SELECT NULL <=> NULL;
true
-- By default string comparisons are trailing space sensitive
-- This can be overridden by using the COLLATE clause
> SELECT 'hello' <=> 'hello ' AS default,
'hello' <=> 'hello ' COLLATE UTF8_BINARY AS utf8_binary,
'hello' <=> 'hello ' COLLATE UTF8_BINARY_RTRIM AS rtrim;
default utf8_binary rtrim
------- ----------- -----
false false true
-- String comparisons are trailing space sensitive by default
-- Use the COLLATE clause to override the default
> SELECT 'world ' <=> 'world ' AS default,
'world ' <=> 'world ' COLLATE UTF8_BINARY AS utf8_binary,
'world ' <=> 'world ' COLLATE UTF8_BINARY_RTRIM AS rtrim;
default utf8_binary rtrim
------- ----------- -----
false false true