<<,>> and <=> when these operators are used.
Asked
Active
Viewed 44 times
-3
-
2https://dev.mysql.com/doc/refman/8.0/en/bit-functions.html, https://stackoverflow.com/questions/21927117/what-is-this-operator-in-mysql – ADyson Jun 08 '18 at 13:53
-
>>, << is it a comparison operator ? – B L Praveen Jun 08 '18 at 14:08
-
@BLPraveen Did you read the links? `<<` and `>>` are no comparison operators. – Ivar Jun 08 '18 at 14:26
1 Answers
1
>>
is right shift opperator. https://dev.mysql.com/doc/refman/8.0/en/bit-functions.html#operator_right-shift
<=>
is Null safe comparator https://dev.mysql.com/doc/refman/8.0/en/comparison-operators.html#operator_equal-to

Juan Carlos Oropeza
- 47,252
- 12
- 78
- 118