Created
May 20, 2025 21:29
-
-
Save mdestafadilah/0789e8df521ddabf0e9accf2231a87f4 to your computer and use it in GitHub Desktop.
UUID PROCEDURE MYSQL
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 PROCEDURE generate_uuid(OUT uuid_value VARCHAR(36)) | |
BEGIN | |
SET uuid_value = UUID(); | |
END // | |
DELIMITER ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment