Home  »  CodeGuidesProgrammingSnippetsTechnology   »   How to Check Database Engine in MySQL Example

How to Check Database Engine in MySQL Example

Posted: October 3, 2022 | by Michael Bright

Use this code to check the database engine in MySQL:

SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = 'database';

Found this article interesting? Follow Brightwhiz on Facebook, Twitter, and YouTube to read and watch more content we post.