in c# i have a:
a = !a
(if false makes it true, if true makes it false)
in sql i want to do the same with a BIT variable
something like:
declare @a bit
set @a = 1
select @a
set @a = not (@a)
select @a
can i?
i could always do an IF, but this would "look better" :)