Home » MYSQL » MySQL Type Conversion in Expression Evaluation » Question
  1. Which of the following is the correct order of precedence (high to low)?
    1. !, ^, XOR, <<
    2. !, <<, XOR, ^
    3. ^, !, <<, XOR
    4. !, ^, <<, XOR
    5. None of these
Correct Option: D

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.



Your comments will be displayed only after manual approval.