R1-012 MySQL檢視錶大小

路途中的人2012發表於2017-03-01
select table_name,table_size
from
(select table_name,(data_length+index_length)/1024/1024/1024 table_size
from
information_schema.tables ) t1
order by table_size
desc limit 10;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29067253/viewspace-2134534/,如需轉載,請註明出處,否則將追究法律責任。

相關文章