查询表数据记录的排行

佚名 / 2023-07-28 / 原文

show DATABASES;
use information_schema;
show tables;
desc tables;
select table_name,table_rows from tables order by table_rows desc limit 10;