摘要: #切换到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张 阅读(2485) 评论(0) 推荐(1) 编辑