Home  >  Article  >  Database  >  Oracle中序列的操作以及使用前对序列的初始化

Oracle中序列的操作以及使用前对序列的初始化

WBOY
WBOYOriginal
2016-06-07 17:18:00931browse

一 创建序列create sequence myseqstart with 1increment by 1nomaxvalueminvalue 1 二 初始化序列select myseq.nextval from du

一 创建序列
create sequence myseq
start with 1
increment by 1
nomaxvalue
minvalue 1

二 初始化序列
select myseq.nextval from dual;
这里值得注意的是,如果先直接写select myseq.currval from dual,会提示会提示myseq.currtval尚未在此会话中定义。

三 使用序列
初始化序列之后才可以使用该序列,我们以ibatis为例。


select myseq.nextval from dual

insert into Student(id,name,age)
values(#mid#,#mname#,#mage#)
    ]]>

四 修改序列
在修改序列的时,有以下值不能修改
1 不能修改序列的初始值
2 序列的最小值不能大于当前值(currval)
3 序列的最大值不能小于当前值(currval)
alter sequence myseq
increment by 2

五 删除序列
drop sequence myseq

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn