日期:2014-05-18 浏览次数:20478 次
select scope_identity()
------解决方案--------------------
select @@IDENTITY
或者select max(id) from tb
------解决方案--------------------
方法 1--IDENT_CURRENT( 'table_name' ) 2--SCOPE_IDENTITY() 3--@@Identity
------解决方案--------------------
--返回作用域中最后一个identity select scope_identity() --@@IDENTITY 不限于特定的作用域 select @@IDENTITY select max(id) from tb --IDENT_CURRENT 函数返回任何会话和作用域中为特定表生成的标识值 select IDENT_CURRENT(‘table’)
------解决方案--------------------
http://blog.csdn.net/dba_huangzj/article/details/7685162有各种ID的用法及区别。