oracel中创建序列
oracle序列 -- 创建序列 create sequence SEQ_IMMUNIZATION increment by 1 start with 1 maxvalue 999999999; -- 查询序列 select SEQ_IMMUNIZATION.nextval from sys.dual;
新闻标题:oracel中创建序列
URL地址:http://www.scxichong.com/article/jgjgih.html
oracle序列 -- 创建序列 create sequence SEQ_IMMUNIZATION increment by 1 start with 1 maxvalue 999999999; -- 查询序列 select SEQ_IMMUNIZATION.nextval from sys.dual;