Mysql
 sql >> Database >  >> RDS >> Mysql

Errore durante la creazione di MySQL Trigger

Nella tua query hai aggiunto il terminatore di query ; con il delimitatore $$ in due posti. La query seguente dispone di terminatori e delimitatori di query appropriati.

DELIMITER $$
DROP TRIGGER IF EXISTS ca_passwd_trigger; -- removed the delimiter $$ after the terminator ;
CREATE TRIGGER ca_passwd_trigger BEFORE UPDATE ON users
FOR EACH ROW
BEGIN
    IF ((NEW.passwd <=> OLD.passwd) = 0) THEN
        SET NEW.passwd_modified_at = NOW();
    END IF;
END$$  -- removed the terminator ; before the delimiter $$
DELIMITER ;