||
Sintassi
OR, ||
Spiegazione
OR logico. Se entrambi gli operandi sono diversi da NULL, il risultato sarà 1 se almeno uno degli operandi è diverso da zero, altrimenti sarà 0. Se uno degli operandi è NULL, il risultato sarà 1 se l'altro operando è diverso da zero, altrimenti NULL. Se entrambi gli operandi sono NULL, il risultato sarà NULL.
Esempi
MariaDB [(none)]> SELECT 1 || 1; +--------+ | 1 || 1 | +--------+ | 1 | +--------+ 1 row in set (0.00 sec) MariaDB [(none)]> SELECT 1 || 0; +--------+ | 1 || 0 | +--------+ | 1 | +--------+ 1 row in set (0.00 sec) MariaDB [(none)]> SELECT 0 || 0; +--------+ | 0 || 0 | +--------+ | 0 | +--------+ 1 row in set (0.00 sec) MariaDB [(none)]> SELECT 0 || NULL; +-----------+ | 0 || NULL | +-----------+ | NULL | +-----------+ 1 row in set (0.00 sec) MariaDB [(none)]> SELECT 1 || NULL; +-----------+ | 1 || NULL | +-----------+ | 1 | +-----------+ 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.