Possible Duplicate:
What does a caret (^) do in a SQL query?
Why does SELECT 2^3 return 1 in SQL Server ?
The above was an interview question I came across and could not get why it returns 1.
After googling a bit, I found out that it is a bitwise operator. But I still couldn't understand why 1 is an output.
I have basic knowledge of queries, stored procedure and T-SQL. Can anybody please explain to me:
- How do I get 1 in SELECT 2^3 ?
- What is the practical use of such operators ?
And if there is a practical use, then what are the best practices while using such operators
SELECT POW(2,3)should give you8! – RobertPitt Nov 5 '10 at 11:49