欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;