简体   繁体   English

看不到MYSQL UDF列表

[英]Can't see LIST of MYSQL UDFs

I need a way to see a list of MYSQL UDFs (User Defined Functions). 我需要一种方法来查看MYSQL UDF(用户定义函数)列表。 I use the phpmysql interface. 我使用phpmysql接口。

Thanks 谢谢

If you are looking for a list of stored procedures/functions, You can do: 如果要查找存储过程/功能的列表,则可以执行以下操作:

select * from information_schema.routines;

From here 这里

If you are looking for UDF's you can do: 如果您正在寻找UDF,可以执行以下操作:

select * from mysql.func;

From here 这里

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM