InterviewSolution
Saved Bookmarks
| 1. |
A stored procedure is invoked using the statement __________(a) INVOKE(b) SEE(c) CALL(d) RETURNI had been asked this question in semester exam.I'm obligated to ask this question of Security for Stored Programs and Views topic in section Stored Programs of MySQL |
|
Answer» CORRECT ANSWER is (c) CALL To explain: In MySQL, a stored procedure is invoked using the CALL statement. A stored procedure does not have a return VALUE but can MODIFY its PARAMETERS. It also returns some result sets. |
|