SQL Server触发器-使用deletetime将已删除的记录插入到另一个表中
目前我有一个 Item 表和一个 ItemWaste 表。 两个表都会有一些字段,例如:名称、金额等。但是 ItemWaste 表还会多一个字段,即 TimeWasted。 我希望自动将 Item 表中的 DELETED 项目插入到 ItemWaste 表中,同时将删除时间插入到 TimeWasted 字段中。
我不知道该怎么做,是使用触发器吗???
希望能在这里得到一些帮助...感谢任何反馈...谢谢...
Currently I have a Item table and a ItemWaste table.
Both tables will have some fields, such as: Name, Amount, etc. But the ItemWaste table will have one more field, which is the TimeWasted.
I wish to automatically insert the DELETED item from the Item table to the ItemWaste table, and at the same time insert the deletion time to the TimeWasted field.
I got no idea how to do this, is it using trigger???
Hope can get some help here... Appreciate any feedback... Thanks....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当然 - 不是问题。
您需要一个基本的
AFTER DELETE
触发器 - 像这样:仅此而已!要记住的一点:触发器被称为每批一次 - 例如,如果您一次删除 100 行,它将被称为一次并且伪表
Deleted< /code> 将包含 100 行。触发器不会每行调用一次(这是一个常见的误解)。
Sure - not a problem.
You need a basic
AFTER DELETE
trigger - something like this:That's all there is! One point to remember: the trigger is called once per batch - e.g. if you delete 100 rows at once, it will be called once and the pseudo table
Deleted
will contain 100 rows. The trigger is not called once per row (a common misconception).是的,只需编写一个触发器,您就可以在另一个表中执行
删除
操作时插入
一行,请查看触发器Yes, simply by writting a trigger you can
insert
a row when andelete
action is performed in another table, have a look at Triggers创建触发器
创建触发器 send_message_trigger
插入或删除后
ON 源表
对于每一行
开始
声明性别值 VARCHAR(10);
结尾;
Create trigger
CREATE TRIGGER send_message_trigger
AFTER INSERT OR DELETE
ON source_table
FOR EACH ROW
BEGIN
DECLARE gender_value VARCHAR(10);
END;
最好将默认日期时间约束添加到表中,这样一旦插入记录,系统就会自动添加当前日期时间。
句法:
It better to add the Default datetime constraint to table so tat once record is inserted system will automatically add the current datetime.
Syntax: