Skip to content

Instantly share code, notes, and snippets.

@mdestafadilah
Created May 20, 2025 21:29
Show Gist options
  • Save mdestafadilah/0789e8df521ddabf0e9accf2231a87f4 to your computer and use it in GitHub Desktop.
Save mdestafadilah/0789e8df521ddabf0e9accf2231a87f4 to your computer and use it in GitHub Desktop.
UUID PROCEDURE MYSQL
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