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自增加的主要内容,如果未能解决你的问题,请参考以下文章