InterviewSolution
Saved Bookmarks
| 1. |
Can A Return Statement In The Function Code Be Followed By Other Valid Pl/sql Statements? |
|
Answer» It is ADVISABLE to KEEP the RETURN STATEMENT at the end of the function code. This is because the function processes the STATEMENTS until the RETURN statement is encountered and then the CONTROL is passed back to the calling environment. It is advisable to keep the RETURN statement at the end of the function code. This is because the function processes the statements until the RETURN statement is encountered and then the control is passed back to the calling environment. |
|