Invalid datatype for range function

remove the comma after ” another_column varchar2(10),” and specify at least one partition.

create table partition_tester (
    some_column number not null,
    another_column varchar2(10))
    partition by range(some_column) interval(10)
    (   
       partition p0 values less than (10) 
    )

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top