SQL SERVER SCOPE_IDENTITY函数的应用

--====================================
--SCOPE_IDENTITY()函数使用: 只返回插入到当前作用域中的值
--返回在当前会话中的任何表内所生成的最后一个标识值
--另外两个函数 floor ,Ceiling
--select floor(12.99) select Ceiling(12.01)
--====================================
if object_id(tempdb..#BatchPool) is  null
begin 
    create table #BatchPool
    (
        BatchID bigint identity,
        Value int
    )
end
declare @BatchID bigint 
insert into #BatchPool(Value) 
select floor(rand()*1000) 

select *
from #BatchPool

select @BatchID =  SCOPE_IDENTITY();

select @BatchID

--drop table #BatchPool

 

SQL SERVER SCOPE_IDENTITY函数的应用,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。