InterviewSolution
Saved Bookmarks
| 1. |
The number of values that can be returned from a given stored function is ______________(a) 0(b) 1(c) 2(d) 3 |
|
Answer» The correct option is (b) 1 The 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. |
|