Give the structure of the function ?

       FUNCTION name (argument list .....) Return datatype is     local variable declarations     Begin          executable statements     Exception          execution handlers     End;

Showing Answers 1 - 1 of 1 Answers

bavani

  • Oct 23rd, 2006
 

create or replace function function_name(formal parameters list with only IN mode)

return datatype

is

local variable declarations

begin

 executable statments;

 return value;

end function_name;

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