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

oracle触发器自增字段

时间:2014-12-18 20:27:55      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   sp   for   on   div   art   log   

1.创建序列

代码


-- Create sequence  create sequence seq_userinfo  minvalue 1  start with 1  increment by 1;   
2.创建触发器

代码


create or replace trigger tigger_userinfo  before insert on userinfo  for each row  declare  begin  select SEQ_userinfo.nextval into:New.id from dual;  end tigger_userinfo; 

 原文地址:http://database.51cto.com/art/201004/196729.htm

oracle触发器自增字段

标签:blog   http   ar   sp   for   on   div   art   log   

原文地址:http://www.cnblogs.com/myblogslh/p/4172417.html

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