can we use out parameter in a function?Give an example.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sanket
Actual parameter:Actual parameter is a parameter which are
actually pass to the procedure or function.
Formal parameter:Formal parameter is a parameter which we
are defining while declaring procedure.
Is This Answer Correct ? | 4 Yes | 3 No |
Answer / mahesh
wht is actaul and formal parameters and wht is the main
difference
can any one knows this answer kindly inform me
Is This Answer Correct ? | 2 Yes | 3 No |
Answer / friend
Actual parameter:these are the parameters where we use in
exection of a procedure
Formal parameter:these are the parameters where we use as
in and out parameters
Is This Answer Correct ? | 0 Yes | 4 No |
What is difference between CHAR and VARCHAR2?What is the maximum SIZE allowed for each type?
how to use like conditions? : Sql dba
What are variables in pl sql?
Which is better stored procedure or query?
Explain the insert into statements in sql?
What is dense_rank?
how can we repair a mysql table? : Sql dba
Mention what are the benefits of pl/sql packages?
What is difference between my sql and sql?
What is the difference between inner join and left join?
what is the difference between inner and outer join? Explain with example. : Sql dba
Why do we need pl sql?