How do you add a column, with a default value, to an existing table in SQL Server 2000/2005?
|
|
|||||||||||||||||||
|
|
|||||||||||||||||
|
|
Beware when the column you are adding has a |
|||
|
|
|
||||
|
|
|
|||||
|
|
|
||||
|
|
-- add a column with a default DateTime
|
||||
|
|
Link: http://msdn.microsoft.com/en-us/library/aa275462%28v=sql.80%29.aspx |
|||
|
|
|
The most basic version with two lines only
|
|||
|
|
Here is a link that has all of the alter table syntax: http://msdn.microsoft.com/en-us/library/ms190273.aspx |
||||
|
|
|
You can do the thing with T-SQL by following way.
As well as you can use SQL Server Management Studio also by right clicking table in Design menu setting default value to table. And futher more if you want to add same column(if not exists) to all tables in databse then use.
|
|||
|
|
|
Using 2008R2 I went to the design mode in a test db and added my two columns using the designer and made the settings with the gui then, the infamous right-click gives the option "Generate Change Script"! Bang up pops a little window with you guessed it, the properly formatted guaranteed to work change script. Hit the easy button. |
|||
|
|
|
Alternatively you can add a default without having to explicitly name the constraint.
If you have an issue with existing default constraints when creating this constraint then they can be removed by.
|
|||
|
|
|
set default value to exits column into table
|
||||
|
|
|
If you want to add the column in an existing table do the following
|
||||
|
|
|
If You Want To change the index order of your table column then use case query
|
||||
|
|
|
Mainly using SQL Server Enterprise Manager - it's simple. :D |
|||||||||
|
