赞
踩
在mysql中我们可以使用auto_increment来实现自动增长功能
而在oracle主键没有自动增长类型,所以一般使用序列产生的值作为某张表的主键,实现主键自增。
序列是oracle用来生产一组等间隔的数值。序列是递增,而且连续的。序列的编号不是在插入记录的时候自动生成的,必须调用序列的方法来生成(一般调用nextval方法)。我们也可以编写表的insert触发器来进自动生成。
创建一张test测试表
create table test(
id number primary key,
name varchar2(256),
category varchar2(256),
remark varchar2(2000),
del_status number(1) default(0)
);
以下通过创建序列和触发器来实现主键id自动增长
创建语法:
create sequence 序列名称
[start with 初始量]
[increment by 递增量]
[maxvalue 最大值| nomaxvalue]
[minvalue 最小值| nominvalue]
[cycle | nocycle]
[cache 缓存个数| nocache];
例如:
//创建自增长序列
create sequence test_SEQ
minvalue 1 -- 最小值
maxvalue 2000 -- 最大值
start with 1 -- 从1开始计数
increment by 1 -- 每次增加1
nocycle -- 一直累加,不循环
cache 20;
maxvalue 2000 代表最大为2000,也可以通过nomaxvalue不设置最大值
//创建触发器
create or replace trigger test_TR
before insert on test
for each row
begin
select test_SEQ.nextval into :new.id from dual;
end test_TR;
其中id
为需要自动增长的列,完成后我们就可以使用序列了,编写一条插入语句
insert into test(name, category, remark,del_status) values ('kaka', '噗噗人','生活在噗噗星球',0)
如果需要修改序列的话,我们可以通过
alter sequence seq_tb_person
minvalue 1
maxvalue 2000
-- start with 49 对于已经启动的序列,无法设置初始值
increment by 1
cache 20;
select sequence_name, min_value, max_value, increment_by, last_number from user_sequences;
如图:
DROP SEQUENCE 序列名;
DROP SEQUENCE 序列名;
例如:
DROP TRIGGER test_TR --删除触发器
DROP SEQUENCE test_SEQ --删除序列
最后参考了一些oracle使用序列的一些注意点,总结如下
参考链接:https://www.cnblogs.com/xux80/p/10188917.html
https://www.zhangshengrong.com/p/9OabmQ51dK/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。