1. 程式人生 > >Function 函數

Function 函數

repl strong exc lac begin str 函數 sent span

創建

create [or replace] function fun_name[(v_p1 v_p_type1, ...)]
return data_type
is|as
begin
  plsql_sentences;
[exception]
  [dowith_sentences;]
end [fun_name];

刪除

drop function fun_name;

示例

Function 函數