Last active
August 29, 2015 13:56
How can I check MySQL engine type for a specific database?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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