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