insert into output使用


declare @t table (logId int,customerId int,amount int)

insert into log( customerId,amount)

output

inserted.Id,inserted.CustomerId,inserted.Amount

into @t

values(@coustomerId,@amount)

 

select * from @t

 

可以不使用 @@identity了

 

類似的還有delete output ,update output 可以把原記錄保存到日志里,而不需要單獨查詢一次了,非常好用


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM