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 insert_guid | |
| BEFORE INSERT ON my_table | |
| FOR EACH ROW | |
| BEGIN | |
| SET NEW.guid_key = UUID(); | |
| END; | |
| # | |
| DELIMITER ; |