SQL Server触发器将新行中的值插入另一个表 [英] Sql Server trigger insert values from new row into another table

查看:142
本文介绍了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_之前选择,但这似乎很臭。有更好的方法吗?

I can select by the last date_created but that seems smelly. Is there a better way?

推荐答案

尝试用于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触发器将新行中的值插入另一个表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆