Other examples are here.
All tables using the engine (except system tables):
SELECT TABLE_SCHEMA as DbName ,TABLE_NAME as TableName ,ENGINE as Engine FROM information_schema.TABLES WHERE ENGINE = 'MyISAM'
All tables except the mechanism (except system tables):
SELECT TABLE_SCHEMA as DbName ,TABLE_NAME as TableName ,ENGINE as Engine FROM information_schema.TABLES WHERE ENGINE != 'MyISAM'
MTK Jun 20 '17 at 12:31 on 2017-06-20 12:31
source share