设置序列

Posted 青蛙跳跳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置序列相关的知识,希望对你有一定的参考价值。

//Oracle 中给主键设置自增长,先设序列,在设置触发器
Create table BigCustemer1(
ID number(10), cus_name varchar2(20),
contacts varchar2(20),
phone varchar2(20) ,
email varchar2(30),
address varchar2(50),
notes varchar2(70)
);

create sequence bigcus_seq
increment by 1
start with 1
nomaxvalue
nominvalue
nocache

create or replace trigger BigCustemer1
before insert on BigCustemer1
for each row
begin
select BIGCUS_SEQ .nextval into :new.id from dual;
end;

 

以上是关于设置序列的主要内容,如果未能解决你的问题,请参考以下文章

设置序列

如何以编程方式设置特定序列的音频文件?

SpringDataJPA使用Oracle序列设置值:主键字段、非主键字段

序列的增量大小在实体映射中设置为 [50],而关联的数据库序列增量大小为 [1]

序列的增量大小在实体映射中设置为 [50],而关联的数据库序列增量大小为 [1]

无法反序列化作为参数传递的消息。无法识别序列化格式。