您好,登錄后才能下訂單哦!
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.tablesgroup?by?table_schemaorder?by?sum(data_length) desc, sum(index_length) desc;
selecttable_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.tables
where 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='smartmonitor'order?by?data_length desc, index_length desc;
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。