Jump to: navigation, search

PostgreSQL BITWISE XOR

From w3cyberlearnings

Contents

Postgresql XoR operator

The bitwise XOR operator.

Syntax XOR operator

a # b

Example 1

postgres=# SELECT 9#3 as xor1;
 xor1 
------
   10
(1 row)

// binary XOR 
9=1001
3=0011
 =1010

Example 2

postgres=# SELECT 12#3 as xor1;
 xor1 
------
   15
(1 row)

Example 3

postgres=# SELECT 2#5 as xor1;
 xor1 
------
    7
(1 row)

Related Links


  1. addition(+)
  2. subtraction(-)
  3. multiplication(*)
  4. division(/)
  1. modulo(%)
  2. exponentiation(^)
  3. square root(|/)
  4. cube root(||/)
  1. factorial(!)
  2. absolute value(@)
  3. bitwise AND(&)
  4. bitwise OR(|)
  1. bitwise XOR(#)
  2. bitwise NOT(~)
  3. bitwise shift left(<<)
  4. bitwise shift right(>>)
Navigation
Web
SQL
MISC
References