How to alter column in the existing table for the primary key and identity. I tried below query but showing Incorrect syntax near the keyword 'identity'.
alter table IAM_Software_Licence_Master
alter column SoftwareLicId int identity(1,1) primary key
How can I achieve this..