大家好,又见面了,我是全栈君,今天给大家准备了Idea注册码。
下面是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
推荐:http://www.cnblogs.com/roucheng/p/mssqlindex.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/120459.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...