Stored Procedure Question:

Explain about the RETURN statement?

Tweet Share WhatsApp

Answer:

A RETURN statement is used to terminate the execution of a stored function. This inturn returns a value of expr to the function caller. In a stored function there should be at least a single return statement. If there exists multiple functions it can have multiple exit points.

Download Stored Procedure PDF Read All 17 Stored Procedure Questions
Previous QuestionNext Question
Explain about the process which takes place to execute a Stored routine?Explain about cursors?