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 can we link a sql database to an existing android app?
Interchange the value of a column Gender in a table where values are Male and Female. So, where the value is Male, it should changed to Female and Female to Male.
sales persons should always receive commission of 100 at least. employees who r not sales persons should never receive commission.(Triggers)
What is procedure explain with example?
how to check the 3rd max salary from an employee table?
How do sql triggers work?
1. how to use the check option constraints in sql query..? 2.how to add data in a complex query ? 3.is it possible to use commit or rollback or savepoint in triggers...if not why please explain with examples...? 4.what is the difference between meterialized view and normal view..how to create materialized view and how to use it..? 5.what is varray...? what is the advantage of the varray ? please expalin with a simpel example..i want to load into a table (student no and name and his marks..) please give example.. 6.what are the bulk bind exceptions...how to use bulk bind and how to use bulk collect..please explain with example... 7.what is for update of and where current of ...? 8 what is the use of nowait ? 9.please give an example for nocopy in a simple plsql query 10.create an index in a table...tellme how to use the index in a where clause to do performance tunning...
How do I run sql profiler?
How do you optimize SQL queries ?
6 Answers CarrizalSoft Technologies, Infosys, Oracle,
My select statement is not working as expected, So, to overcome from such issues what are the steps needed to be taken care?
how to concatenate two character strings? : Sql dba
What is the purpose of the partition table?