How would I show all tables in MySQL with a given engine, e.g. InnoDB, MyISAM, FEDERATED?
Asked
Active
Viewed 7.2k times
4 Answers
139
Use INFORMATION_SCHEMA.TABLES
table:
SELECT table_name FROM INFORMATION_SCHEMA.TABLES
WHERE engine = 'InnoDB'

ChssPly76
- 99,456
- 24
- 206
- 195
-
4You might also want the schema with that, so the query would look like: SELECT TABLE_SCHEMA, TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE engine = 'InnoDB' – Dan Bowling Aug 16 '16 at 01:42
82
If you want the results from a single database
SELECT TABLE_NAME FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'dbname' AND engine = 'InnoDB';

Alvin
- 2,533
- 33
- 45
-
1I marked this because you probably want to look at a certain schema only – Csaba Toth Nov 29 '16 at 23:04
6
Other examples here.
All tables by engine (except system tables):
SELECT TABLE_SCHEMA as DbName ,TABLE_NAME as TableName ,ENGINE as Engine
FROM information_schema.TABLES
WHERE ENGINE = 'MyISAM' -- or InnoDB or whatever
AND TABLE_SCHEMA NOT IN('mysql','information_schema','performance_schema');
All tables except engine (except system tables):
SELECT TABLE_SCHEMA as DbName ,TABLE_NAME as TableName ,ENGINE as Engine
FROM information_schema.TABLES
WHERE ENGINE != 'MyISAM' -- or InnoDB or whatever
AND TABLE_SCHEMA NOT IN('mysql','information_schema','performance_schema');

MTK
- 3,300
- 2
- 33
- 49
1
If some has problem and want to see in which DB is tables with specific engine
SELECT
(SELECT group_concat(TABLE_NAME)
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'database1'
AND engine = 'MyIsam'
) as database1,
(SELECT group_concat(TABLE_NAME)
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'database2'
AND engine = 'MyIsam'
) as database2,
(SELECT group_concat(TABLE_NAME)
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'database3'
AND engine = 'MyIsam'
) as database3;
Regards.

Stevan Tosic
- 6,561
- 10
- 55
- 110