oracle中id的自增怎么设置
1个回答
展开全部
用序列实现
--自增长序列
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,'李四','男','组长');
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询