1.打开数据库information_schema
2.新建并运行查询语句:select table_name,table_rows from tables order by table_rows desc limit 10;
3.查询结果中的table_rows列即为表的数据量。这里最大的是75万,只是十万级,未达到百万级。
MySQL查看数据库量级
最新推荐文章于 2024-09-14 16:46:22 发布
1.打开数据库information_schema
2.新建并运行查询语句:select table_name,table_rows from tables order by table_rows desc limit 10;
3.查询结果中的table_rows列即为表的数据量。这里最大的是75万,只是十万级,未达到百万级。