How can I add a column with a default value to an existing table in SQL Server 2000 / SQL Server 2005?
Add a new column to a table:
ALTER TABLE [table] ADD Column1 Datatype
For example,
ALTER TABLE [test] ADD ID Int
If the user wants to make it auto incremented then:
ALTER TABLE [test] ADD ID Int IDENTITY(1,1) NOT NULL