InterviewSolution
Saved Bookmarks
| 1. |
How many values can be returned from a stored procedure?(a) 0(b) 1(c) 2(d) 3I have been asked this question in an online quiz.Asked question is from Stored Functions and Procedures topic in division Stored Programs of MySQL |
|
Answer» RIGHT option is (a) 0 For explanation I would SAY: In MYSQL, unlike the stored functions, the stored procedures cannot return VALUES. They can be used to perform calculations or produce the result SETS passed back to the clients. |
|