Skip to content

Instantly share code, notes, and snippets.

@alexruzenhack
Last active November 27, 2018 14:33
Show Gist options
  • Save alexruzenhack/5a71f5d5074daa7e5618e5ed219e8991 to your computer and use it in GitHub Desktop.
Save alexruzenhack/5a71f5d5074daa7e5618e5ed219e8991 to your computer and use it in GitHub Desktop.
How to create a procedure on #mysql
CREATE DEFINER=`username`@`%` PROCEDURE `nome_da_procedure`()
BEGIN
Your_Query;
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment