开发者

MySQL trigger results in error #1064

开发者 https://www.devze.com 2023-01-24 17:08 出处:网络
I trie开发者_运维技巧d writing this small trigger in MySQL, CREATE TRIGGER `leg` BEFORE INSERT ON `bckoff`

I trie开发者_运维技巧d writing this small trigger in MySQL,

CREATE TRIGGER `leg` BEFORE INSERT ON `bckoff` 
FOR EACH ROW BEGIN
 INSERT INTO `bckoff` SET `step`=1;
END;

after which I get this error.. I'm a newbie to MySQL.. so please help me out here..

#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 3 


Even after you fix this error - you'll get another one: you cannot modify the table that your trigger was created at.

Btw, this is how you should create this trigger:

delimiter |

CREATE TRIGGER `leg` BEFORE INSERT ON `bckoff` 
FOR EACH ROW BEGIN
 INSERT INTO `bckoff` SET `step`=1;
END;
|

delimiter ;
0

精彩评论

暂无评论...
验证码 换一张
取 消