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

oracle中的自动增长

时间:2014-12-18 20:23:36      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   sp   div   art   log   bs   html   

create table test(
id int not null primary key,
name varchar2(20),
sex int)
;

 

create sequence t ->创建squence,命名为t
minvalue 1       ->最小值
maxvalue 100000  ->最大值
start with 1     ->从1开始
increment by 1   ->增长比例
nocache          ->增长池,为了提高效率,可以设置为 cache 10
;

 

insert into test values(t.nextval,‘zhangyi‘23);

 原文地址:http://www.cnblogs.com/zhangyi85/archive/2008/09/15/1290927.html

oracle中的自动增长

标签:blog   http   ar   sp   div   art   log   bs   html   

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

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