InterviewSolution
Saved Bookmarks
| 1. |
How many values can be returned from a stored procedure?(a) 0(b) 1(c) 2(d) 3 |
|
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. |
|