插入时的 SQL Server 触发器以及如何引用插入的数据

SQL Server trigger on insert and how to reference the data that was inserted(插入时的 SQL Server 触发器以及如何引用插入的数据)
本文介绍了插入时的 SQL Server 触发器以及如何引用插入的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

高级 我有两个表需要镜像一些数据.我无法通过并更改所有代码以写入两者,所以我想我会使用 SQL 触发器将数据插入到第二个表中,只要将数据插入到第一个表中.这是我卡住的地方:

High level I have two tables that need to have some of the data mirrored. I can't go through and change all of the code to write to both so I thought I'd use a SQL trigger to insert data into the 2nd table anytime data is inserted into the 1st. Here is where I am stuck:

CREATE TRIGGER new_trigger_INSERT
ON old_table
FOR INSERT
INSERT INTO new_table (id, first_name, last_name)
VALUES () --This is where I'm lost, I need to insert some of the data from the insert that executed this trigger

感谢任何帮助,如果有更好的方法来完成此任务,请告诉我.

Any help is appreciated, also if there is a better way to accomplish this let me know.

推荐答案

使用'inserted'表:

CREATE TRIGGER new_trigger_INSERT 
ON old_table 
FOR INSERT 
INSERT INTO new_table (id, first_name, last_name) 
SELECT col1, col2, col3 FROM inserted

[PS:不要忘记确保您的触发器处理多行...]

[PS: Don't forget to ensure your triggers handle multiple rows...]

参考.创建触发器

好文章:探索 SQL Server 触发器

这篇关于插入时的 SQL Server 触发器以及如何引用插入的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)