IF EXISTS (SELECT * FROM sys.all_objects WHERE type_desc= N'主键名')
begin
--删除主键
alter table 表名 drop constraint 主键名
alter table 表名 add constraint 主键名 primary key (字段名)
end
IF EXISTS (SELECT * FROM sys.all_objects WHERE type_desc= N'主键名')
begin
--删除主键
alter table 表名 drop constraint 主键名
alter table 表名 add constraint 主键名 primary key (字段名)
end