InterviewSolution
Saved Bookmarks
| 1. |
The IN, OUT and INOUT keywords do not apply to stored functions.(a) True(b) FalseThe question was asked during an online exam.My question is from Stored Functions and Procedures in portion Stored Programs of MySQL |
|
Answer» RIGHT answer is (a) True The explanation is: The IN, OUT and INOUT KEYWORDS do not apply to stored FUNCTIONS, TRIGGERS and events. Triggers and events do not have parameters at all. For the stored functions, all parameters are like IN parameters. |
|