Documentation Home
MySQL 8.4 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 Reference Manual  /  ...  /  Obtaining Information About Loadable Functions

7.7.2 获取有关可加载函数的信息

性能模式下,user_defined_functions 表包含了当前安装的可加载函数的信息:

SELECT * FROM performance_schema.user_defined_functions;

除了CREATE FUNCTION通过安装外部函数之外,mysql.func 系统表也列出了使用CREATE FUNCTION安装的可加载函数。user_defined_functions 表不仅列出了使用CREATE FUNCTION安装的可加载函数,还包括由组件或插件自动安装的可加载函数。这种差异使得user_defined_functions 在检查哪些可加载函数已安装时比 mysql.func 更为推荐。请参阅第 29.12.22.10 节,“user_defined_functions 表”