0

I need a way to see a list of MYSQL UDFs (User Defined Functions). I use the phpmysql interface.

Thanks

4

1 回答 1

1

如果您正在寻找存储过程/函数的列表,您可以执行以下操作:

select * from information_schema.routines;

这里

如果您正在寻找 UDF,您可以执行以下操作:

select * from mysql.func;

这里

于 2013-10-22T08:38:42.377 回答