改变自增字段的初始值_SQL SERVER数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

改变自增字段的初始值

作者:黑客防线网安SQL维护基地 来源:黑客防线网安SQL维护基地 浏览次数:0

本篇关键词:初始改变selectfrom
黑客防线网安网讯:1。identity 函数中不能用变量作参数 declare @a int select @a=190 select identity(int,@a,1) as id,* into #temp from tablename select * from #temp 上述不正确,可以用如下方法 decla...
1identity 函数中不能用变量作参数
declare @a int
select @a=190
select identity(int,@a,1) as id,* into #temp from tablename
select * from #temp
上述不正确可以用如下方法
declare @a int
set @a=190
//首先把结构赋值过去
select identity(int,1,1) as id,* into #temp1from tablename where 1=2
//改变初始值
dbcc checkident(#temp1,reseed,@a)
insert into #temp1 select * from tablename
select * from #temp1
2要想让自增字段从1开始可以
dbcc checkident(tablename,reseed,0)
    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-10466-1.html
网站维护教程更新时间:2012-03-21 03:05:13  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer