MSDN文档对此并不完全清楚。或许我读的不够好。
如果我执行插入(可以插入零行),然后是
;SELECT SCOPE_IDENTITY()
然后通过ExecuteScalar()...
调用该命令如果Insert没有插入任何行,结果会是什么?
如果失败,我想停止,这样我就不会继续将子记录插入错误或错误的父ID。
答案 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