我们有时在升级的时候需要单独向数据库中插入一条数据。又希望脚本可以重复执行,所以。。。
以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;
既是记录,也供大家参考
原文链接:https://www.f2er.com/oracle/211953.html