declare @x bit set @x = 0 print @x set @x = case when @x = 1 then 0 else 1 end print @x
set @x = ~@x
declare @t int set @t = 0xAAAAAAAA select ~@t, @t ^ 0xFFFFFFFF