To get a list of stored procedures:
> SHOW PROCEDURE STATUS;
List of functions:
> SHOW FUNCTION STATUS;
Get the syntax (declaration) of an existing procedure:
> SHOW CREATE PROCEDURE myproc;
where instead of myproc use the procedure name
Applies to: MySQL 5.x
Comments