MySQL Forums
Forum List  »  Newbie

Re: How to do use two INSERT in one TRIGGER?
Posted by: Peter Brawley
Date: April 19, 2018 10:19AM

create trigger xafterins after insert on x for each row
begin
  insert into a ... ;
  insert into b ... ;
end;

Options: ReplyQuote


Subject
Written By
Posted
Re: How to do use two INSERT in one TRIGGER?
April 19, 2018 10:19AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.