mysql 查看数据库中所有表的记录数

use information_schema;


select table_name,table_rows from tables
where TABLE_SCHEMA = 'fxd-main'
order by table_rows desc;

posted on 2017-07-03 20:11  adolfmc  阅读(372)  评论(0编辑  收藏  举报