程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> 關於Oracle數據庫 >> Oracle中自增字段的兩種方法的比較(Trigger和Sequence)

Oracle中自增字段的兩種方法的比較(Trigger和Sequence)

編輯:關於Oracle數據庫

  在ORACLE中,沒有象MS-SQLSERVER中那樣子有自增字段,但是如果我們要實現這個功能,有2種方法

  1 Trigger

  sql語句如下:

create or replace trigger trigger_name
before insert on your_sid.tablename
for each row
begin

declare
i number;
cursor cur is select max(id) from your_sid.tablename;

BEGIN
open cur;

FETCH cur INTO i;

if i is NULL then
:new.id := 0;  //可以根據實際需要來定初始值
else
:new.id := i + 1; //這裡以1遞增
end if;

Close cur;
END;

END;
/

  其中:your_sid為數據庫的當前用戶SID,tablename為表名,id為列名,

  2 Sequence

  sql語句如下:

create sequence your_sid.sequence_name
increment by 1  //指定序列以1遞增,如果沒指定,默認值1會使用
start with 1        //由1開始計數
nomaxvalue     //不設置最大值
minvalue 1      //設置最小值1
cache 20        //預分配緩存大小為20
order

  二者的區別在於,Sequence的效率要比Trigger的高,因為Trigger每次都要遍歷表中所有記錄以尋找ID最大值,而Sequence每次執行後,都會保留最大值;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved