Bitwise operator performs in the same way as performs in programming language.
There are three bitwise operator here.
1.&(AND)
2.| (OR)
3.^(Exclusive OR)
SELECT 5 & 6 AS ResultThere are three bitwise operator here.
1.&(AND)
2.| (OR)
3.^(Exclusive OR)
SELECT 5 | 6 AS Result
SELECT 5 ^ 6 AS Result
That’s It.
Enjoy Learning.
No comments:
Post a Comment