【发布时间】:2023-04-06 23:32:01
【问题描述】:
所以基本上我有这 3 个表及其列,
tbl_equipment ----> (equip_id,equip_price)
tbl_equiporder ----> (equip_id,proj_no,qty)
tbl_project -----> (proj_no,proj_balance)
在tbl_equiporder 表中插入值时,我需要编写一个更新proj_balance 的触发器。
需要用到的公式是
balance = balance -(price*qty)
我需要从tbl_equiporder 获取数量值,同时为同一个提到的表编写插入语句,以便我可以使用它来更新tbl_project 中的余额
我编写了以下触发器来更新 proj_balance 在插入tbl_equiporder 表时
CREATE OR REPLACE TRIGGER trigger_equiporder
AFTER INSERT OR UPDATE OR DELETE ON tbl_equiporder FOR EACH ROW
DECLARE
t_equipid NUMBER(4);
t_price NUMBER(4);
t_qty NUMBER(4);
t_balance NUMBER(4);
BEGIN
SELECT equip_id, equip_price INTO t_equipid, t_price
FROM tbl_equipment@fit5043a
WHERE equip_id = :new.equip_id;
SELECT equip_qty INTO t_qty
FROM tbl_equiporder
WHERE equip_id = :new.equip_id;
SELECT proj_balance INTO t_balance
FROM tbl_project
WHERE proj_no = :new.proj_no;
t_balance := t_balance - (t_price * t_qty);
UPDATE tbl_project
SET proj_balance = t_balance
WHERE proj_no = :new.proj_no;
END;
当我写插入语句时
INSERT INTO tbl_equiporder VALUES (1, 101, 1);
它抛出了以下错误
Error starting at line 1 in command:
INSERT INTO tbl_equiporder VALUES (1,101,'11-sep-13',1000,1)
Error report:
SQL Error: ORA-04091: table S24585181.TBL_EQUIPORDER is mutating, trigger/function may not see it
ORA-06512: at "S24585181.TRIGGER_EQUIPORDER", line 9
ORA-04088: error during execution of trigger 'S24585181.TRIGGER_EQUIPORDER'
04091. 00000 - "table %s.%s is mutating, trigger/function may not see it"
*Cause: A trigger (or a user defined plsql function that is referenced in
this statement) attempted to look at (or modify) a table that was
in the middle of being modified by the statement which fired it.
*Action: Rewrite the trigger (or function) so it does not read that table.
【问题讨论】: