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

#切换到schema

use information_schema;

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

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

posted @ 2018-08-21 11:13  Questions张  阅读(2471)  评论(0编辑  收藏  举报