1. 程式人生 > >mysql查詢庫中表的記憶體大小

mysql查詢庫中表的記憶體大小

在資料庫 information_schema 中進行查詢;

table_schema 要查詢的資料庫;

table_schema 要查詢資料庫中的表名字;

以下sql 是查詢 sefldb 庫中 各個表的 佔用記憶體大小; 以下sql可以在不需要開啟information_schema 進行執行

select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')as data,table_name
   from information_schema.TABLES where table_schema='does'  group by table_name