Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前我有一个格式的序列:
CREATE SEQUENCE calc_emp_id MINVALUE 1001 MAXVALUE 10000 START WITH 1006 INCREMENT BY 1 ORDER NOCACHE;
我要插入的表已经有六个插入,我试图让下一个插入的主键为 1007。第一个插入增加 2,后续插入增加 3。我在插入语句中使用 calc_emp_id.NEXTVAL 插入。
任何帮助表示赞赏。
尝试在 nextval 之后使用 CURRVAL