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

Sostituisci null con 0 in MySQL

Sì, utilizzando COALESCE .

SELECT COALESCE(null_column, 0) AS null_column FROM whatever;

COALESCE scorre l'elenco di valori che gli dai e restituisce il primo valore non nullo.