The alter table alters data partitions.
Change an unpartitioned table to a multipartitioned table
Split, merge, or move partitions
Add one or more partitions to a list- or range-partitioned tables
Repartition a table for a different partitioning type
Repartition a table for a different partitioning key or bound
Repartition a table for a different number of partitions
Repartition a table to assign partitions to different segments
An example of an unpartitioned titles table changing to a table with three range partitions.
alter table titles partition by range (total_sales) (smallsales values <= (500) on seg1, mediumsales values <= (5000) on seg2, bigsales values <= (25000) on seg3)