InterviewSolution
Saved Bookmarks
| 1. |
How many values can be returned from a given stored function?(a) 0(b) 1(c) 2(d) 3 |
|
Answer» The correct answer is (b) 1 The best explanation: In MySQL, the stored function cannot return multiple values. Instead, multiple stored functions can be written and invoked from within a single statement however, they are different from stored procedures. |
|