InterviewSolution
Saved Bookmarks
| 1. |
What returns a result to the client?(a) Stored functions(b) Stored procedures(c) Triggers(d) Events |
|
Answer» Correct choice is (a) Stored functions To explain I would say: 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. |
|