oracle插入時如何自動生成主鍵

2021-08-01 04:07:15 字數 932 閱讀 9080

笑月天狼

2017-05-12 10:55

oracle中自動生成主鍵方式例子如下:

1)先建立表:

create table student(

sno int not null,

sname varchar(20),

*** char(4),

constraint pk_sno primary key(sno) );

2)建立序列:

create sequence seq_student --序列名

start with 1 --初始化為1

increment by 1 --每次增加1

maxvalue 99999 --最大值

nocache --無快取

nocycle --無迴圈,一直累加

3)這個時候插入資料:insert into student(sno,sname,***) values(seq_student.nextval,'shang','男'),如果還想插入資料時主鍵自動加入則需要建立觸發器:

create or replace trigger tri_student

before insert on student for each row

declare

begin

if :new.sno is null or :new.sno=0 then

select seq_student.nextval into :new.sno from sys.dual; --seq_student為上面建的序列

end if;

end tri_studnet;(此中的if語句可以去掉)

4)測試語句:insert into student(sname,***) values('test,'男');

如果報「觸發器無效且未通過重新驗證」可能是觸發器建的有問題

MYSQL資料庫自動插入時間

我們在設計書資料庫 時,有些時候是要需要插入資料的時間,和更新資料的時間,但是這個時間不需要使用者手動輸入,只需要在使用者提交,資料儲存到資料庫時,資料庫自動更新時間。這個時候可以把字段型別設定成timestamp,timestamp屬性設定為current timestamp 和 on updat...

MySQL 避免重複插入時如何寫SQL

假設紅色部分為我在 中需要插入的部分。說明 下面的sql語句示例是我用於python中的 片段,所以使用了 s的寫法,如果直接寫sql或想要在其他語言中使用只需稍作修改。insert ignore into chi variant words lib original word,variant wo...

ORACLE自動插入當前時間

oracle沒有date 函式,sysdate函式的值是包括時分秒的,要實現插入當前時間預設值還真麻煩.只好自己寫儲存過程,而字段預設值裡面又不能呼叫儲存過程,還得寫個觸發器 而儲存過程裡面取出來的sysdate前幾位的只卻變成17 11月 07的格式了,不是自己想要的,2007 11 17的格式,...