oracle資料庫建立Squence序列並查詢

ac_hiblog發表於2018-02-08
create sequence test1
minvalue 1
maxvalue 9999
start with 1
increment by 1
nocache;
建立test1序列

select test1.nextval from sys.dual;

查詢test1序列,每次查詢加1

相關文章