Structure of a function?

Posted by silpa on Mar 25 2007

CREATE OR REPALCE FUNCTION funcationname (parameter type) RETURN type
Structure of a function is:

IS
variable declaration
BEGIN
function body

return value;

END;

Leave a Comment