InterviewSolution
Saved Bookmarks
| 1. |
What does the expression ‘2 BETWEEN 2 AND 5’ result in?(a) True(b) False(c) -1(d) 2I got this question during a job interview.My question is from External Security: Preventing Unauthorized Network Access in division Access Control and Security of MySQL |
|
Answer» RIGHT choice is (a) True To explain I would say: The ‘BETWEEN ……. AND’ clause is used to RETURN a boolean value, if the given operand value LIES between the values specified by the ‘AND’ clause. The range ENDPOINTS are inclusive. |
|