Skip to content

Instantly share code, notes, and snippets.

@slav123
Created November 3, 2021 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slav123/df1568b43a13f55291e4eed29855f9cd to your computer and use it in GitHub Desktop.
Save slav123/df1568b43a13f55291e4eed29855f9cd to your computer and use it in GitHub Desktop.
trigger mysql to update items
DELIMITER $$
CREATE TRIGGER on_items_update
AFTER INSERT
ON order_items FOR EACH ROW
BEGIN
UPDATE orders SET total_photos=total_photos+1 WHERE id=new.order_id;
END$$
DELIMITER ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment