MySQL查看所有存储过程

select `name` from mysql.proc where db = 'your_db_name' and `type` = 'PROCEDURE'

show procedure status;

编程技巧