COALESCE

Stai visualizzando una vecchia versione di questo article. Visualizza la versione più recente.

Sintassi

COALESCE(valore, ...)

Spiegazione

Restituisce il primo valore non-NULL della lista, o NULL se non vi sono argomenti non-NULL. Almeno un argomento deve essere passato.

Esempi

MariaDB [(none)]> SELECT COALESCE(NULL,1);
+------------------+
| COALESCE(NULL,1) |
+------------------+
|                1 |
+------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT COALESCE(NULL,NULL,NULL);
+--------------------------+
| COALESCE(NULL,NULL,NULL) |
+--------------------------+
|                     NULL |
+--------------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> 

Commenti

Sto caricando i commenti......
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.