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');
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');