Created
November 3, 2021 09:31
-
-
Save slav123/df1568b43a13f55291e4eed29855f9cd to your computer and use it in GitHub Desktop.
trigger mysql to update items
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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