导航

mysql 获取指定数据库所有表行数

Posted on 2020-05-07 08:54  高山老王  阅读(627)  评论(0)    收藏  举报

use information_schema;


select table_name,table_rows from tables where TABLE_SCHEMA = '_bjca' order by table_rows desc;