码迷,mamicode.com
首页 > 数据库 > 详细

Oracle创建自增ID

时间:2016-11-16 20:07:23      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:acl   tar   into   href   ace   itsm   ext   ref   nbsp   

 

先创建序列sequence

create sequence S_User

minvalue 1

nomaxvalue  -- 或 maxvalue 999

start with 1

increment by 1

cache 20; -- 或 nocache

 

参考:

oracle 序列中cache 有什么用途

 

然后创建触发器

create or replace trigger trg_user before insert on T_USER for each row

begin

select itsmp.S_User.nextval into :new.UserID from dual;

end;

Oracle创建自增ID

标签:acl   tar   into   href   ace   itsm   ext   ref   nbsp   

原文地址:http://www.cnblogs.com/jhlong/p/6070619.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!