程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 改變自增字段的初始值

改變自增字段的初始值

編輯:關於SqlServer


1。identity 函數中不能用變量作參數
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)
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved