UPDATE Same Row After UPDATE in Trigger(在触发器中更新后更新同一行)
问题描述
我希望 epc 列始终为 earnings/clicks.我正在使用 AFTER UPDATE 触发器来完成此操作.因此,如果我要向该表添加 100 次点击,我希望 EPC 自动更新.
I want the epc column to always be earnings/clicks. I am using an AFTER UPDATE trigger to accomplish this. So if I were to add 100 clicks to this table, I would want the EPC to update automatically.
我正在尝试:
CREATE TRIGGER `records_integrity` AFTER UPDATE ON `records` FOR EACH ROW SET
NEW.epc=IFNULL(earnings/clicks,0);
并收到此错误:
MySQL said: #1362 - Updating of NEW row is not allowed in after trigger
我也尝试使用 OLD 但也出现错误.我可以在 BEFORE 之前做,但是如果我添加了 100 次点击,它将使用之前的 # 次点击作为触发器(对吗?)
I tried using OLD as well but also got an error. I could do BEFORE but then if I added 100 clicks it would use the previous # clicks for the trigger (right?)
我应该怎么做才能做到这一点?
What should I do to accomplish this?
编辑 - 将在此上运行的查询示例:
EDIT - An example of a query that would be run on this:
UPDATE records SET clicks=clicks+100
//EPC should update automatically
推荐答案
您不能在 after 更新触发器中更新表中的行.
You can't update rows in the table in an after update trigger.
也许你想要这样的东西:
Perhaps you want something like this:
CREATE TRIGGER `records_integrity` BEFORE UPDATE
ON `records`
FOR EACH ROW
SET NEW.epc=IFNULL(new.earnings/new.clicks, 0);
在触发器内部,您可以访问OLD 和NEW.OLD 是记录中的旧值,NEW 是新值.在 before 触发器中,NEW 值是写入表的内容,因此您可以修改它们.在 after 触发器中,NEW 值已经写入,因此无法修改.我认为 MySQL 文档 很好地解释了这一点.
Inside a trigger, you have have access to OLD and NEW. OLD are the old values in the record and NEW are the new values. In a before trigger, the NEW values are what get written to the table, so you can modify them. In an after trigger, the NEW values have already been written, so they cannot be modified. I think the MySQL documentation explains this pretty well.
这篇关于在触发器中更新后更新同一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在触发器中更新后更新同一行
基础教程推荐
- 在多列上分布任意行 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
