2

我的触发器如下所示:

create trigger money after update on `things`
for each row
begin
SET @c1 = (SELECT sum(`thing_cost`) from `things`);
SET @c2 = (SELECT sum(`salary`) from `dude_base`);
UPDATE `current` SET `curr_cash` = @c1 * @c2 / 100
end;
$$

但我需要添加如下内容:

WHERE id2 from things = id2 from current AND WHERE id1 from dude_base = is1 from current

而不是“SELECT sum”的东西,因为我需要验证每一行。

而且我很难做到这一点而没有任何语法错误..

我正在使用最新的 phpmyadmin 开发 MySQL。


我也试过看这样的东西:

UPDATE table SET val=X WHERE someproperty = 1;
UPDATE table SET val=Y WHERE someproperty = 2;

但它仍然没有成功。

4

0 回答 0