Sql Server trigger insert values from new row into another table(Sql Server 触发器将新行中的值插入到另一个表中)
问题描述
我有一个使用 asp.net 成员资格架构的站点.我想在 aspnet_users 表上设置一个触发器,将新行的 user_id 和 user_name 插入到另一个表中.
I have a site using the asp.net membership schema. I'd like to set up a trigger on the aspnet_users table that inserted the user_id and the user_name of the new row into another table.
如何从最后一次插入中获取值?
How do I go about getting the values from the last insert?
我可以在最后一个 date_created 之前选择,但这看起来很臭.有没有更好的办法?
I can select by the last date_created but that seems smelly. Is there a better way?
推荐答案
试试这个 for sql server
try this for sql server
CREATE TRIGGER yourNewTrigger ON yourSourcetable
FOR INSERT
AS
INSERT INTO yourDestinationTable
(col1, col2 , col3, user_id, user_name)
SELECT
'a' , default , null, user_id, user_name
FROM inserted
go
这篇关于Sql Server 触发器将新行中的值插入到另一个表中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Sql Server 触发器将新行中的值插入到另一个表中


基础教程推荐
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01