How can I split into a range for: one for pubdate values less than January 1, 2000; one for values for public announcements greater than or equal to January 1, 2000 and less than January 1, 2010; and the third section for all pubdate values that are greater than or equal to January 1, 2010
How can I write my request for part of a section? I tried to find examples, but I just do not understand what to put after the section.
My request is here:
CREATE table lab6_zl ( ID number not null, title varchar2(40), pubID char(3), pubdate date, constraint lab6_pk primary key(ID)) Partition by range (pubdate) (Partition one for pubdate values greater than or equal to Jan 1, 2000), (Partition two for for pubdate values less than Jan 1, 2000), (Partition three for all pubdate values greater than or equal to Jan 1, 2010);
source share