InterviewSolution
Saved Bookmarks
| 1. |
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. |
|