I'm having problems updating row in a table with value selected from another table in MySQL Trigger. My Trigger looks like this
CREATE TRIGGER update_user_last_login
AFTER INSERT or UPDATE ON last FOR EACH ROW
BEGIN
DECLARE _user_id INTEGER;
SELECT user_id INTO _user_id FROM user_profile WHERE user_name = NEW.username;
UPDATE user set last_login = NEW.seconds WHERE id = _user_id;
END
I'm getting error message:
ERROR 1054 (42S22): Unknown column '_user_id' in 'where clause'
Could somebody point me to the right direction please?
Thank you very much, Milan.
Try as bellow
You could cut out the intermediate variable like this...
This is a syntax error on the compound trigger event (
INSERT or UPDATE
). Try:I don't think mysql supports compound events in the same trigger. You could create two triggers, one for after insert and one for after update. Those two triggers can call the same code in duplicate or call a common stored procedure.