Paul Ellery
Paul Ellery

Reputation: 1745

What does a caret (^) do in a SQL query?

What is the caret (^) doing in the following SQL Server query?

SELECT 1^2,  1^3;

which gives the results:

3   2

I came across this before I found the SQUARE() function.

Upvotes: 14

Views: 16201

Answers (2)

Andomar
Andomar

Reputation: 238096

The caret (^) translates to the XOR operator, which is a "bitwise exclusive or". In plain english it means "either, but not both". Here's what it does:

decimal 1 = binary 001                     decimal 1 = binary 001
XOR                                        XOR
decimal 2 = binary 010                     decimal 3 = binary 011
=                                          =
decimal 3 = binary 011                     decimal 2 = binary 010

More info on the MSDN page for bitwise operations.

Upvotes: 23

Denis Valeev
Denis Valeev

Reputation: 6015

   3^2
   =
   000011  (3)
   xor
   000010  (2)
   =  
   000001  (1)
   =
   1

Upvotes: 5

Related Questions