修改记录遇到触发器报错的解决方法

--修改记录遇到触发器报错的解决方法,values后写要修改的表名,改完后执行删除语句

INSERT INTO tmp_disable_trigger (table_name) VALUES ('t_rebatsale_h');
update t_rebatsale_h set CHECKER3=20893559 where CHECKER3=111111299 ;
--以上两句要同时执行
delete from tmp_disable_trigger where table_name='t_rebatsale_h'
原文地址:https://www.cnblogs.com/CandiceW/p/10341648.html