正在准备-破茧成蝶-提升自己
破壳成龙
全部博文(147)
2011年(1)
2010年(1)
2009年(35)
2008年(110)
ArliceDO
格伯纳
lord_is_
carolwin
jiedian1
hd141283
learn8xx
幽幽精灵
Lemon_乐
blust_20
分类: Oracle
2008-11-13 23:36:57
建表:
create table test (id number not null primary key, name varchar2 not null);
序列:
create squence add1 increment by 1 start with 1 nomaxvalue nocycle;
触发器:
create Trigger trigger_ranran before insert on test for each row begin select add1.next.val into :new.ID from dual; end;
插入语句的时候id就会自动增加1
上一篇:comparator和comparable
下一篇:java正则表达式
登录 注册