我写了一个类似这样的触发器:
CREATE TRIGGER `update_after_itemPresent` AFTER INSERT ON `bus_repair`
FOR EACH ROW begin
IF NEW.unit <> `item_present`.`unit` THEN
update item_present
set unit = unit-new.unit
where item_present.item_group_id = new.item_group_id;
END IF;
end
但是当我在表中插入新行时,bus_repair
它会给出一个错误:
未知表 item_present 在字段列表中
知道如何解决这个问题吗?