What is the best way to convert an int or null to boolean value in an SQL query, such that:
- Any non-null value is TRUE in the results
- Any null value is FALSE in the results
|
1
|
What is the best way to convert an int or null to boolean value in an SQL query, such that:
|
|||
|
|
|
|
To my knowledge (correct me if I'm wrong), there is no concept of literal boolean values in SQL. You can have expressions evaluating to boolean values, but you cannot output them. This said, you can use CASE WHEN to produce a value you can use in a comparison:
|
||||||
|
|
|
In Oracle, assuming you use 0 for false and 1 for true:-
You can also write this using the CASE syntax, but the above is idiomatic in Oracle. DECODE is a bit like a switch/case; if col is NULL then 0 is returned, else 1. |
||
|
|
|
|
Assuming you want 0,1 value as a return, and that we are talking about integer I would use the logic specified by Torbjörn and wrap it in the function
so then you can use it whenever you need by simply calling
The answer provided by Tomalak is more universal though as it would work with any data type |
||
|
|
|
|
You may want to do a Convert(BIT, Value) of your result. Because something SQL will return an error that the value is not a boolean. |
||
|
|
|
|
Duh? Is this a trick question? |
||
|
|
|
No need to use case... when:
Returns 1 for all fields not NULL and 0 for all fields that are NULL, which is as close as you can get to booleans in SQL. |
||||||||||||
|
|
|
I think it goes something like this Actually, the ISNULL, may need to be WHEN thevalue IS NULL THEN 0 |
|||
|
|
|
|
||
|
|