本文主要給大家介紹MySQL查看數(shù)據(jù)庫表容量大小的命令語句講解,希望可以給大家補(bǔ)充和更新些知識(shí),如有其它問題需要了解的可以持續(xù)在創(chuàng)新互聯(lián)行業(yè)資訊里面關(guān)注我的更新文章的。
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比吉首網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式吉首網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋吉首地區(qū)。費(fèi)用合理售后完善,十多年實(shí)體公司更值得信賴。select table_schema as '數(shù)據(jù)庫',sum(table_rows) as '記錄數(shù)',sum(truncate(data_length/1024/1024, 2)) as '數(shù)據(jù)容量(MB)',sum(truncate(index_length/1024/1024, 2)) as '索引容量(MB)'from information_schema.tablesgroup by table_schemaorder by sum(data_length) desc, sum(index_length) desc;
select table_schema as '數(shù)據(jù)庫', table_name as '表名', table_rows as '記錄數(shù)',truncate(data_length/1024/1024, 2) as '數(shù)據(jù)容量(MB)',truncate(index_length/1024/1024, 2) as '索引容量(MB)'from information_schema.tablesorder by data_length desc, index_length desc;
例:查看mysql庫容量大小
select table_schema as '數(shù)據(jù)庫',sum(table_rows) as '記錄數(shù)',sum(truncate(data_length/1024/1024, 2)) as '數(shù)據(jù)容量(MB)',sum(truncate(index_length/1024/1024, 2)) as '索引容量(MB)'from information_schema.tableswhere table_schema='mysql';
例:查看mysql庫各表容量大小
select table_schema as '數(shù)據(jù)庫', table_name as '表名', table_rows as '記錄數(shù)',truncate(data_length/1024/1024, 2) as '數(shù)據(jù)容量(MB)',truncate(index_length/1024/1024, 2) as '索引容量(MB)'from information_schema.tableswhere table_schema='mysql'order by data_length desc, index_length desc;
本文講解了如何通過MySQL查看數(shù)據(jù)庫表容量大小,更多相關(guān)內(nèi)容請(qǐng)關(guān)注創(chuàng)新互聯(lián)。
相關(guān)推薦:
關(guān)于php str_getcsv把字符串解析為數(shù)組的使用方法的講解
優(yōu)化客戶端調(diào)用服務(wù)端接口減少請(qǐng)求數(shù)據(jù)容量
mysql order by rand() 效率優(yōu)化方法
以上就是如何通過MySQL查看數(shù)據(jù)庫表容量大小的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。