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

oracle设置id自动增长

时间:2017-05-29 19:17:08      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:nocache   tar   bsp   rac   style   code   序列   seq   oca   

1、创建增长序列

create sequence 序列名
minvalue 1
maxvalue 99999999999999999999
start with 1
increment by 1
nocache

2、创建触发器(关联表字段和序列)

create or replace trigger 触发器名
before insert on 表名
for each row 
    begin 
        select 序列名.nextval into:new.表字段 from dual;
    end;

 

oracle设置id自动增长

标签:nocache   tar   bsp   rac   style   code   序列   seq   oca   

原文地址:http://www.cnblogs.com/wenxiangxu/p/6918695.html

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