首页 > 代码库 > 如何查询mysql数据库中哪些表的数据量最大

如何查询mysql数据库中哪些表的数据量最大

1.mysql的information_schema下有存储数据库基本信息的数据字典表,可以通过查询tables表来获得
所需要的表相关信息。
 mysql> show databases;

技术分享

2. use  information_schema;

技术分享

3. show tables;

技术分享

4. desc tables;

技术分享

5 select table_name,table_rows from  tables order by table_rows desc limi 10;



如何查询mysql数据库中哪些表的数据量最大