如何选择整个数据库并显示所有信息
是否可以从数据库中选择所有表(不知道它们的名称)并显示它们? 我的朋友有一个 mysql 服务器,但他没有安装 phpMyAdmin,他恳求我将他所有的 php-fusion 帐户转移到他的新 WordPress 博客。他根本不懂mysql... 有人有主意吗?
Is it possible to select all the tables from a database (not knowing their names) and displaying them?
My friend has a mysql server but he doesn't have phpMyAdmin installed and he's begging me to transfer all his php-fusion accounts to his new WordPress blog. He doesn't understand a thing with mysql...
Anyone got an idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
SHOW
和DESCRIBE
语句。这就是 phpMyAdmin 在代码中所做的全部事情。您的 SQL 用户应该拥有权限。列出所有表:
列出表定义:
查看 MySQL 了解更多详细信息。
Use the
SHOW
andDESCRIBE
statements. That's all phpMyAdmin is doing in the code. Your SQL user should have privileges.List all tables:
List table definition:
Check out MySQL for more details.