时间:2021-07-01 10:21:17 帮助过:8人阅读
在mysql的trigger和function中不能出现select * from table形式的查询,因为其会返回一个结果集;而这在mysql的trigger和function中是不可接受的,但是在存储过程中可以。在 trigger和function中可以使用select ... into ...形式的查询。
NEW 是新值。
OLD 是旧值
INSERT 只有NEW
UPDATE有NEW和OLD
DELETE只有OLD
http://www.2cto.com/database/201301/186392.html
mysql error -- 1415 not allowed to return a result set from a trigger
标签: