SHOW CREATE FUNCTION#
Synopsis#
SHOW CREATE FUNCTION function_name
Description#
Show the SQL statement that created the specified function.
Examples#
Show the SQL that can be run to create the meaning_of_life
User-defined functions:
SHOW CREATE FUNCTION meaning_of_life;
or
SHOW CREATE FUNCTION galaxy.functions.meaning_of_life;