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

SHOW TABLE STATUS WHERE Name="xxx"

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

Leave a Comment