Partition bounds must be in ascending order according to the order in which the partitions were created. That is, the upper bound for the second partition must be higher than for the first partition, and so on.
create table employees(emp_names varchar(20)) partition by range(emp_name) (p1 values <=(1), p2 values <= (10))
create table emp_id (id int) partition by range(id) (p1 values <= (10.5), p2 values <= (100.5))
create table id_emp (id float) partition by range(id) (p1 values <= (10), p2 values <= (100))
create table newemp (name binary) partition by range(name) (p1 values <= (“Maarten”), p2 values <= (“Zymmerman”))