0

如何更改现有表中的主键和标识列。我尝试了以下查询,但显示Incorrect syntax near the keyword 'identity'.

alter table IAM_Software_Licence_Master
alter column SoftwareLicId int  identity(1,1) primary key

我怎样才能做到这一点..

4

1 回答 1

0

由于我不知道表结构或是否将其用作外键,因此很难说在您端更改此问题有什么问题。但下面的链接应该给你你需要的一切: http: //social.msdn.microsoft.com/Forums/sqlserver/en-US/04d69ee6-d4f5-4f8f-a115-d89f7bcbc032/how-to-alter-column-to -身份11

于 2013-07-02T20:19:25.190 回答