La funzione IF
Sintassi
IF(espr1,espr2,espr3)
Spiegazione
Se espr1 è vera (expr1 <> 0 AND expr1 <> NULL), IF() restituisce espr2; altrimenti restituisce expr3. IF() restituisce un valore numerico o stringa, a seconda del contesto in cui è usato.
Nota: Esiste anche una istruzione IF, che non è la funzione IF()
spiegata in questa pagina.
Esempi
MariaDB [(none)]> SELECT IF(1>2,2,3); +-------------+ | IF(1>2,2,3) | +-------------+ | 3 | +-------------+ 1 row in set (0.00 sec)
MariaDB [(none)]> SELECT IF(1<2,'sì','no'); +--------------------+ | IF(1<2,'sì','no') | +--------------------+ | sì | +--------------------+ 1 row in set (0.00 sec)
MariaDB [(none)]> SELECT IF(STRCMP('test','test1'),'no','sì'); +---------------------------------------+ | IF(STRCMP('test','test1'),'no','sì') | +---------------------------------------+ | no | +---------------------------------------+ 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.