jadenquinn

dyd

Nov 13th, 2017
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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');
Add Comment
Please, Sign In to add comment