0 votes
in PL/SQL by
Explain The Difference Between A Function, Procedure And Package ?

1 Answer

0 votes
by

A function and procedure are the same in that they are intended to be a collection of PL/SQL code that carries a single task. While a procedure does not have to return any values to the calling application, a function will return a single value. A package on the other hand is a collection of functions and procedures that are grouped together based on their commonality to a business function or application.

Related questions

0 votes
asked Jun 13, 2023 in Sql by rahuljain1
0 votes
asked Mar 18, 2021 in PL/SQL by sharadyadav1986
...