views:

130

answers:

3

How to select the MySQL's engine name of some table. MyISAM or InnoDB. Can we do it by a simple sql query?

+1  A: 

Try

SHOW TABLE STATUS FROM db_name
pavium
+1  A: 

You can also use the INFOMATION_SCHEMA database:

SELECT ENGINE FROM TABLES WHERE TABLE_NAME LIKE 'words';
rutgerw