我是靠谱客的博主 飞快裙子,最近开发中收集的这篇文章主要介绍mysql更新表触发器_mysql 触发器更新本表,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

mysql的触发器不能对本表进行update操作,如下面 的示例,直接报

Can’t update table ‘tbl’ in stored function/trigger because it is already used by statement which invoked this stored function/trigger 错误,

如果你在触发器里面对刚刚插入的数据进行了 insert/update, 则出现这个问题。因为会造成循环的调用.

create trigger test

before update on test

for each row

update test set NEW.updateTime = NOW() where id=NEW.ID;

END

应该使用set操作,而不是在触发器里使用 update,比如

create trigger test

before update on test

for each row

set NEW.updateTime = NOW();

END

若涉及多个表,则可采取声明局部变量的方式,如下所示

create Trigger updateExam

before  insert

on  hrt_exam_action_examinee for each ROW

BEGIN

declare personName varchar(50);

declare area varchar(50);

declare deptName varchar(200);

declare idCard varchar(50);

declare

最后

以上就是飞快裙子为你收集整理的mysql更新表触发器_mysql 触发器更新本表的全部内容,希望文章能够帮你解决mysql更新表触发器_mysql 触发器更新本表所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部