Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you add a column, with a default value, to an existing table in SQL Server 2000/2005?

share|improve this question

17 Answers

up vote 557 down vote accepted
ALTER TABLE {TABLENAME} 
ADD {COLUMNNAME} {TYPE} {NULL|NOT NULL} 
CONSTRAINT {CONSTRAINT_NAME} DEFAULT {DEFAULT_VALUE}
share|improve this answer
26  
Keep in mind that if the column is nullable, then null will be the value used for existing rows. – Richard Collette Jan 31 '12 at 15:43
1  
@RichardCollette what is nullable column. If my data type is int or varchar, it always takes null value for the existing rows even if I specify a default value. Does that mean the default value goes towards new records only? – Nick Feb 3 '12 at 15:04
1  
@Thecrocodilehunter Nullable column means that you can insert Null for the columns value. If it's not a nullable column, you have to insert some value of that data type. So, for existing records, Null will be inserted in them and in new records, your default value will be inserted unless otherwise specified. Make sense? – Yatrix Feb 29 '12 at 16:42
4  
I like this answer a little better than dbugger's because it explicitly names the default constraint. A default constraint is still created using dbugger's syntax, except its name is auto-generated. Knowing the exact name is handy when writing DROP-CREATE scripts. – Walter Stabosz Mar 23 '12 at 12:43
This is not correct. If you specify a default value using the DEFAULT constraint, it will be used as value for existing rows, at least in SQL Server 2008 – Vertigo Jun 18 '12 at 11:04
show 1 more comment
ALTER TABLE Protocols
ADD ProtocolTypeID int NOT NULL DEFAULT(1)
GO
share|improve this answer
1  
The problem with that answer is that the default value is only valid for new records. Existing records will still have NULL value. – Roee Gavirel Nov 9 '11 at 10:22
31  
You will find that is not the case. Otherwise the constraint would be violated. – dbugger Nov 9 '11 at 16:50
6  
Columns in existing rows are filled with the default value. A little empirical test will prove it. – dbugger Nov 9 '11 at 16:57
6  
Just to clarify - if "NOT NULL" is omitted from the command, the value for existing rows will NOT be updated and will remain NULL. If "NOT NULL" is included in the command, the value for existing rows WILL be updated to match the default. – Stack Man Aug 14 '12 at 22:11

Beware when the column you are adding has a NOT NULL constraint, yet does not have a DEFAULT constraint (value). The ALTER TABLE statement will fail in that case if the table has any rows in it. The solution is to either remove the NOT NULL constraint from the new column, or provide a DEFAULT constraint for it.

share|improve this answer
ALTER TABLE <table name> 
ADD <new column name> <data type> NOT NULL
GO
ALTER TABLE <table name> 
ADD CONSTRAINT <constraint name> DEFAULT <default value> FOR <new column name>
GO
share|improve this answer
ALTER TABLE MYTABLE ADD MYNEWCOLUMN VARCHAR(200) DEFAULT 'SNUGGLES'
share|improve this answer
12  
"SNUGGLES"....???? hehehe. What kind of database to you operate?? ;-) – Spudley Aug 5 '12 at 15:05

WITH VALUES handles the NOT NULL part...

ALTER TABLE table
ADD column BIT NOT NULL  
CONSTRAINT Constraint_name DEFAULT 0 WITH VALUES
share|improve this answer
This is a key point. It's easy to assume a column with a DEFAULT constraint will always have a value - that is, not be NULL, even though NOT NULL isn't specified. – Bill Brinkley Nov 27 '12 at 19:29

-- add a column with a default DateTime
-- to capture when each record is added.

ALTER TABLE myHappyTableName  
ADD RecordAddedDate smalldatetime NULL DEFAULT(GetDate())  
GO 
share|improve this answer
ALTER TABLE {TABLENAME} 
ADD {COLUMNNAME} {TYPE} {NULL|NOT NULL} 
CONSTRAINT {CONSTRAINT_NAME} DEFAULT {DEFAULT_VALUE}

Link: http://msdn.microsoft.com/en-us/library/aa275462%28v=sql.80%29.aspx

share|improve this answer

The most basic version with two lines only

ALTER TABLE MyTable
ADD MyNewColumn INT NOT NULL DEFAULT 0
share|improve this answer
ALTER TABLE ADD ColumnName {Column_Type} Constraint

Here is a link that has all of the alter table syntax: http://msdn.microsoft.com/en-us/library/ms190273.aspx

share|improve this answer
your link is incorrect – mehul9595 Feb 18 '11 at 7:15

You can do the thing with T-SQL by following way.

ALTER TABLE {TABLENAME} 
ADD {COLUMNNAME} {TYPE} {NULL|NOT NULL} 
CONSTRAINT {CONSTRAINT_NAME} DEFAULT {DEFAULT_VALUE}

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.

USE AdventureWorks;
EXEC sp_msforeachtable 
'PRINT ''ALTER TABLE ? ADD Date_Created DATETIME DEFAULT GETDATE();''' ;
share|improve this answer

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.

share|improve this answer

Alternatively you can add a default without having to explicitly name the constraint.

ALTER TABLE [schema].[tablename] ADD  DEFAULT ((0)) FOR [columnname]

If you have an issue with existing default constraints when creating this constraint then they can be removed by.

alter table [schema].[tablename] drop constraint [constraintname]
share|improve this answer

set default value to exits column into table

alter table emp add image_ext varchar(30)CONSTRAINT DF_TestTable_NewCol DEFAULT 'gif' NOT NULL  
share|improve this answer

If you want to add the column in an existing table do the following

alter table tablename 
add nameofcolumn datatypes
share|improve this answer
Doesn't answer the question. – nrodic Nov 9 '12 at 3:26

If You Want To change the index order of your table column then use case query

select *from emp order by case when  name='Anand Gupta' then 1 else 0 end
share|improve this answer

Mainly using SQL Server Enterprise Manager - it's simple. :D

share|improve this answer
3  
It will quickly time out before completing these kinds of changes if there's any decent amount of rows in the table... – Oskar Duveborn Feb 19 '10 at 14:26
2  
Also, you don't have that option if you are making changes to a Sql Azure database. A lot of designer support is missing :(. – Dusda Jun 28 '11 at 6:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.