本文主要給大家介紹MySQL查看數(shù)據(jù)庫(kù)表容量大小的命令語(yǔ)句講解,希望可以給大家補(bǔ)充和更新些知識(shí),如有其它問(wèn)題需要了解的可以持續(xù)在創(chuàng)新互聯(lián)行業(yè)資訊里面關(guān)注我的更新文章的。
創(chuàng)新互聯(lián) - 重慶服務(wù)器托管,四川服務(wù)器租用,成都服務(wù)器租用,四川網(wǎng)通托管,綿陽(yáng)服務(wù)器托管,德陽(yáng)服務(wù)器托管,遂寧服務(wù)器托管,綿陽(yáng)服務(wù)器托管,四川云主機(jī),成都云主機(jī),西南云主機(jī),重慶服務(wù)器托管,西南服務(wù)器托管,四川/成都大帶寬,機(jī)柜大帶寬、租用·托管,四川老牌IDC服務(wù)商
select table_schema as '數(shù)據(jù)庫(kù)',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ù)庫(kù)', 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庫(kù)容量大小
select table_schema as '數(shù)據(jù)庫(kù)',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庫(kù)各表容量大小
select table_schema as '數(shù)據(jù)庫(kù)', 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;
本文講解了如何通過(guò)MySQL查看數(shù)據(jù)庫(kù)表容量大小,更多相關(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)化方法
以上就是如何通過(guò)MySQL查看數(shù)據(jù)庫(kù)表容量大小的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!
網(wǎng)頁(yè)名稱:MySQL查看數(shù)據(jù)庫(kù)表容量大小的命令語(yǔ)句講解
文章鏈接:http://jinyejixie.com/article30/igodpo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、靜態(tài)網(wǎng)站、App開(kāi)發(fā)、外貿(mào)建站、企業(yè)網(wǎng)站制作、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)