1 Answer
use the below methods...
mysql> SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA ='database_name';
or
SHOW TABLE STATUS from 'db_name';
Your Answer