有谁帮小弟我解释一下这段代码?

有谁帮我解释一下这段代码??partitionbyrange(PART)(partitionPART_0valueslessthan( 1 )tablespaceREP_IN

有谁帮我解释一下这段代码??
partition   by   range   (PART)
(
    partition   PART_0   values   less   than   ( '1 ')
        tablespace   REP_INFO_DATA000
        pctfree   10
        initrans   1
        maxtrans   255
        storage
        (
            initial   1M
            next   1M
            minextents   1
            maxextents   unlimited
            pctincrease   0
        ),
    partition   PART_1   values   less   than   ( '2 ')
        tablespace   REP_INFO_DATA000
        pctfree   10
        initrans   1
        maxtrans   255
        storage
        (
            initial   1M
            next   1M
            minextents   1
            maxextents   unlimited
            pctincrease   0
        )
)

[解决办法]
我又来了