will function return more than one value how
Answers were Sorted based on User's Feedback
Answer / murali
Yes. By using Out Parameter we can return morethan one value.
Is This Answer Correct ? | 20 Yes | 11 No |
Answer / chaitra
A function can return more than one value if the function
is returning a data structure like PL/SQL Table, REF CURSOR
etc.
But returning more than one value by the use of OUT
parameter cannot be done as this fails when the function is
called from an SQL statement ( as in where var = fn(..)).
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / rahul
To get more then two values from a function use a data
structure like record or VARRYs to get more then one value
from function
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / t p tripathy
yes function will return more than one value by using ref
cursor.
Is This Answer Correct ? | 6 Yes | 2 No |
Answer / suresh mallipeddi
using oracle collections like varrays or records function
return more then value
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / prashant tripathi
yes, function can return more then one value.
murali is write but.... it is not a good progrmming way.
Sakthivel is also write that....function must return one
value.
My Answer :
fucntion can return more then one value but in the if-else
condition. it return one value at a time. but it can return
more than one value.
Is This Answer Correct ? | 5 Yes | 3 No |
Answer / sakthivel
NO,we cannot use inout,out parameters in functions. so
function must return one value
Is This Answer Correct ? | 7 Yes | 27 No |
How to display the contents of a current record fetched in a reference cursor?
i don't want the message as 14 rows updated just it should update what it will do
what is inline view?
What are wait events. Describe the wait event tables.
Explain UNION,MINUS,UNION ALL, INTERSECT?
wirte a query to filter improper date format follwing table? date 20-apr 22-may-2010 26-jun-2010 feb-2009 i want the output date 22-may-2010 26-jun-2010
How to run sql commands in sql*plus?
how would you write a query to select all teams that won either 2, 4, 6 or 8 games? : Sql dba
What normalization means?
What is difference between stored procedure and trigger?
What's the procedure?
what is a constraint? : Sql dba