MySQL-MariaDB
mysql 파티션 테이블 정보조회
WOOJIN24
2022. 7. 15. 13:57
select * from information_schema.partitions
where table_name = '테이블명' ;
SMALL