I tried to create trigger AFTER UPDATE via phpmyadmin with body INSERT:
BEGIN
INSERT INTO updatespersonal SET (user, time, type, operator) VALUES (NEW.idDetailToUsers, CURRENT_TIMESTAMP(), "detailtousers", "update");
END
But I get error, reason that I can not understand:
1064 on line 2
May be problem in double quotes?