我的MySQL数据库包含几个使用不同存储引擎的表 (特别是myisam和innodb)。我怎么知道是哪几张桌子呢 使用哪个引擎?


当前回答

或者运行这个:

show table status;

这将列出数据库上的所有表和相关详细信息。

其他回答

转到information_schema数据库,你会发现'tables'表,然后选择它;

Mysql >使用information_schema; Mysql> select table_name, from tables;

或者运行这个:

show table status;

这将列出数据库上的所有表和相关详细信息。

除了前面的例子外,你还可以从information_schema db中通过标准查询得到如下信息:

use information_schema;

select NAME from INNODB_TABLES where NAME like "db_name%";
SHOW CREATE TABLE <tablename>\G

它的格式会比输出更好吗

SHOW CREATE TABLE <tablename>;

\G技巧对于许多其他查询/命令也很有用。

mysqlshow -i <database_name>

将显示特定数据库的所有表的信息。

mysqlshow -i <database_name> <table_name> 

只对一个特定的表这样做。