Mysql查询一个数据库中有数据的表名

    1. select TABLE_NAME
    2. from information_schema.TABLES
    3. where TABLE_SCHEMA = '需要查询的数据库名' and TABLE_ROWS > 0;