I am creating a trigger on update operation. However, while creating trigger in MySQL5 it is giving an error.
Trigger:
CREATE TRIGGER `test`.`Employee_Trigger_Update`
AFTER UPDATE ON `test`.`employee`
FOR EACH ROW
BEGIN
INSERT into `test`.`Employee_log`
(id,description)
VALUES
(old.id, CONCAT('Id with '
, old.id
,' is modified from '
, OLD.start_date
, ' to '
, NEW.start_date) );
Error
Error Code : 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 8 (0 ms taken)
If some one could please help it would be greatly appreciated