创建序列
SQL> CREATE SEQUENCE s_dept_id
INCREMENT BY 1
START WITH 51
MAXVALUE 9999
NOCACHE
NOCYCLE;
序列已创建。