Pouvez-vous mettre à jour NULL dans 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]