'oracle how to alter table add partition by range interval

i have searched a lot but i have found nothing about how to add a range partition to an existing table

alter table myuser.mytable
add PARTITION  BY RANGE (mynumber) INTERVAL (1)
( PARTITION p1 VALUES LESS THAN (108))  

that gives me ORA:14150 error, SUBPARTITON keyword is missing, but i dont want to give subpartition



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source