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
Explain select statements in sql?
What does trigger mean in psychology?
What is form and report?
How to write a query to show the details of a student from students table whose
Is left join same as inner join?
What is nvl?
What is the syntax and use of the coalesce function?
What is the meaning of disabling a trigger?
Can we use views in stored procedure?
How do you declare a constant?
Can we create index on primary key?
Which one is better subquery or joins?
If the application is running very slow? At what points you need to go about the database in order to improve the performance?
What is sql*loader and what is it used for?
How do sql databases work?