Trying to perform a single boolean NOT operation, it appears that under MS SQL Server 2005, the following block does not work

DECLARE @MyBoolean bit;
SET @MyBoolean = 0;
SET @MyBoolean = NOT @MyBoolean;
SELECT @MyBoolean;

Instead, I am getting more successful with

DECLARE @MyBoolean bit;
SET @MyBoolean = 0;
SET @MyBoolean = 1 - @MyBoolean;
SELECT @MyBoolean;

Yet, this looks a bit a twisted way to express something as simple as a negation.

Am I missing something?

link|improve this question

feedback

8 Answers

up vote 33 down vote accepted

Use the ~ operator:

DECLARE @MyBoolean bit
SET @MyBoolean = 0
SET @MyBoolean = ~@MyBoolean
SELECT @MyBoolean
link|improve this answer
This did not work. It turned 0 into -1, and 1 into -2. – Martin Aug 3 '10 at 13:56
1  
It's because you're using an int, not a bit. – Jonas Lincoln Aug 5 '10 at 14:07
2  
Column is a bit ... could the DB version matter? – Martin Aug 10 '10 at 12:53
I know that this works in SQL Server 2008. I do this all the time. The question was for SQL Server 2005, which I am not sure if it works there or not. – Dan VanWinkle Dec 14 '11 at 19:36
Correction: According to MS, this should work in 2005 as well. More info here. – Dan VanWinkle Dec 14 '11 at 19:49
show 1 more comment
feedback

Your solution is a good one... you can also use this syntax to toggle a bit in SQL...

DECLARE @MyBoolean bit;
SET @MyBoolean = 0;
SET @MyBoolean = @MyBoolean ^ 1; 
SELECT @MyBoolean;
link|improve this answer
This solution did work ... thanks. – Martin Aug 3 '10 at 13:57
Just for an FYI, this works because it bitwise exclusive operation. Same as the XOR operator in many languages. This is basically the same as doing SET @MyBoolean = 1 - @MyBoolean except it is using bit math rather than integer math. Even though this is appropriate and works, it can be confusing to people who don't understand bit math. More info here. @Jonas Lincoln's solution is better. – Dan VanWinkle Dec 14 '11 at 19:46
feedback

Subtracting the value from 1 looks like it'll do the trick, but in terms of expressing intent I think I'd prefer to go with:

SET @MyBoolean = CASE @MyBoolean WHEN 0 THEN 1 ELSE 0 END

It's more verbose but I think it's a little easier to understand.

link|improve this answer
feedback

In SQL 2005 there isn't a real boolean value, the bit value is something else really.

A bit can have three states, 1, 0 and null (because it's data). SQL doesn't automatically convert these to true or false (although, confusingly SQL enterprise manager will)

The best way to think of bit fields in logic is as an integer that's 1 or 0.

If you use logic directly on a bit field it will behave like any other value variable - i.e. the logic will be true if it has a value (any value) and false otherwise.

link|improve this answer
feedback

BIT is a numeric data type, not boolean. That's why you can't apply boolean operators to it.
SQL Server doesn't have BOOLEAN data type (not sure about SQL SERVER 2008) so you have to stick with something like @Matt Hamilton's solution.

link|improve this answer
feedback

Use ABS to get the absolute value (-1 becomes 1)...

DECLARE @Trend AS BIT
SET @Trend = 0
SELECT @Trend, ABS(@Trend-1)
link|improve this answer
feedback

When using the bitwise NOT operator, '~', you have to make sure your column or variable is declared as a bit.

This won't give you zero:

Select ~1 

This will:

select convert(bit, 1)

So will this:

declare @t bit
set @t=1
select ~@t
link|improve this answer
feedback

I think that this solution might work:

<column name> bit not null,
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.