摘要: 查询数据库中的存储过程和函数方法一: select `name` from mysql.proc where db = 'your_db_name' and `type` = 'PROCEDURE' //存储过程 select `name` from mysql.proc where db = 'your_db_name' and `type` = 'FUNCTION' //函数方法二: show procedure status; //存储过程 show function status; //函数查看存储过程或函数的创建代码sh 阅读全文
posted @ 2014-01-23 15:51 jshaibozhong 阅读(10230) 评论(0) 推荐(0) 编辑