InterviewSolution
Saved Bookmarks
| 1. |
Which of these return a result to the client?(a) Stored functions(b) Stored procedures(c) Triggers(d) Events |
|
Answer» Correct option is (a) Stored functions Easy explanation: Stored functions return a result from a calculation and can be used in expressions. Stored procedures do not return a result directly but can be used to perform general computations. |
|