MySQL 파티션
From IT Wiki
파티션 조회[edit | edit source]
select
*
from information_schema.partitions
where table_name = '테이블명'
파티션 추가[edit | edit source]
alter table '테이블명' add partition
(
PARTITION `파티션명` VALUES LESS THAN (파티션 값)
}
파티션 삭제(drop)[edit | edit source]
ALTER TABLE `테이블명` DROP PARTITION '파티션명'