您的位置 首页 > 娱乐休闲

Oracle使用序列和触发器实现主键递增

oracle和mysql的自增区别

mysql自增使用的是auto increment,但是oracle中需要使用序列配合触发器来实现自增。

步骤1:创建表

create table classroom ( c_id NUMBER(4) not null primary key, c_address VARCHAR2(10) not null, c_count NUMBER(2) not null );

步骤2:创建序列

create sequence class_id_increment INCREMENT by 1 start with 1001 maxvalue 1999 nocycle

步骤3:创建触发器

create TRIGGER class_id_trigger before insert on classroom for each row when is null) BEGIN SELECT cla into :new.c_id from dual; end;

步骤4:插入语句测试

insert into classroom VALUES(1001,'101',50); INSERT into classroom(c_address,c_count) VALUES('102',60); INSERT into classroom(c_address,c_count) VALUES('103',70);

以上的插入语句中后两条在不插入主键的情况下,使用序列和触发器完成了主键编号自增。

责任编辑: 鲁达

1.内容基于多重复合算法人工智能语言模型创作,旨在以深度学习研究为目的传播信息知识,内容观点与本网站无关,反馈举报请
2.仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证;
3.本站属于非营利性站点无毒无广告,请读者放心使用!

“oracle如何查询主键,oracle如何查询主键的分布情况,oracle查询主键的语句,oracle查询主键字段”边界阅读