复制
收藏
提问
全网
create table pt_range_test1( pid number(10), pname varchar2(20) ) partition by range(pid)( partition p1 values less than(1000) tablespace tetstbs1, partition p2 values less than(2000) tablespace tetstbs2, partition p3 values less than(maxvalue)tablespace tetstbs3 ) enable row movement;解释上诉代码
2个月前
理解问题create table pt_range_test1( pid number(10), pname varchar2(20) ) partition by range(pid)( partition p1 values less than(1000) tablespace tetstbs1, partition p2 values less than(2000) tablespace tetstbs2, partition p3 values less than(maxvalue)tablespace tetstbs3 ) enable row movement;解释上诉代码
已完成理解「create table pt_range_test1( pid number(10), pname varchar2(20) ) partition by range(pid)( partition p1 values less than(1000) tablespace tetstbs1, partition p2 values less than(2000) tablespace tetstbs2, partition p3 values less than(maxvalue)tablespace tetstbs3 ) enable row movement;解释上诉代码」
展开阅读网页
更专业一些
转笔记
专业
create table pt_range_test1(
pid number(10),
pname varchar2(20)
)
partition by range(pid)(
partition p1 values less than(1000) tablespace tetstbs1,
partition p2 values less than(2000) tablespace tetstbs2,
partition p3 values less than(maxvalue)tablespace tetstbs3
)
enable row movement;解释上诉代码不在提醒