0
我有像如何解決分區範圍分區
create table t1 (
name varchar2(10),
pdate date
) partition by range(pdate) (partition p1 values less than('01-jan-16'),partition p2 values less than('01-feb-16));
現在我表中插入值'06 -aug-16' ,那麼這值被插入或錯誤?
看起來像一個考試問題。 –