mysql在phpmyadmin中显示用户定义的函数列表 [英] mysql display list of user defined functions in phpmyadmin

查看:496
本文介绍了mysql在phpmyadmin中显示用户定义的函数列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用phpmyadmin查看mysql数据库中的用户定义函数列表。

Mysql数据库已经从一台服务器迁移到另一台服务器,用户定义的自定义功能无法正常工作。我需要查看用户定义的函数列表来检查它们是否存在于数据库中。

 致命错误:db :: execute()无法执行:FUNCTION database.xxx不存在(SQL:SELECT Function字段)FROM用户在file.php上行xx 


解决方案

以下MySQL查询将列出用户定义的例程。

  select * from information_schema.routines; 


How can I view the list of user defined functions in mysql database using phpmyadmin.

Mysql database has been migrated from one server to another server and user defined custom functions are not working. I need to view the list of user defined function to check whether they exist in database or not.

Fatal error: db::execute() Could not execute: FUNCTION database.xxx does not exist (SQL: SELECT Function(field) FROM users in file.php on line xx

解决方案

The following MySQL query will list the user-defined routines.

select * from information_schema.routines;

这篇关于mysql在phpmyadmin中显示用户定义的函数列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆