my memsql version 5.1
and trying to create the trigger it is not allowing is there any option ?
DELIMITER $$
CREATE TRIGGER Update_Information BEFORE UPDATE
ON employee FOR EACH ROW
BEGIN
:new.updated_date = CURRENT_DATE()
END $$
DELIMITER ;
SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TRIGGER Update_Information BEFORE UPDATE
what is issue here can some comment on this… Thanks in Advance