mysql 查询某个库里表的数量
在mysql中有个数据库information_schema下的表tables记录了所有数据库中所有的表相关信息
TABLE_SCHEMA 数据库名称
SELECT COUNT( * ) FROM information_schema.tables WHERE TABLE_SCHEMA = '库名'
原文链接:http://www.cnblogs.com/liuqidongprogram/p/5821162.html
mysql 查看某个库下面某个表的所有列字段, columnName
select COLUMN_NAME as columnName from information_schema.COLUMNS where table_name = '{表名}' and table_schema = '{库名}';