oracle不存在則插入,存在則不插入

咱們有時在升級的時候須要單獨向數據庫中插入一條數據。又但願腳本能夠重複執行,因此。。。sql

以oracle爲例:數據庫

declare 
   v_count  number(10,0)%type;
begin
  select nvl(count(1),0)
  into v_count
  from XXX  where XXX
if v_count = 0 then 
 begin
 執行插入語句。。。
 end;
end if;
commit;
end;

既是記錄,也供你們參考oracle

相關文章
相關標籤/搜索