-
[MySQL] 특정 테이블의 물리 사용량 조회데이터베이스/mysql 2020. 9. 9. 00:24
SELECT table_name as 'table', round(((data_length+index_length) / 1024 / 1024 / 1024), 2) as 'size in GB' FROM information_schema.TABLES WHERE table_schema = '[schema 이름]' and table_name = '[table 이름]'
'데이터베이스 > mysql' 카테고리의 다른 글
[MySQL] Backup & Restore (0) 2020.09.08 [MySQL] 테이블 변경 (0) 2020.09.08