mysql查看存储过程函数

查询数据库中的存储过程和函数mysql        select `name` from mysql.proc where db = 'xx' and `type` = 'PROCEDURE'   //存储过程        select `name` from mysql.proc where db = 'xx' and `type` = 'FUNCTION'   //函数sql      
相关文章
相关标签/搜索