Oracle ID 自增
阿新 • • 發佈:2018-10-09
repl null num fault mar creat replace rim value
實現Oracle Id自增
1、方法一
create table app_student
(
id integer generated by default as identity
not null primary key,
createtime DATE not NULL
);
insert into app_student(createtime) values(sysdate);
2. 方法二 創建序列
創建表
CREATE TABLE APP_USER( ID number(20) NOT NULL PRIMARY KEY, Create_Time date NOT NULL );
--創建序列 create sequence seq_app_user minvalue 1000 nomaxvalue start with 1000 increment by 1 nocycle --一直累加,不循環 --nocache --不緩存 cache 10; --緩存10條
創建觸發器
--創建觸發器,如果insert語句不知道ID自動插入增長值 CREATE OR REPLACE TRIGGER tr_app_user BEFORE INSERT ON app_user FOR EACH ROW When (new.ID is null) begin select seq_app_user.nextval into:new.ID from dual; end;
插入數據:
ID的格式由序列控制
insert into APP_USER( Create_Time) values( sysdate)
自己控制ID的格式
insert into APP_USER( ID, Create_Time) values(to_number(to_char(sysdate,‘yyyymmddhh24miss‘) + seq_app_student.nextval), sysdate)
id的格式為時間+序列
Oracle ID 自增