2013-10-22 33 views

回答

1

如果你正在尋找的存儲過程/函數的列表,你可以這樣做:

select * from information_schema.routines; 

here

如果您正在尋找UDF的,你可以這樣做:

select * from mysql.func; 

here