如果在插入失败后选择SCOPE_IDENTITY()会发生什么(SQL Server 2005)

时间:2009-03-20 20:06:01

标签: sql-server sql-server-2005

MSDN文档对此并不完全清楚。或许我读的不够好。

如果我执行插入(可以插入零行),然后是

;SELECT SCOPE_IDENTITY()

然后通过ExecuteScalar()...

调用该命令

如果Insert没有插入任何行,结果会是什么?

如果失败,我想停止,这样我就不会继续将子记录插入错误或错误的父ID。

3 个答案:

答案 0 :(得分:12)

如果没有插入Identity,SCOPE_IDENTITY()将返回null,您可以通过将SCOPE_IDENTITY()分配给变量然后检查变量内容来检查指定的条件。

插图

Create Proc SomeInsertToFail(@ID int OUTPUT)
as
Begin
    Select @ID =  Scope_Identity()
End
Declare @SOMEID int
Exec SomeInsertToFail @SOMEID OUTPUT
Select @SOMEID  --This will yield null

答案 1 :(得分:4)

NULL

source:在空白查询(也就是没有插入)

上做了一个SELECT scope_identity()

答案 2 :(得分:4)

这取决于当前范围内是否有成功插入。

declare @tb table (i int identity, ky varchar(100));

insert into @tb values('Success');

insert into @tb select ky from @tb where ky = 'Failure';

select SCOPE_IDENTITY();  -- returns 1
select * from @tb