--Adding Value with Default Value
ALTER TABLE TestTable
ADD ThirdCol INT NOT NULL DEFAULT(0)
GO
↧
Answer by wild coder for Add a column with a default value to an existing table in SQL Server
↧