¿Puedes actualizar NULL en SQL?
UPDATE [table]
SET [column]=0
WHERE [column] IS NULL;
Arrogant Armadillo
UPDATE [table]
SET [column]=0
WHERE [column] IS NULL;
Update table set ColumnName = NULL where [Filter for record here]