orcl function base

function:
with args
create or replace function <functionName>(args dataType)
return  dataType
is
define ...,
returndata;
begin
//TODO
return returndata;
end ;

no args
create or replace function <functionName>
return datatype
is
define ...,
returndata;
begin
//TODO
return returndata;
end ; 

猜你喜欢

转载自vortexchoo.iteye.com/blog/1901250
今日推荐