ORA-14074: partition bound must collate higher than that of the last partition
1. 创建分区表
create table zhanglei_test (c1 number, c2 varchar2(10))
partition by range(c1)
(partition p10 values less than (10),
partition p20 values less than (20),
partition p30 values less than