Oracle新建表字段,如何使字段自增

Posted 小猫钓鱼吃鱼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle新建表字段,如何使字段自增相关的知识,希望对你有一定的参考价值。

oracle的自增需要依靠序列和触发器共同实现

比如 新建一张表 

create table test

(id int primary key,
name varchar2(10));
 
创建一个序列
create sequence test_seq increment by 1 start with 
minvalue 1 maxvalue 9999999999999 nocache 
order;
 
触发器实现
create or replace trigger test_trigger
before insert on test
for each 
row
begin
  select  test_seq.Nextval into:new.id from dual;
end;
 
然后插入数据
insert into test (namevalues (‘张三‘);

以上是关于Oracle新建表字段,如何使字段自增的主要内容,如果未能解决你的问题,请参考以下文章

DB2自增字段

sql server建表时怎么设置ID字段自增

oracle中如何指定表字段自增

Oracle实现主键字段自增

pgsql字段自增

如何创建表在Mysql中使字段从某一个数开始自增