vote up 0 vote down star

I have a field in a table that is boolean, a range of records have no value (not true or false). How do I write my SQL statement to find these?

I have tried the following SQL statements without success:

1) SELECT * FROM table WHERE field = NULL
2) SELECT * FROM table WHERE field != TRUE AND field != FALSE

Any help would be greatly appreciated.

Many Thanks, Ben

flag
You probably want to get a good book on SQL; NULL problems tend to plague people until they have an A-HA! moment, and a good book can speed the arrival of that moment. SQL for Smarties is fairly nice. – Hank Gay Jun 11 at 15:00
Thanks for all your answers, esp/ Mitch Wheat :) – ILMV Jun 11 at 15:05
NULL is not a value, it's absence of value. Thus no value could be compared to the absence of value. – Milen A. Radev Jun 11 at 15:23
@Milen: Pretty much every other language manages this just fine. IMO it's extremely dumb that SQL needs a different operator for this – Draemon Jul 9 at 11:57

3 Answers

vote up 14 vote down check
SELECT * FROM table WHERE field IS NULL
link|flag
1  
DOH! 17 seconds too slow :) – Nick DeVore Jun 11 at 14:58
Because it would be easy to miss: use "IS" instead of "=" with NULL. Instead of "!=", similarly, use "IS NOT NULL". – Carl Manaster Jun 11 at 14:59
vote up 3 vote down

You want IS NULL I believe:

SELECT * FROM table WHERE field IS NULL
link|flag
vote up 4 vote down

Try

select * from table where field IS null

link|flag

Your Answer

Get an OpenID
or

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