根据我的要求在sql中创建触发器
以下是我的表,
table1
=========
id col1 col2
=====================================
1 firstrow firstrow2
2 secrow secrow2
table2
===========
id orignalvalue updatedvalue
===============================================
2 secrow2 Secondrow2
当我的 table1 值更新时,我需要一个触发器,在 table2 中创建一行,其中包含 id、原始值和更新值...这就像一个 LOG 表。
The following is my tables
table1
=========
id col1 col2
=====================================
1 firstrow firstrow2
2 secrow secrow2
table2
===========
id orignalvalue updatedvalue
===============================================
2 secrow2 Secondrow2
i need a trigger when my table1 values are updated,a row to be created in the table2 with the id,originalvalue and the updatevalue in it...This is just like an LOG table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您基本上是在查看
AFTER UPDATE
触发器,将OLD
和NEW
值插入到table2
中,但并不知道您正在使用哪个数据库,语法可能有所不同,或者甚至可能不可能。You're basically looking at an
AFTER UPDATE
trigger to insert theOLD
andNEW
values intotable2
but without knowing which DB you're using, the syntax may differ or it might not even be possible.