Search code examples
mysqldatabasestored-procedurescommand-linemysql-function

Show Procedures/Functions MySQL Command Line


How can I see the list of the stored procedures or stored functions in mysql command line like SHOW TABLES; or SHOW DATABASES; commands.


Solution

  • SHOW PROCEDURE STATUS;
    SHOW FUNCTION STATUS;