存储过程/函数列表 Mysql 命令行
如何在 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;
相关文章