SELECT
table_name AS "Table",
ROUND(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)"
FROM
information_schema.TABLES
WHERE
table_schema = '사용자_DB_명'
ORDER BY
(data_length + index_length) DESC;
| 이전글 | 익명 계정(''@'localhost') 삭제 |
|---|---|
| 다음글 | DB별 전체 용량 확인 |