Skip to content

Instantly share code, notes, and snippets.

@Eduard-gan
Created October 31, 2018 05:53
Show Gist options
  • Save Eduard-gan/c8cfc481399bbc77b59ba59ae4bac7ba to your computer and use it in GitHub Desktop.
Save Eduard-gan/c8cfc481399bbc77b59ba59ae4bac7ba to your computer and use it in GitHub Desktop.
MariaDB: Show all tables engines for database
SELECT TABLE_NAME,
ENGINE
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'YOUR DB NAME';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment