Checking and Changing MySQL Table Storage Engines
To check which storage engine a table uses, query the information_schema database: SELECT ENGINE FROM information_schema.TABLES WHERE TABLE_SCHEMA = ‘database_name’ AND TABLE_NAME = ‘table_name’; Replace database_name and table_name with your actual values. You can also use the SHOW TABLE STATUS command for a quicker view: SHOW TABLE STATUS FROM database_name WHERE Name = ‘table_name’\G The…
