HI ,
Can anyone explain the use of the ^ sybol with an example in Sql sever.
Thanks in advance,
Ravi.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sagar PardeshiPosted Jul 25, 2017, 5:30 AM
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:
More info on the MSDN page for bitwise operations-