Mysql查询某database的所有表的记录数
程序员文章站
2022-03-15 14:53:43
...
需求:
查询某固定db中所有表的记录数,然后排序
实现:
select table_name,table_rows from information_schema.tables where table_schema='yourdb' order by table_rows desc;
上一篇: linux下获取某文件的总行数