can we use out parameter in a function?Give an example.
Answer Posted / parivesh sinha
yes.
create or replace function p_tst (v_p out varchar2) return
varchar as
v_g varchar2(50);
begin
select ENAME2 into v_p from emp where empno='11';
return v_p;
end;
| Is This Answer Correct ? | 18 Yes | 5 No |
Post New Answer View All Answers
What is embedded sql in db2?
What is record type in pl sql?
How to display the current date in sql?
What is full join?
how many ways we can we find the current date using mysql? : Sql dba
Is record in pl sql?
what is the difference between undefined value and null value? : Sql dba
What is auto increment feature in sql?
What is the maximum number of rows in sql table?
What are the methods of filing?
Does normalization improve performance?
What is a unique constraint?
What does (+) mean in sql joins?
How does sql developer connect to oracle database?
what are the different type of normalization? : Sql dba