sqlformat icon indicating copy to clipboard operation
sqlformat copied to clipboard

Support Bitwise operations

Open benlaan opened this issue 7 years ago • 0 comments

Need to add bitwise operations:

see MSDN: Bitwise Operators (Transact-SQL)

SELECT 1
FROM A
WHERE ~A.B & (A.C | A.D) <> 0 
  AND A.E ^ 5 = 0

benlaan avatar Mar 10 '17 01:03 benlaan