How can I check MySQL engine type for a specific table?

oneself picture oneself · Oct 17, 2008 · Viewed 332.5k times · Source

My MySQL database contains several tables using different storage engines (specifically myisam and innodb). How can I find out which tables are using which engine?

Answer

Greg picture Greg · Oct 17, 2008

SHOW TABLE STATUS WHERE Name = 'xxx'

This will give you (among other things) an Engine column, which is what you want.