Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何选择某些表的 MySQL 引擎名称。MyISAM 或 InnoDB。我们可以通过一个简单的 sql 查询来完成吗?
尝试
SHOW TABLE STATUS FROM db_name
您还可以使用 INFOMATION_SCHEMA 数据库:
SELECT ENGINE FROM TABLES WHERE TABLE_NAME LIKE 'words';