Calling a stored procedure in Oracle with IN and OUT parameters

后端 未结 3 1192
我在风中等你
我在风中等你 2020-12-08 00:38

I have this procedure:

CREATE OR REPLACE PROCEDURE PROC1(invoicenr IN NUMBER, amnt OUT NUMBER)
AS BEGIN
SELECT AMOUNT INTO amnt FROM INVOICE WHERE INVOICE_NR         


        
3条回答
  •  暖寄归人
    2020-12-08 01:00

    Go to Menu Tool -> SQL Output, Run the PL/SQL statement, the output will show on SQL Output panel.

提交回复
热议问题