How are triggers created in MySQL?

Questions by sripri   answers by sripri

Showing Answers 1 - 3 of 3 Answers

bhavin parikh

  • Aug 23rd, 2007
 

CREATE TRIGGER `tgr_name` AFTER UPDATE ON `addresses` FOR EACH ROW begin
    update products set countryName = new.countryName where products.shippingAddressId = old.id;
end;

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions