group_bit_xor

description

Syntax

expr GROUP_BIT_XOR(expr)

Perform an xor calculation on expr, and return a new expr. All ints are supported

example

  1. mysql> select * from group_bit;
  2. +-------+
  3. | value |
  4. +-------+
  5. | 3 |
  6. | 1 |
  7. | 2 |
  8. | 4 |
  9. +-------+
  10. 4 rows in set (0.02 sec)
  11. mysql> select group_bit_xor(value) from group_bit;
  12. +------------------------+
  13. | group_bit_xor(`value`) |
  14. +------------------------+
  15. | 4 |
  16. +------------------------+

keywords

  1. GROUP_BIT_XOR,BIT