Oracle 怎么让id自增加

Posted 丶疏影横斜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle 怎么让id自增加相关的知识,希望对你有一定的参考价值。

--自增长序列
create table test(
  tid int not null,
  tname varchar(20),
  tsex varchar(20),
  tbz varchar(50)
)
--添加主键约束
alter table test add constraint test_pk primary key (tid)
--自增序列
create sequence test_seq
minvalue 1
maxvalue 1000
start with 1
increment by 1
--插入数据
insert into test values(test_seq.nextval,张三,,无备注);
insert into test values(test_seq.nextval,李四,,组长);

 

以上是关于Oracle 怎么让id自增加的主要内容,如果未能解决你的问题,请参考以下文章

MySQL手动插入数据时怎么让主键自增!

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

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

oracle怎么实现id自增和设置主键啊

pgsql如何让表id自动增长

mysql中的命令让 id 都增加10