查询存储引擎为MyISAM的表

select table_catalog
      ,table_schema
      ,table_name
      ,engine
from information_schema.tables
where engine='MyISAM';

猜你喜欢

转载自blog.csdn.net/w892824196/article/details/89350605