create sequence payInfo_seq
start with 1
increment by 1
minvalue 1
maxvalue 99999
nocache
nocycle
insert into payinfo values(payInfo_seq.nextval,'hello','yourmother');
oracle 自增序列
最新推荐文章于 2024-06-03 07:17:08 发布
create sequence payInfo_seq
start with 1
increment by 1
minvalue 1
maxvalue 99999
nocache
nocycle
insert into payinfo values(payInfo_seq.nextval,'hello','yourmother');