oracle預存程序的常用文法

來源:互聯網
上載者:User

記錄一下,主要方便自己以後尋找:

create or replace procedure sp_test
(
aa in varchar,
bb in number default 0
) is
v_pos varchar(50);
v_num number;
begin
 
 ---字串尋找和替換
 select SUBSTR(PARAMETER, 1, INSTR(PARAMETER,branchId)-2) ||
           SUBSTR(PARAMETER, INSTR(PARAMETER,branchId)+length(branchId)) into v_pos from dual;
 
 ---迴圈的使用       
 loop
    if bb is null then ---if 判斷
       exit;   ---退出迴圈
    end if;
    if v_num >= bb then
       exit;
    end if;
    v_num := v_num +1;
  end loop;
           
    ---輸出資訊
    dbms_output.put_line('aaaaa');

    ..
  
  commit;
  exception
      when NO_DATA_FOUND then  --沒有記錄的異常
          dbms_output.put_line('ddddd');
    when others then
    begin
    --輸出錯誤資訊
      dbms_output.put_line(sqlerrm);
      rollback;
      
      ---拋出異常
      raise;
    end;  
end sp_test;

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.