I'm trying to create a view where I want a column to be only true or false. However, it seems that no matter what I do, SQL Server (2008) believes my bit column can somehow be null.
I have a table called "Product" with the column "Status" which is INT, NULL
. In a view, I want to return a row for each row in Product, with a BIT column set to true if the Product.Status column is equal to 3, otherwise the bit field should be false.
Example SQL
SELECT CAST( CASE ISNULL(Status, 0)
WHEN 3 THEN 1
ELSE 0
END AS bit) AS HasStatus
FROM dbo.Product
If I save this query as a view and look at the columns in Object Explorer, the column HasStatus is set to BIT, NULL
. But it should never be NULL. Is there some magic SQL trick I can use to force this column to be NOT NULL
.
Notice that, if I remove the CAST()
around the CASE
, the column is correctly set as NOT NULL
, but then the column's type is set to INT
, which is not what I want. I want it to be BIT
. :-)