Mysql 查詢資料表使用硬碟空間

摘要:Mysql 查詢資料表使用硬碟空間

以下算出來是以G為單位

select table_name,(data_length + index_length)/1024/1024/1024 from information_schema.tables where table_schema = 'database' ;