oracle 如何在SQL PLUS中执行FUNCTION?

oracle 如何在SQL PLUS中执行FUNCTION?

by yanleigis

如下例子

set timing on; --显示执行的时间
set serveroutput on size 9000000;--设置 dbms_output.put_line输出
declare
sqlstr varchar2(4000);
begin
sqlstr:=cwnew_pack.updateCW_PROVIDESIGNAPPOVERID();
dbms_output.put_line(sqlstr);
end;
/

你可能感兴趣的:(function)