在 MySQL 中按引擎显示表
如何使用给定引擎(例如 InnoDB、MyISAM、FEDERATED)显示 MySQL 中的所有表?
How would I show all tables in MySQL with a given engine, e.g. InnoDB, MyISAM, FEDERATED?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
INFORMATION_SCHEMA.TABLES
桌子:Use
INFORMATION_SCHEMA.TABLES
table:如果您想要来自单个数据库的结果
If you want the results from a single database
其他例子在这里。
按引擎列出的所有表(系统表除外):
除引擎外的所有表(系统表除外):
Other examples here.
All tables by engine (except system tables):
All tables except engine (except system tables):
如果有些人有问题并且想查看哪个数据库是具有特定引擎的表
问候。
If some has problem and want to see in which DB is tables with specific engine
Regards.