Advertisement
Guest User

Untitled

a guest
Nov 13th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. SELECT TABLE_SCHEMA as DbName ,TABLE_NAME as TableName ,ENGINE as Engine
  2. FROM information_schema.TABLES 
  3. WHERE ENGINE = 'MyISAM' -- or InnoDB
  4. AND TABLE_SCHEMA NOT IN('mysql','information_schema','performance_schema');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement