InterviewSolution
| 1. |
What Is The Basic Difference Between Procedure And Function? |
|
Answer» A PROCEDURE is executed as a PL/SQL statement. It can accept more than one PARAMETER as an input from the CALLING environment and may return NONE, one, or more than one VALUE. A procedure is executed as a PL/SQL statement. It can accept more than one parameter as an input from the calling environment and may return none, one, or more than one value. |
|