ORACLE 利用觸發器避免資料重複插入

來源:互聯網
上載者:User

有時有這樣的需求,我們在對資料庫插入時,可能會插入重複的資料,但是又不想

修改現有的程式,我們可以使用觸發器來避免修改程式,直接在資料庫中解決問題。

測試步驟:

1.首先我們建立一個測試的資料庫表。

 

CREATE TABLE "GZRDYA"."TBTEST" 
   (    "ID" NUMBER(13,0), 
    "NAME" NVARCHAR2(200)
   ) 

 

2.建立一個觸發器。

檢測ID是否重複,若有重複,則拋出錯誤,不插入資料。

 

代碼

create or replace trigger trig_tbtest
before insert on tbtest for each row
declare
v_count number(5);
begin
select count(*) into v_count from tbtest where id=:new.id;
if (v_count>0) then
    raise_application_error(-20000,'data is duplication');
end if;
end;

 

 

3.做測試

嘗試插入重複的ID資料,探索資料不能插入,且拋出錯誤。

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.