有谁帮我解释一下这段代码??
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 
             ) 
 )
------解决方案--------------------我又来了