Add a identity column in the table in a database

alter table CustomersTest add ID int identity


CustomerTest is the table name and ID is the column name

Comments