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 自增序列
最新推荐文章于 2022-07-26 16:00:03 发布
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');