oracel中建立序列


oracle序列
-- 建立序列
create sequence SEQ_IMMUNIZATION
increment by 1
start with 1
maxvalue 999999999;
-- 查詢序列
select SEQ_IMMUNIZATION.nextval from sys.dual;
相關文章
相關標籤/搜索