MySql查询数据库全部表名

    1. select table_name from information_schema.tables where table_schema='数据库名'

    MySql查询某个连接下的某个数据库全部表名

    select table_name from information_schema.tables where table_schema='数据库名' and table_type='base table';