oracle调用函数

--execute proname

--begin..end

--call

 

execute proname;

或者

exec proname;

只能在sqlplus中使用,且不能在begin...end块中使用

 

begin

proname(parm);

end;

 

call proname;

是标准SQL语句,在任何工具中都可以使用。

posted @ 2015-12-31 16:17  大厨shcqupc  阅读(324)  评论(0编辑  收藏  举报