How to select the MySQL's engine name of some table. MyISAM or InnoDB. Can we do it by a simple sql query?
A:
Duplicate: http://stackoverflow.com/questions/213543/how-can-i-check-mysql-engine-type-for-a-specific-table
AvatarKava
2009-09-15 12:30:05
+1
A:
You can also use the INFOMATION_SCHEMA database:
SELECT ENGINE FROM TABLES WHERE TABLE_NAME LIKE 'words';
rutgerw
2009-10-05 19:36:05