概述
1.auto increment字段
描述:我们通常希望在每次插入新记录的时候,自动地创建主键字段的值。我们可以在表中创建一个auto-increment字段。
1)、MySQL的语法:
create table persons
(
id int not null auto_increment,
name varchar(255) not null,
primary key(id)
)
注释:MySQL使用auto_increment关键字来执行auto-increment任务。默认地,auto_increment的开始值是1,每条新记录递增1.
要让auto_increment序列以及其他的值起始,请使用下面的语句:
alter table persons auto_increment=100
2)、SQL Server的语法
create table persons
(
in int primary key identity,
name varchar(255)
)
注释:SQL Server使用identity关键字来执行auto-increment任务。默认的,identity的开始值是1,每条记录递增1.
要让表中的id以20起且递增2,请把identity改为identity(20,2) 如:
create table persons
(
in int primary key identity(20,2),
name varchar(255)
)
3)、Access的语法
create table persons
(
id int primary key autoincrement,
name varchar(255)
)
注释:MS Access使用autoincrement 关键字来执行auto-increment任务。默认地,autoincrement的开始值是1,每条新记录递增1.
要让表中的id以20起且递增2,请把autoincrement改为autoincrement(20,2) 如:
create table persons
(
id int primary key autoincrement(20,2),
name varchar(255)
)
4)、Oracle语法
在Oracle 中,代码稍微复杂一点。
你必须通过sequence对创建auto-increment字段(该对象生成数字序列)。
使用下面的create sequence 语法
create sequence seq_person
minvalue 1
start with 1
increment by 1
cache 10
上面的代码创建名为seq_person的序列对象,它以1起始且以1递增。改对象缓存10个值以提高性能。cache选项规定了为访问速度要存储多少个序列值。
在表“persons”中插入新记录,我们必须使用nextval函数(该函数从seq_person序列中取回下一个值):
insert into persons (id,name) values (seq_person.nextval,'lars')
最后
以上就是简单枫叶为你收集整理的auto increment的全部内容,希望文章能够帮你解决auto increment所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复