Oracle 表range分区

create index idx_person2_szjg on person2(szjg)
local
(
 partition idx_person2_szjg_j0 tablespace data_j0,
 partition idx_person2_szjg_cc tablespace data_cc,
 partition idx_person2_szjg_jl tablespace data_jl,
 partition idx_person2_szjg_sp tablespace data_sp,
 partition idx_person2_szjg_ly tablespace data_ly,
 partition idx_person2_szjg_th tablespace data_th,
 partition idx_person2_szjg_bs tablespace data_bs,
 partition idx_person2_szjg_sy tablespace data_sy,
 partition idx_person2_szjg_bc tablespace data_bc,
 partition idx_person2_szjg_yb tablespace data_yb
);
 

你可能感兴趣的:(oracle)