MySQL Trigger AFTER INSERT ON 'table name' FOR EACH ROW WHEN (role_id = 3)
Posted
技术标签:
【中文标题】MySQL Trigger AFTER INSERT ON \'table name\' FOR EACH ROW WHEN (role_id = 3)【英文标题】:MySQL Trigger AFTER INSERT ON 'table name' FOR EACH ROW WHEN (role_id = 3)MySQL Trigger AFTER INSERT ON 'table name' FOR EACH ROW WHEN (role_id = 3) 【发布时间】:2017-10-13 03:44:24 【问题描述】:我想创建触发器,该触发器从表用户获取特定的角色 ID,并将触发器插入到表 get_roles_request 中并出现一些错误。 这里是结构表enter image description here
并得到一些像这样的错误 enter image description here
【问题讨论】:
我认为 mysql 或 MariaDB 都不允许WHEN
语句的WHEN
子句。
我在这里得到了参考***.com/questions/18375681/…
那是甲骨文我的朋友
你能给我一些想法来处理这个吗?
将条件移到触发器主体中
【参考方案1】:
Where 仅对 select 可用,when 仅对 case 可用。一个如果会做
DELIMITER $
CREATE TRIGGER insert_role_request AFTER INSERT ON users
FOR EACH ROW
BEGIN
if (new.role_id = 3) then
INSERT INTO get_roles_requests (user_id) VALUES (new.id);
end if;
END $
DELIMITER ;
【讨论】:
以上是关于MySQL Trigger AFTER INSERT ON 'table name' FOR EACH ROW WHEN (role_id = 3)的主要内容,如果未能解决你的问题,请参考以下文章
MySQL Trigger AFTER INSERT ON 'table name' FOR EACH ROW WHEN (role_id = 3)