SHOW TABLES;
SELECT table_name FROM information_schema.tables where table_schema = DATABASE();
在后台,这两个命令都只会检查当前所选数据库中是否存在 .frm 文件。
在 MySQLWorkbench 中,您必须确保选择了默认模式。否则,你不应该拿回任何东西。从 mysql 客户端的角度来看,这是有效地发生的事情:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.5.12-log MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> select database();
+------------+
| database() |
+------------+
| NULL |
+------------+
1 row in set (0.00 sec)
mysql> show tables;
ERROR 1046 (3D000): No database selected
mysql> SELECT table_name FROM information_schema.tables where table_schema = DATABASE();
Empty set (0.00 sec)
mysql>
您用于登录 PHPmyAdmin/Workbench 的帐户可能没有所需表的权限。当您在 MySQL 监控控制台中使用相同的登录时,您是否看到所需的表?尝试使用更高权限的帐户登录并再次查看。
运行这些命令完全是同义词:
在后台,这两个命令都只会检查当前所选数据库中是否存在 .frm 文件。
在 MySQLWorkbench 中,您必须确保选择了默认模式。否则,你不应该拿回任何东西。从 mysql 客户端的角度来看,这是有效地发生的事情:
在 MySQLWorkbench 中尝试以下操作:
在这些步骤之后,选定的数据库应该是可见的。
试试看 !!!