<=>
Sintassi
<=>
Spiegazione
Uguale a prova di NULL. Questo operatore esegue una comparazione di uguaglianza come l'operatore =, ma restituisce 1 invece di NULL se entrambi gli operandi sono NULL, e 0 invece di NULL se solo un operando è NULL.
Esempi
MariaDB [(none)]> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL; +---------+---------------+------------+ | 1 <=> 1 | NULL <=> NULL | 1 <=> NULL | +---------+---------------+------------+ | 1 | 1 | 0 | +---------+---------------+------------+ 1 row in set (0.00 sec) MariaDB [(none)]> SELECT 1 = 1, NULL = NULL, 1 = NULL; +-------+-------------+----------+ | 1 = 1 | NULL = NULL | 1 = NULL | +-------+-------------+----------+ | 1 | NULL | NULL | +-------+-------------+----------+ 1 row in set (0.00 sec) MariaDB [(none)]>
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.