本文共 345 字,大约阅读时间需要 1 分钟。
大家经常把自增Id设为主键,有时自增Id值还有其他用途,所以需要返回,下面介绍返回自增Id的实现方法。
declare @ScoresId int;
insert into dbo.ScoreList2 values(2016001,66,66,66)不声明变量也可以实现返回自增Id的功能:
insert into Sys_Users values('测试1','123qwerdf',1,1,1);
select @@IDENTITY as userId;当select @@Identity前面有多个连续的插入语句时,返回的自增Id是距离其最近的insert语句插入数据时所产生的。
转载于:https://blog.51cto.com/zhaoyingyatou/2141265