how to add column in existing table
how to add column in existing table with auto_incerment start with 1 and increment with 1
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Keertti Raj Thangavelu BabuPosted Mar 17, 2015, 1:22 AM
Note : if you used identity in existing table , you will not use identity again.
Note : Only one identity column per table is allowed.
Khargesh RajputPosted Mar 17, 2015, 12:11 AM
Add Id Int Identity(1, 1)