can we use out parameter in a function?Give an example.

Answers were Sorted based on User's Feedback



can we use out parameter in a function?Give an example...

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

can we use out parameter in a function?Give an example...

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

can we use out parameter in a function?Give an example...

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

can we use out parameter in a function?Give an example...

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

Post New Answer

More SQL PLSQL Interview Questions

what is the Default Libraries for Oracle Report 6i

0 Answers   IBM,


query to retrive the employees whose sal is greater than avg sal

10 Answers   TCS,


What is 19 null in sql?

0 Answers  


How to convert ms-excel file to oracle table?

2 Answers  


How pl/sql source code can be protected?

3 Answers  






what is SCALAR Queries?

2 Answers   ITC Infotech,


What is audit logout in sql profiler?

0 Answers  


What is gpt format?

0 Answers  


What is the full form of sql?

0 Answers  


What is cursor and why it is required?

0 Answers  


Can you create a table with Primary Key not as the clustered index.

2 Answers   CGI,


Explain the insert into statements in sql?

0 Answers  


Categories