mariaDB

마리아 db 테이블 용량 보기

xemaker 2021. 11. 2. 15:21

select
concat(table_schema,'.',table_name)
,concat(round(data_length/(1024*1024*1024),2),'G') data
from information_schema.TABLES
where table_schema='스키마명'
order by data desc