程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> 更多數據庫知識 >> 得到自增列的下一個會插入的id

得到自增列的下一個會插入的id

編輯:更多數據庫知識

復制代碼 代碼如下:
declare @Table_name varchar(60)
set @Table_name = 'Pay_inputpay';
Select so.name Table_name, --表名字
sc.name Iden_Column_name, --自增字段名字
ident_current(so.name) curr_value, --自增字段當前值
ident_incr(so.name) incr_value, --自增字段增長值
ident_seed(so.name) seed_value --自增字段種子值
from sysobjects so
Inner Join syscolumns sc
on so.id = sc.id
and columnproperty(sc.id, sc.name, 'IsIdentity') = 1
Where upper(so.name) = upper(@Table_name)
--@Table_name是傳入參數 表名 curr_value這個就是准備插入的id

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved