mysql如何查詢資料庫的大小

2020-09-21 15:00:11

mysql查詢資料庫的大小的方法:1、查詢整個庫的大小,程式碼為【select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')】;2、查詢某個庫的大小,程式碼為【from informati】。

相關學習推薦:

mysql查詢資料庫的大小的方法:

1、查詢整個mysql資料庫,整個庫的大小;單位轉換為MB。

select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data  from information_schema.TABLES

e07c9ba4a756c319b7d35dba7c7329d.png

2、查詢mysql資料庫,某個庫的大小;

select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data 
  from information_schema.TABLES
 where table_schema = 'testdb'

90f4979023e417062906b526dd04be4.png

3、檢視庫中某個表的大小;

select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data 
  from information_schema.TABLES
 where table_schema = 'testdb'
   and table_name = 'test_a';

a0a2e8fe34e7f3ffecf4cb3b1edc9d9.png

4、檢視mysql庫中,test開頭的表,所有儲存大小;

select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data 
  from information_schema.TABLES
 where table_schema = 'testdb'
   and table_name like 'test%';

6f4874751419c47db898dcc82166601.png

以上就是mysql如何查詢資料庫的大小的詳細內容,更多請關注TW511.COM其它相關文章!