#所有数据库和所有表的信息
SELECT * from information_schema.tables;
#查出所有数据库
SELECT DISTINCT table_schema from information_schema.`TABLES`
#查出数某个据库中所有的表
SELECT DISTINCT table_name from information_schema.`TABLES` WHERE TABLE_SCHEMA='c_xxyw13'
#所有数据库和所有表的信息
SELECT * from information_schema.tables;
#查出所有数据库
SELECT DISTINCT table_schema from information_schema.`TABLES`
#查出数某个据库中所有的表
SELECT DISTINCT table_name from information_schema.`TABLES` WHERE TABLE_SCHEMA='c_xxyw13'