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

#切换到schema

use information_schema;

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

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

posted @   Questions张  阅读(2524)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示