mysql 檢視 庫 表 大小
#查詢所有資料的大小
use information_schema;
select concat(sum(data_length+index_length)/(1024*1024),'mb') 庫內表大小 from tables;
#檢視指定資料庫的大小,比如說:資料庫test
use information_schema;
select concat(round(sum(data_length/1024/1024),2),'mb') as data from tables where table_schema='test';
檢視指定資料庫的表的大小,比如說:資料庫test 中gaodemap_poi表
use information_schema;
select concat(round(sum(data_length/1024/1024),2),'mb') as data from tables where table_schema='win_bizdata' and table_name='gaodemap_poi';
檢視mysql庫大小,表大小,索引大小
進入information schema 資料庫 存放了其他的資料庫的資訊 use information schema 檢視所有庫的大小 mysql use information schema database changed mysql select concat round sum data...
mysql 檢視資料庫 表 大小
記錄備忘 1 進去指定schema 資料庫 存放了其他的資料庫的資訊 use information schema 2 查詢所有資料的大小 select concat round sum data length 1024 1024 2 mb as data from tables 3 檢視指定資料庫...
mysql檢視資料庫大小或者表大小
要想知道每個資料庫的大小的話,步驟如下 1 進入information schema 資料庫 存放了資料庫的資訊 use information schema 2 查詢所有資料庫的大小 select concat round sum data length 1024 1024 2 mb as dat...