码迷,mamicode.com
首页 > 数据库 > 详细

SQL SERVER SCOPE_IDENTITY函数的应用

时间:2014-07-31 16:45:26      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   ar   div   sql   应用   

--====================================
--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函数的应用,布布扣,bubuko.com

SQL SERVER SCOPE_IDENTITY函数的应用

标签:style   blog   color   使用   ar   div   sql   应用   

原文地址:http://www.cnblogs.com/enjoyco/p/3880952.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!