columna nula a 0 en mysql
UPDATE [table]
SET [column]=0
WHERE [column] IS NULL;
Arrogant Armadillo
UPDATE [table]
SET [column]=0
WHERE [column] IS NULL;
COALESCE(null_column, 0)