用output得到刚插入(删除)数据的标识列值

create table #temp(fid int,fnumber varchar(50),fname varchar(50))

insert into tz_pem_group -- 所要插入数据的表
output inserted.fid,inserted.fnumber,inserted.fname into #temp
values('1213','2120')

select * from #temp
drop table #temp

你可能感兴趣的:(用output得到刚插入(删除)数据的标识列值)