oracel中创建序列
更新:HHH   时间:2023-1-7



oracle序列
-- 创建序列
create sequence SEQ_IMMUNIZATION
increment by 1
start with 1
maxvalue 999999999;
-- 查询序列
select SEQ_IMMUNIZATION.nextval from sys.dual;


返回关系型数据库教程...