mysql查詢資料庫的大小

2021-10-20 18:43:00 字數 955 閱讀 7721

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

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

select concat(round(sum(data_length/1024/1024),2),'mb') as data  from information_schema.tables
2、查詢mysql資料庫,某個庫的大小。

select concat(round(sum(data_length/1024/1024),2),'mb') as data

from information_schema.tables

where table_schema = 'testdb'

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';

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%';

舉例:查詢某個庫的大小。

如何查詢mysql資料庫大小

要想知道每個資料庫的大小的話,步驟如下 1 進入information schema 資料庫 存放了其他的資料庫的資訊 use information schema 2 查詢所有資料的大小 select concat round sum data length 1024 1024 2 mb as d...

資料庫的大小查詢

1 進入information schema 資料庫 存放了其他的資料庫的資訊 use information schema 2 查詢所有資料的大小 select concat round sum data length 1024 1024 2 mb as data from tables 3 檢視...

查詢MySQL資料庫所占用大小

查詢mysql資料庫裡面的所有資料庫各自占用大小 select table schema,concat truncate sum data length 1024 1024,2 mb as data size,concat truncate sum index length 1024 1024,2 ...