Skip to content

Instantly share code, notes, and snippets.

@emersondemetrio
Created January 23, 2019 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emersondemetrio/9cb2769ed1b134d8fc1a51efe4421069 to your computer and use it in GitHub Desktop.
Save emersondemetrio/9cb2769ed1b134d8fc1a51efe4421069 to your computer and use it in GitHub Desktop.
MYSQL Create Function Syntax
-- https://dev.mysql.com/doc/refman/8.0/en/create-procedure.html
DROP FUNCTION db.hello;
CREATE FUNCTION db.hello (s CHAR(20))
RETURNS CHAR(50) DETERMINISTIC
RETURN CONCAT('Hello, ',s,'!');
SELECT db.hello('eae')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment