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;
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;