oracle数据库建立序列使用序列实现主键自增
Posted Legolas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle数据库建立序列使用序列实现主键自增相关的知识,希望对你有一定的参考价值。
2.建立序列
-- Create sequence
create sequence SEQ_SHIP_IMAGE
minvalue 20
maxvalue 999999999999999999
start with 40
increment by 1
cache 20;
使用序列:
SELECT SEQ_SHIP_IMAGE.Nextval from dual;
insert into ship_image (id,img_path,remark,ship_id) values (SEQ_SHIP_IMAGE.Nextval,‘ship3.jpg‘,‘8‘,‘8‘);
或者
<!-- 对应userDao中的insertUser方法, --> <insert id="insertUser" parameterType="com.dy.entity.User"> <!-- oracle等不支持id自增长的,可根据其id生成策略,先获取id <selectKey resultType="int" order="BEFORE" keyProperty="id"> select seq_user_id.nextval as id from dual </selectKey> --> insert into user(id, name, password, age, deleteFlag) values(#{id}, #{name}, #{password}, #{age}, #{deleteFlag}) </insert>
以上是关于oracle数据库建立序列使用序列实现主键自增的主要内容,如果未能解决你的问题,请参考以下文章