存储过程/函数列表 Mysql 命令行

2021-11-20 00:00:00 command-line mysql stored-procedures

如何在 mysql 命令行中查看存储过程或存储函数的列表,例如 show tables;show databases; 命令.

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

推荐答案

SHOW PROCEDURE STATUS;
SHOW FUNCTION STATUS;

相关文章