oracle主键如何自增长,Oracle、MySQL主键自增长

Oracle

1、建表

create table student

(

id   number not null, -- 主键

name  varchar2(20),

birthday  date,

age     number(20),

phone varchar2(60),

email varchar2(10)

)

alter table student add constraint student_pk primary key(id); -- 主键

2、创建序列

Oracle中的序列并不是和MySQL中的自增长一样,连续性的,而是跳跃、不连续性的。如要使他连续,则必须指定相关的属性和值。

/*

--创建序列Sequence

create sequence student_id

minvalue 1 --最小值

nomaxvalue --不设置最大值(由机器决定),或 根据表字段的值范围设置maxvalue

maxvalue 99999999 -- 最大值

start with 1 --从1开始计数,数值可变

increment by 1 --每次加1,数值可变

nocycle --一直累加,不循环

nocache; --不建缓冲区。

如果建立cache那么系统将自动读取cache值个seq,这样会加快运行速度;如果在单机中使用cache,或者oracle死了,那么下次读取的seq值将不连贯,所以不建议使用cache。

*/

-- 创建序列

create sequence student_id 16 minvalue 1

maxvalue 999

increment by 1

start with 1

nocycle

nocache;

3、创建触发器 (以下三种方式都行)

格式:

create or replace trigger 触发器名

before insert on 表名

for each row

when (new.表的自增长字段 is null)

begin

select 序列名.Nextval into:new.表的自增长字段 from dual;

end;

-- 方式一

create or replace trigger tg_insertId

before insert on student

for each row

when (new.id is null) -- 当id为NULL时触发

begin

select student_id.Nextval into:new.id from dual;

end;

-- 方式二 (我比较喜欢这种)

create or replace trigger tg_insertId

before insert on student

for each row

begin

select student_id.Nextval into:new.id from dual;

end;

-- 方式三

create or replace trigger tg_insertId

before insert on student for each row

declare -- 声明

-- 局部变量(student表里的字段)

begin

if updating then

insert into student

values(student_id.nextval,

:old.name, -- 对应student表中的字段

:old.birthday,

:old.age,

:old.phone,

:old.email

);

end if;

end;

4、测试(实例)

由于创建了触发器,所以下面的插入语句,不需要再写上id这一项

INSERT INTO student(name,birthday,age,phone,email)

VALUES('zhangsan',to_date('2018-01-10 19:55:45','yyyy-MM-dd hh24:mi:ss'),18,'13510086110','123456789@qq.com');

-- 插入数据

INSERT INTO student(name,birthday,age,phone,email)

VALUES('zhangsan',to_date('2018-01-11 19:55:45','yyyy-MM-dd hh24:mi:ss'),20,'13510086110','123456789@qq.com');

select * from student; -- 查询学生表

or

insert into student(seq,name,birthday,age,phone,email) -- 这是带上“自增长主键(seq)”的写法

values(student_id.Nextval,'zhangsan',to_date('2018-01-10 19:55:45','yyyy-MM-dd hh24:mi:ss'),18,'13510086110','123456789@qq.com');

eafdc5d75a248247fd571c4122b7a3ff.png

MySQL

1、建表

auto_increment:每插入一条数据,客户表(customers)的主键id就自动增1,如下所示

create table customers -- 创建客户表

(

id int auto_increment primary key not null, -- auto_increment:自增长

name varchar(15)

);

2、 测试(实例)

insert into customers(name) values("张三"),("李四");-- 向客户表中插入数据

select * from customers; -- 查询客户表

bbe3f0e5e907a2761622c326040efdfe.png

标签:insert,name,--,create,主键,student,MySQL,Oracle,id

来源: https://blog.csdn.net/qq_34595352/article/details/111869305

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值