View all procedures/functions
- To view all procedures/functions used in MySQL, use below query.
show procedure status;
show function status; - To view all procedures/functions used in selected database, use below query.
show procedure status where db = database() and type = 'procedure';
show function status where db = database() and type = 'function';
Comments
Post a Comment