Quantcast
Channel: How to add a column with a default value to an existing table in SQL Server? - Stack Overflow
Viewing all articles
Browse latest Browse all 91

Answer by Chirag Thakar for Add a column with a default value to an existing table in SQL Server

$
0
0

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

Viewing all articles
Browse latest Browse all 91

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>