SQL Server 使用 OUTPUT做数据操作记录

 

OUTPUT 子句

可以在数据进行增删改的时候,可以返回受影响的行。先准备一张表

create table #t
(
    id int identity primary key 
    ,name varchar(100)
)
go

 

1、insert ,影响行在inserted表里

insert into #t(name)
output inserted.*
values('a')


返回结果:

id name
----------- ----------------------------------------------------------------------------------------------------
1 a

批量插入:

insert into #t
output inserted.*
select 'b'

id name
----------- ----------------------------------------------------------------------------------------------------
2 b

 


 

2、delete ,影响行在deleted表里

delete from #t
output deleted.id
where id = 1

返回结果:

id
-----------
1

 


 

3、update,会将新数据放在inserted表里,老数据放在deleted表里

update #t
set name='new value'
OUTPUT deleted.id,deleted.name,inserted.id,inserted.name  
where id=2

id name id name
----------- ---------------------------------------------------------------------------------------------------- ----------- ----------------------------------------------------------------------------------------------------
2 d 2 new value

(1 row(s) affected)

 


 

4、OUTPUT INTO 支持将数据 插入到表里

DECLARE @outputTable TABLE(name1 varchar(100),name2 varchar(100))

update #t
set name='new value 3'
OUTPUT deleted.name,inserted.name into @outputTable
where id=2
 
SELECT * FROM @outputTable

(1 row(s) affected)
name1 name2
---------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------
new value new value 3

(1 row(s) affected)

 

 

https://docs.microsoft.com/zh-cn/previous-versions/sql/sql-server-2005/ms177564(v%3dsql.90)

 

posted on   王占波  阅读(405)  评论(0编辑  收藏  举报

编辑推荐:
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· AI与.NET技术实操系列(六):基于图像分类模型对图像进行分类

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示