Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8313741
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T20:35:32+00:00 2026-06-08T20:35:32+00:00

Please tell me what are the differences between IN,OUT,IN OUT parameters in PL/SQL. And

  • 0

Please tell me what are the differences between IN,OUT,IN OUT parameters in PL/SQL. And also how can i return more than one values using PL/SQL Procedure.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T20:35:35+00:00Added an answer on June 8, 2026 at 8:35 pm

    What are IN/OUT/INOUT parameters?

    These are parameters you define as part of the function argument list that get returned back as part of the result. When you create functions, the arguments are defaulted to IN parameters when not explicitly specified (which means they are passed in and not returned) which is why you sometimes see PgAdmin do something like IN somevariable variabletype when you use the function wizard.

    You can have INOUT parameters as well which are function inputs that both get passed in, can be modified by the function and also get returned.

    SQL OUTPUT parameters – return multiple records

    --SQL returning multiple records
    CREATE OR REPLACE FUNCTION fn_sqltestmulti(param_subject varchar, 
      OUT test_id integer, OUT test_stuff text) RETURNS SETOF record
    AS $$
      SELECT test_id, test_stuff 
        FROM testtable where test_stuff LIKE $1;
    $$
    LANGUAGE 'sql' VOLATILE;
    
    --example
    SELECT * FROM fn_sqltestmulti('%stuff%');
    
     --OUTPUT--
     test_id |     test_stuff
    ---------+--------------------
           1 | this is more stuff
           2 | this is new stuff
    

    MORE EXAMPLES

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can any one please tell me the difference between target and currenttarget in flex?
Could someone please tell me the differences between using a Form, Panel or a
Can any one please tell me what is the difference between Task and Process
Can some one please tell me what is the difference between vector vs deque.
Please can any one tell me whats the difference between declaring a variable inside
Can somebody please tell, what's the difference between the following two statements: TimeZone.getTimeZone(America/New_York) and
Can somebody please tell me whether there is any difference between SPML and WSDL?
can somebody please tell me the difference between the following two code snippets: //Code
can you please tell me the difference between the point and the arrow, for
Please tell me the difference between test.length and [test length] ? Which is more

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.