Home >Database >Mysql Tutorial >MySQL view all stored procedures

MySQL view all stored procedures

大家讲道理
大家讲道理Original
2016-11-12 09:30:341521browse

SELECT `name` FROM mysql.proc where db = 'your_db_name' and `type` = 'PROCEDURE'
 
show procedure status;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn