Interviewer And Interviewee Guide

Oracle PL-SQL Interview Question:

Give the structure of the function?

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

CREATE OR REPLACE FUNCTION FUNCTION_NAME(PARAMETERS)
RETURN RETURN_TYPE;
IS
DECLARATION_SECTION
BEGIN
EXECUTION_SECTION
RETURN RETURN_VARIABLE;
EXCEPTION
EXECUTION_SECTION
RETURN RETURN_VARIABLE;
END;
Submitted by: Suraj

Read Online Oracle PL-SQL Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.