InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the correct order of precedence (high to low)?(a) !, ^, |
|
Answer» Right choice is (a) !, ^, <<, XOR Best explanation: When MySQL evaluates an expression, it looks at the operators to determine the order in which it should group the terms of the expression. Some operators have higher precedence, and evaluated earlier than others. |
|