MySQL中查询行数最多的表并且排序

#切换到schema

use information_schema;

#查询数据量最大的30张表 并排序

select table_name,table_rows from tables order by table_rows desc limit 30;

原文地址:https://www.cnblogs.com/QuestionsZhang/p/9510255.html