Mysql查看存储过程函数视图触发器表

Posted ldsice

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql查看存储过程函数视图触发器表相关的知识,希望对你有一定的参考价值。

mysql查看所有存储过程,函数,视图,触发器,表
查询数据库中的存储过程和函数

方法一:
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 create procedure proc_name;
show create function func_name;

显示数据库的所有存储过程

select name from mysql.proc where db=’数据库名’;
mysql> select name from mysql.proc where db = ‘py1903‘;

select routine_name from information_schema.routines where routine_schema=‘数据库名‘;

show procedure status where db=‘数据库名‘;


SELECT * from information_schema.VIEWS //视图
SELECT * from information_schema.TABLES //表

查看触发器
方法一:
语法:SHOW TRIGGERS [FROM db_name] [LIKE expr]
实例:SHOW TRIGGERS\G //触发器
方法二:
对INFORMATION_SCHEMA数据库中的TRIGGERS表查询
mysql>SELECT * FROM triggers T WHERE trigger_name=”mytrigger” \G

以上是关于Mysql查看存储过程函数视图触发器表的主要内容,如果未能解决你的问题,请参考以下文章

MySQL-视图/存储过程/存储函数/触发器

mysql七:视图触发器事务存储过程函数

mysql之视图触发器事务存储过程函数

43 MySQL视图触发器事务存储过程函数

mysql之视图,触发器,存储过程,事物,函数

Mysql:视图触发器事务存储过程函数