in procedure how to return a value
Answers were Sorted based on User's Feedback
Answer / amit
In a procedure, we can return a value using OUT PARAMETER
or EVEN USING IN OUT PARAMETER.
For Eg:
CREATE OR REPLACE PROCEDURE add_num(a IN NUMBER, b IN OUT
NUMBER) IS
BEGIN
b:= a + b;
END add_num;
The IN OUT / OUT parameters can be modified within PLSQL
block and the updated values of this parameter can be
refered using a actual paramter once the execution of this
procedure is completed.
Is This Answer Correct ? | 8 Yes | 0 No |
In procedure we can return value using Out Parameter,
Is This Answer Correct ? | 1 Yes | 3 No |
Explain the multi-organization structure.
What is ment by Global Templates in Oracle.
what is the diff between custom.pll and form personalization? Tell me one example?
Write an SQL Query to Delete Duplicate records from a table using ROWID.
24 Answers pspl, Satyam, Thinkways,
what are the match approvals in PO?
CAN YOU CUSTOMISE THE COUTOMISE CUS_TOP
If the valueset if of type –TABLE then how many tables can we attach in the valueset ?
what are the prerequisites for costing transactions?
Can you explain the difference between architecture followed in 10g & 11g?
Is it possible calling from one report to another? if possible means tell me ?
3 Answers Intelligroup, Satyam,
What are different execution methods of executabls?
What is multi org?