查询mysql某个库中 各个表的行数

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_27409289/article/details/85615964

select table_name,table_rows from information_schema.tables  where table_schema='数据库名' order by table_rows desc;

猜你喜欢

转载自blog.csdn.net/qq_27409289/article/details/85615964