select table_schema,table_name,engine from information_schema.tables
where table_schema not in('information_schema','mysql','performance_schema','test')
and engine='InnoDB'
select table_schema,table_name,engine from information_schema.tables
where table_schema not in('information_schema','mysql','performance_schema','test')
and engine='InnoDB'