InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Procedure And Function? |
|
Answer» Functions are named PL/SQL blocks that return a VALUE and can be called with ARGUMENTS PROCEDURE a named block that can be called with parameter. A procedure all is a PL/SQL statement by itself, while a Function CALL is called as PART of an expression. Functions are named PL/SQL blocks that return a value and can be called with arguments procedure a named block that can be called with parameter. A procedure all is a PL/SQL statement by itself, while a Function call is called as part of an expression. |
|