我是靠谱客的博主 缓慢毛巾,最近开发中收集的这篇文章主要介绍触发器在插入时更新此条新记录 错误it is already used by statement which invoked this stored functiontrigger的解决方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题:

create trigger InsertUser

begin

update users

set user_power='[resource]'

where user_id=new.user_id;

end;

 

当触发器执行过程中出现了错误:我使用的是Mysql5.0

Can't update table 'users' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.

 

请问这里是怎么回事?

 

解决方法:

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

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

create trigger InsertUser

begin

set new.user_power='[resource]'

end;

另外这里必须在插入之前来执行该触发器。

最后

以上就是缓慢毛巾为你收集整理的触发器在插入时更新此条新记录 错误it is already used by statement which invoked this stored functiontrigger的解决方法的全部内容,希望文章能够帮你解决触发器在插入时更新此条新记录 错误it is already used by statement which invoked this stored functiontrigger的解决方法所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部