码迷,mamicode.com
首页 > 其他好文 > 详细

创建table并实现ID自增长

时间:2016-11-16 19:11:52      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:ima   prim   null   varchar2   not   comm   for   ble   password   

create table p_user(       

    id               number(10) not null primary key,

    name             varchar2(30),       

    password         varchar2(20),       

    age              number(10) );

create sequence p_user_Sequence

increment by 1          

  start with 1          

  nomaxvalue          

  nocycle          

  cache 10;

create or replace trigger p_user before

insert on p_user for each row

begin  

  select p_user_Sequence.nextval into:New.id from dual;

end;

commit;

insert into p_user(name,password,age)values(‘user‘,‘password‘,‘20‘);

commit;

ID:第一个为001

创建table并实现ID自增长

标签:ima   prim   null   varchar2   not   comm   for   ble   password   

原文地址:http://www.cnblogs.com/ysloong/p/6070570.html

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