SQL 输出子句是否可以返回未插入的列?

编程入门 行业动态 更新时间:2024-10-27 02:18:18
本文介绍了SQL 输出子句是否可以返回未插入的列?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我对我的数据库做了一些修改,我需要将旧数据迁移到新表.为此,我需要从原始表 (Practice) 中获取数据来填充一个表 (ReportOptions),并填充第二个中间表 (PracticeReportOption).

I've made some modifications to my database and I need to migrate the old data to the new tables. For that, I need to fill a table (ReportOptions) taking the data from the original table (Practice), and fill a second intermediate table (PracticeReportOption).

ReportOption (ReportOptionId int PK, field1, field2...) Practice (PracticeId int PK, field1, field2...) PracticeReportOption (PracticeReportOptionId int PK, PracticeId int FK, ReportOptionId int FK, field1, field2...)

我进行了查询以获取从实践移动到 ReportOptions 所需的所有数据,但我无法填充中间表

I made a query to get all the data I need to move from Practice to ReportOptions, but I'm having trouble to fill the intermediate table

--Auxiliary tables DECLARE @ReportOption TABLE (PracticeId int /*This field is not on the actual ReportOption table*/, field1, field2...) DECLARE @PracticeReportOption TABLE (PracticeId int, ReportOptionId int, field1, field2) --First I get all the data I need to move INSERT INTO @ReportOption SELECT P.practiceId, field1, field2... FROM Practice P --I insert it into the new table, but somehow I need to have the repation PracticeId / ReportOptionId INSERT INTO ReportOption (field1, field2...) OUTPUT @ReportOption.PracticeId, --> this is the field I don't know how to get inserted.ReportOptionId INTO @PracticeReportOption (PracticeId, ReportOptionId) SELECT field1, field2 FROM @ReportOption --This would insert the relationship, If I knew how to get it! INSERT INTO @PracticeReportOption (PracticeId, ReportOptionId) SELECT PracticeId, ReportOptionId FROM @ReportOption

如果我可以在 OUTPUT 子句中引用不在目标表上的字段,那就太好了(我想我不能,但我不确定).关于如何满足我的需求的任何想法?

If I could reference a field that is not on the destination table on the OUTPUT clause, that would be great (I think I can't, but I don't know for sure). Any ideas on how to accomplish my need?

推荐答案

您可以使用 MERGE 而不是 insert 来做到这一点:

You can do this by using MERGE instead of insert:

所以替换这个

INSERT INTO ReportOption (field1, field2...) OUTPUT @ReportOption.PracticeId, --> this is the field I don't know how to get inserted.ReportOptionId INTO @PracticeReportOption (PracticeId, ReportOptionId) SELECT field1, field2 FROM @ReportOption

MERGE INTO ReportOption USING @ReportOption AS temp ON 1 = 0 WHEN NOT MATCHED THEN INSERT (field1, field2) VALUES (temp.Field1, temp.Field2) OUTPUT temp.PracticeId, inserted.ReportOptionId, inserted.Field1, inserted.Field2 INTO @PracticeReportOption (PracticeId, ReportOptionId, Field1, Field2);

关键是在合并搜索条件中使用永远不会为真 (1 = 0) 的谓词,因此您将始终执行插入操作,但可以访问源表和目标表中的字段.

The key is to use a predicate that will never be true (1 = 0) in the merge search condition, so you will always perform the insert, but have access to fields in both the source and destination tables.

这是我用来测试它的完整代码:

Here is the entire code I used to test it:

CREATE TABLE ReportOption (ReportOptionID INT IDENTITY(1, 1), Field1 INT, Field2 INT) CREATE TABLE Practice (PracticeID INT IDENTITY(1, 1), Field1 INT, Field2 INT) CREATE TABLE PracticeReportOption (PracticeReportOptionID INT IDENTITY(1, 1), PracticeID INT, ReportOptionID INT, Field1 INT, Field2 INT) INSERT INTO Practice VALUES (1, 1), (2, 2), (3, 3), (4, 4) MERGE INTO ReportOption r USING Practice p ON 1 = 0 WHEN NOT MATCHED THEN INSERT (field1, field2) VALUES (p.Field1, p.Field2) OUTPUT p.PracticeId, inserted.ReportOptionId, inserted.Field1, inserted.Field2 INTO PracticeReportOption (PracticeId, ReportOptionId, Field1, Field2); SELECT * FROM PracticeReportOption DROP TABLE ReportOption DROP TABLE Practice DROP TABLE PracticeReportOption

更多阅读,以及我所知道的关于这个主题的所有信息的来源是 这里

更多推荐

SQL 输出子句是否可以返回未插入的列?

本文发布于:2023-10-18 12:06:59,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1504185.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:子句   SQL

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!