Interview Questions Answers.ORG
Interviewer And Interviewee Guide
Interviews
Quizzes
Home
Quizzes
Interviews DB Oracle Interviews:Concepts and ArchitectureData AccessDatabase ArchitectureDatabase ManagementDatabase Security OracleDistributed ProcessingFlexfieldForms ReportsGeneral OracleMemory ManagementMTO-SAP Financial AccountingOCIOracle AOLOracle AROracle Backup RecoveryOracle D2KOracle DatabaseOracle Database DeveloperOracle DB OptimizationOracle DBAOracle DeveloperOracle ETLOracle Forms 3.0Oracle Forms 4.0Oracle GLOracle PL-SQLOracle RMANOracle ScenariosOracle SecurityOracle SQLOracle System ArchitectureOracle Technology Network (OTN)Programmatic ConstructsRAC (Real Application Clusters)SQL Plus
Copyright © 2018. All Rights Reserved
Oracle PL-SQL Interview Question:
Give the structure of the function?
Submitted by: AdministratorFUNCTION name (argument list .....) Return datatype is
local variable declarations
Begin
executable statements
Exception
execution handlers
End;
Submitted by: Administrator
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
RETURN RETURN_TYPE;
IS
DECLARATION_SECTION
BEGIN
EXECUTION_SECTION
RETURN RETURN_VARIABLE;
EXCEPTION
EXECUTION_SECTION
RETURN RETURN_VARIABLE;
END;
Submitted by: Suraj
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.
https://InterviewQuestionsAnswers.ORG.