InterviewSolution
Saved Bookmarks
| 1. |
Which statement terminates the execution of a function?(a) BEGIN…END(b) RETURN(c) ITERATE(d) LOOP |
|
Answer» The correct answer is (b) RETURN Easiest explanation: The ‘RETURN’ statement is used only within stored functions, not stored procedures, triggers, or events. When this statement is executed it terminates execution of the function. |
|