mysql表名查询sql

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

原文地址:https://www.cnblogs.com/davidwang456/p/6027643.html