SQL更改表字段为自增标识

Posted 一念如是

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL更改表字段为自增标识相关的知识,希望对你有一定的参考价值。

--删除主键约束
DECLARE @Constraint_Name varchar (200)
select @Constraint_Name = Name from dbo.sysobjects

where Xtype = ‘PK‘ and Parent_Obj =

(select [ID] from dbo.sysobjects

where id = object_id(N‘[表名称]‘)

and OBJECTPROPERTY(id, N‘IsUserTable‘) = 1)
if @Constraint_Name <> ‘‘
begin
alter table 表名称 drop constraint @Constraint_Name
end
--删除主键字段
-- 何问起 hovertree.com

declare @count int

select @count = count(*) from sysobjects a,syscolumns b

where a.id = b.id and b.name = ‘主键字段名‘ and a.Name = ‘表名称‘
if @count > 0
begin
alter table 表名称 drop column 主键字段名
end

--创建字段,主键,并自增
alter table 表名称 add 主键字段名 int identity(1,1) PRIMARY KEY














以上是关于SQL更改表字段为自增标识的主要内容,如果未能解决你的问题,请参考以下文章

sql server建表时怎么设置ID字段自增

DB2自增字段

sql server 如何修改一个字段为自增字段

pgsql字段自增

Navicat For SQL Server 修改字段为自增主键

Ef DbMigration 非主键字段 怎么设置为自增