Oracle中自定義函式

zhenghaishu發表於2014-08-06

Oracle中自定義函式


(1) 開啟環境變數serveroutputserverout

SQL>set serveroutput on

或者

SQL>set serverout on


這樣做的目的是為了可以在sqlplus中看到輸出結果


(2) 編寫函式

SQL>

create or replace function getEmCount return number as

begin

declare em_count number; --variable declare

/*

* Calculate record count of table emp

*/

begin

select count(1) into em_count from emp;

return em_count;

end;

end getEmCount;

/


上面程式碼中的--為單行註釋,/*程式碼段*/為多行註釋,最後一行有個“/”,這個符號表示執行。執行結果為:


Function created.


(3) 函式呼叫

SQL>

set serverout on

begin

dbms_output.put_line('The record count of table emp is ' || getEmCount());

end;

/


執行結果為:

The record count of table emp is 14

PL/SQL procedure successfully completed.


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29485627/viewspace-1246492/,如需轉載,請註明出處,否則將追究法律責任。

相關文章