概述
DROP TRIGGER IF EXISTS tt1;
CREATE TRIGGER tt2
AFTER INSERT ON t1
FOR EACH ROW
BEGIN
INSERT INTO `t2` (`t2_id`) VALUES (new.t1_id);
END;
上面这段代码在SQLyog中执行有错,错误信息如下:
查询:create trigger tt1 after insert on t1 for each row begin insert into `t2` (`t2_id`) values (new.t1_id)
错误代码: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 5
执行耗时 : 0 sec
传送时间 : 0 sec
总耗时 : 0.001 sec
--------------------------------------------------
查询:end
错误代码: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'end' at line 1
执行耗时 : 0 sec
传送时间 : 0 sec
总耗时 : 0 sec
然后我尝试着将 触发器中的insert into...这条语句注释掉,然后再执行就成功了;
再去改变触发器,将注释去掉,同样成功了;
请问为什么直接写就会报错呢?
最后
以上就是喜悦棉花糖为你收集整理的mysql触发器报错_mysql触发器实例:莫名其妙的错误?的全部内容,希望文章能够帮你解决mysql触发器报错_mysql触发器实例:莫名其妙的错误?所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复