identity(标识)列,也有很多人称之为自增列,在sql server 2000中,标识列通过identity来定义,下面是与获取最后插入记录的标识值有关的函数的一个示例说明
sql server 中,可以使用 scope_identity()、 @@identity 、 ident_current() 来取得最后插入记录的值值,它们的区别在于:
scope_identity() 返回插入到同一作用域中的 identity 列内的最后一个 identity 值。一个作用域就是一个模块——存储过程、触发器、函数或批处理。因此,如果两个语句处于同一个存储过程、函数或批处理中,则它们位于相同的作用域中。
@@identity 返回在当前会话的所有表中生成的最后一个标识值
ident_current() 返回为任何会话和任何作用域中的指定表最后生成的标识值
下面以一个示例来说明它们的区别
-- a) 示例代码
-- ===========================================
-- 创建测试表
-- ===========================================
use tempdb
go
create table t1(id int identity,col int)
insert t1 select 1
union all select 2
create table t2(id int identity,col int)
go
create trigger tr_insert_t2 on t2
for insert
as
insert t1 select 3
go
-- ===========================================
-- 测试三个函数..1
-- ===========================================
insert t2 values(1)
select [scope_identity()]=scope_identity(),
[@@identity][email protected]@identity,
[ident_current() for t1]=ident_current(n't1'),
[ident_current() for t2]=ident_current(n't2')
/*--结果
scope_identity() @@identity ident_current() for t1 ident_current() for t2
------------------ ------------ -------------------------- -----------------------
1 3 3 1
(所影响的行数为 1 行)
--*/
go
-- ===========================================
-- 测试三个函数..2
-- ===========================================
insert t1 values(10)
select [scope_identity()]=scope_identity(),
[@@identity][email protected]@identity,
[ident_current() for t1]=ident_current(n't1'),
[ident_current() for t2]=ident_current(n't2')
/*--结果
scope_identity() @@identity ident_current() for t1 ident_current() for t2
------------------ ------------ -------------------------- -----------------------
4 4 4 1
(所影响的行数为 1 行)
--*/
go
-- ===========================================
-- 测试三个函数..3
-- ** 开启一个新连接,执行下面的代码 **
-- ===========================================
select [scope_identity()]=scope_identity(),
[@@identity][email protected]@identity,
[ident_current() for t1]=ident_current(n't1'),
[ident_current() for t2]=ident_current(n't2')
/*--结果
scope_identity() @@identity ident_current() for t1 ident_current() for t2
------------------ ------------ -------------------------- -----------------------
null null 4 &n
--===========================================
-- 删除测试环境
-- ===========================================
drop table t1,t2
-- b) 代码结果说明
从上面的代码可以看到:
ident_current() 始终返回指定表最后插入的标识值
@@identity 返回当前会话的标识值,无论是否在同一个作用域,在测试1、2中,可以看到它返回的是触发器中插入记录的标识值,而在测试3中,因为当前会话无插入记录,所以返回null
scope_identity() 返回当前会话同一作用域的标识值,所以在测试1、2中,它返回的值不受触发器的影响,而在测试3中,因为当前会话无插入记录,所以返回null
新闻热点
疑难解答