简体   繁体   中英

I am having error #1064 while creating trigger

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 ''

Here is my Trigger Statement

CREATE TRIGGER teq_after_insert AFTER INSERT ON table_name
FOR EACH
ROW 
BEGIN 
INSERT INTO rpt_process(

last_update,
updater,
table_id
)
VALUES (
NEW.last_updated, NEW.updater, NEW.iddev_est_reqs
);

please help me to solve this issue

wrap it with;

DELIMITER //


END; //

DELIMITER ;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM