ALTER TABLE d PARTITION BY RANGE (MONTH(departure_date))
(
PARTITION p01 VALUES LESS THAN (02) ,
PARTITION pmaxval VALUES LESS THAN MAXVALUE
);