查看当前数据库中所有库中表的行数

/ 0条评论 / 0 个点赞 / 1062人阅读
use information_schema;
select table_name,table_rows from tables where TABLE_SCHEMA = '<数据库名称>' order by table_rows desc;