Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

pl sql out parameter

Undefined answered on March 12, 2023 Popularity 3/10 Helpfulness 1/10

Contents


More Related Answers

  • pl sql accept
  • print in pl sql
  • pl sql ptint
  • pl sql disable trigger
  • declaring variables in pl sql
  • pl sql trigger
  • oracle show parameter
  • pl sql
  • pl/sql procedure
  • procedures in pl sql
  • pl sql command line run
  • pl sql create function
  • alling a function from PL/SQL in a select statement in ORACLE
  • pl sql turn off variable substitution
  • print pl sql

  • pl sql out parameter

    0

    --PROCEDURE

    CREATE OR REPLACE PROCEDURE my_procedure(

       p_in_param1 IN NUMBER,

       p_out_param OUT VARCHAR2)

    IS

    BEGIN

       -- Procedure body goes here

       p_out_param := 'Hello, world!';

    END; 



    DECLARE

       my_var VARCHAR2(100);

    BEGIN

       my_procedure(123, my_var);

       DBMS_OUTPUT.PUT_LINE(my_var);

    END; 



    Popularity 3/10 Helpfulness 1/10 Language sql
    Source: Grepper
    Tags: out sql
    Link to this answer
    Share Copy Link
    Contributed on Mar 12 2023
    Undefined
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.