查看mysql所有库中表总数量
摘要:
查看所有:select count(*) tables ,table_schema from information_schema.tables group by table_schema; 查询单个:select count(*) tables ,table_schema from informa 阅读全文
posted @ 2019-11-26 09:49 shenzen_小白 阅读(1173) 评论(0) 推荐(0) 编辑