摘要:
查询数据库中的存储过程和函数方法一: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;//函数查看存储过程或函数的创建代码show crea 阅读全文
posted @ 2013-11-11 15:45
jshaibozhong
阅读(368)
评论(0)
推荐(0)
浙公网安备 33010602011771号