0
1
llucycodes42
This code will return the name, parameter list, and comment for the function that is being executed.
Shortcut: s_func_list
SELECT `name`, `param_list`, `comment` FROM `mysql`.`proc` WHERE `db`=DATABASE() AND `type` = 'FUNCTION';
0
1
llucycodes42
This code will return the name, parameter list, and comment for the function that is being executed.
Shortcut: s_func_list
SELECT `name`, `param_list`, `comment` FROM `mysql`.`proc` WHERE `db`=DATABASE() AND `type` = 'FUNCTION';