Mysql
 sql >> Database >  >> RDS >> Mysql

Restituisce un valore anche se nessun risultato

MySQL ha una funzione per restituire un valore se il risultato è nullo. Puoi usarlo su un'intera query:

SELECT IFNULL( (SELECT field1 FROM table WHERE id = 123 LIMIT 1) ,'not found');