0
CREATE TRIGGER latest_user_task_status_trigger AFTER INSERT ON
    user_task_transaction_table FOR EACH ROW
BEGIN
    UPDATE
        user_task_table
    SET
        user_task_table.user_task_status=NEW.user_task_status
    WHERE
        user_task_table.id = NEW.user_task_id;
END

I have created above query but it gives me following error enter image description here

How can i resolve that.

Dharman
  • 30,962
  • 25
  • 85
  • 135
Thushara
  • 236
  • 3
  • 19

0 Answers0