Mysql – List of Stored Procedures/Functions Mysql Command Line

command lineMySQLstored-procedures

How can I see the list of the stored procedures or stored functions in mysql command line like show tables; or show databases; commands.

Best Answer

SHOW PROCEDURE STATUS;
SHOW FUNCTION STATUS;