How can I add a column with a default value to an existing table in SQL Server 2000 / SQL Server 2005?
ALTER TABLE tbl_table ADD int_column int NOT NULL DEFAULT(0)
From this query you can add a column of datatype integer with default value 0.