oracle sql 生成序列

序列创建:

create sequence seq_patientid
increment by 1
start with 1
maxvalue 9999999999999999999999999999
cycle
nocache;

 

序列使用:

seq_patientid.nextval

posted on 2022-03-29 12:06  yr1126  阅读(101)  评论(0编辑  收藏  举报