Call PL/SQL function

How to call a PL/SQL function in another PL/SQL function? Is it possible? Give example?

Questions by ramesh.akula9

Showing Answers 1 - 3 of 3 Answers

Jirange

  • Nov 7th, 2008
 

eg,
create or replace fun_1 return varchar2
as
ddmmyy varchar2;
begin
select sysdate into ddmmyy from dual;
end fun1;

in above example function fun_1 calling another function (i.e. sysdate) thro' select statement.
 this way you can call any function in pl/sql function

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions