1

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

Max
  • 2,293
  • 5
  • 32
  • 48
  • Duplicate: http://stackoverflow.com/questions/213543/how-can-i-check-mysql-engine-type-for-a-specific-table – AvatarKava Sep 15 '09 at 12:30

2 Answers2

1

Try

SHOW TABLE STATUS FROM db_name
pavium
  • 14,808
  • 4
  • 33
  • 50
1

You can also use the INFOMATION_SCHEMA database:

SELECT ENGINE FROM TABLES WHERE TABLE_NAME LIKE 'words';
rutgerw
  • 13
  • 2