Skip to content

Instantly share code, notes, and snippets.

@itomg
Last active August 29, 2015 13:56
How can I check MySQL engine type for a specific database?
SELECT `ENGINE` FROM `information_schema`.`TABLES` WHERE `TABLE_SCHEMA`='your_database_name' AND `TABLE_NAME`='your_table_name';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment