Valeur de colonne par défaut dans SQL Identique à l'autre colonne

ALTER TABLE tablename ADD newcolumn type NOT NULL DEFAULT (0)
Go
Update tablename SET newcolumn = oldcolumn Where newcolumn = 0
Go
Lokesh003Coding