如何从Oracle存储过程中获取两个返回值

前端之家收集整理的这篇文章主要介绍了如何从Oracle存储过程中获取两个返回值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道如何从Oracle中的Oracle SP获得一个返回值,如下所示
MyReturn := MY_ORACLE_SP ();

如果MY_ORACLE_SP2的返回值大于1.我能怎么做?

-- IN arguments : you get them. You can modify them locally but caller won't see it
-- IN OUT arguments: initialized by caller,already have a value,you can modify them and the caller will see it
-- OUT arguments: they're reinitialized by the procedure,the caller will see the final value.
CREATE PROCEDURE f (p IN NUMBER,x IN OUT NUMBER,y OUT NUMBER)
IS
BEGIN
   x:=x * p;
   y:=4 * p;
END;
/

SET SERVEROUTPUT ON

declare
   foo number := 30;
   bar number := 0;
begin
   f(5,foo,bar);
   dbms_output.put_line(foo || ' ' || bar);
end;
/

产出:150 20

原文链接:https://www.f2er.com/oracle/205159.html

猜你在找的Oracle相关文章