18 April 2008

How to call a function within PL/ SQL?

Declare

-- Initialize the date variable.
strDateVar Date;

Begin

-- Call the function and return the value to the variable.
strDateVar := PACKAGE_NAME.Function_Name(Any_related_arguments);

End;

No comments: