Explain the difference between a FUNCTION, PROCEDURE and
PACKAGE.
Answer Posted / aleena
PROCEDURE:
cannot return a value
SYNTAX:
CREATE PROCEDURE procedure_name [argument datatype]
AS
BEGIN
sql statements
END;
/
FUNCTION:
returns a value
SYNTAX:
CREATE FUNCTION function_name [argument[IN] datatype]
RETURN datatype
AS
BEGIN
sql statements
END;
/
PACKAGES
Pakages are groups of functions,procedures,sql blocks
goruped together in a single unit.
there are two parts to creating a PACKAGE --1>CREATE
PACKAGE & 2> CREATE PACKAGE BODY
SYNTAX :
CREATE PACKAGE :
CREATE PACKAGE package_name
AS
FUNCTION function_name(datatype);
PROCEDURE procedure_name (datatype);
.......
.......(sql/plsql statements )
........
END;
CREATE PACKAGE BODY :
CREATE PACKAGE BODY packagebody_name
AS
FUNCTION function_name (datatype)
RETURN datatype
AS
.....
.....
.....
END function_name;
PROCEDURE procedure_name (datatype)
AS
......
.....
.....
END procedure_name
END PACKAGE;
| Is This Answer Correct ? | 46 Yes | 5 No |
Post New Answer View All Answers
What is mrc and what is its use? : oracle accounts receivable
Differentiate between earned discounts and unearned discounts? : oracle accounts receivable
i want to know about the javaBean.what is its purpose and how it can use in Forms.
hi iam kavya, i completed Oracle11i(finance module), i do not know how to face the interview questions please adivese me
Explain about party and customer in ar : oracle accounts receivable
What is an Oracle database Partial Backup?
Which is the best institute in Hyderabad to learn OBIEE and DataStage?Please tell me faculty name also
What is auto invoicing? : oracle accounts receivable
please send me oracle pl/sql exp resume. and also faqs...
key flexfield structure
How would you go about increasing the buffer cache hit ratio?
What is auto invoicing? Explain : oracle accounts receivable
Difference between negative and positive adjustments : oracle accounts receivable
how to write customizations in po
what are all the conversion and interfaces in GL,AP,AR,HRMS with example? otherwise send send link for these