Can we use out parameter in function?
Answers were Sorted based on User's Feedback
Answer / anoop
Yes we can use out parameter in functions, it is of great
use when we intend to return more than one value from a
function.
Is This Answer Correct ? | 16 Yes | 4 No |
Answer / reddyreddy143
1.Yes we can use out parameters in a function.but we have
to assign the out parameter value to the return datatype.
2.But when we use out parameters in function we can't call
the function from a select statement
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / suresh babu
Yep,we can use the out parameter in Function,the Function won't show the error when using the out parameter.But it is meaningless.The Function,which used the out parameter never return the result.The IN parameter only useful for Functions.
Is This Answer Correct ? | 0 Yes | 0 No |
What is cross join example?
What is compound trigger?
What is the difference between delete and truncate commands?
I Defined SP1, Sp2 (sp=StoreProcedures)In Package Specification but I Implemented Sp1, sp2, sp3, sp4, sp5 then What type of Error You will find????
what is the different between unique+not null & primary key,
what are date and time data types? : Sql dba
How do you concatenate in sql?
I have a CURSOR then why we need BULK COLLECT again?
What is rowtype?
Write a sql query to find the names of employees that begin with ‘a’?
Can we group by two columns in sql?
suppose u hav 1 book with set...page 1-100 n 101 -200 now print page from 2-100 n 102 -200... how we will do..?