Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I need a way to see a list of MYSQL UDFs (User Defined Functions). I use the phpmysql interface.
Thanks
如果您正在寻找存储过程/函数的列表,您可以执行以下操作:
select * from information_schema.routines;
从这里
如果您正在寻找 UDF,您可以执行以下操作:
select * from mysql.func;