I have a nullable DateTime column in my SQL Server 2005 table called DateTimeDeleted.
I'd like to have a BIT type computed column that is 1 if DateTimeDeleted is not null, otherwise 0. However, I can't seem to get the syntax for the formula correct.
I've tried:
(TsDeleted IS NULL) = 0
but it gives me a syntax error.
Help! :)
This will work, basically it does a divide by itself if it's not null and then divide 0 by 1 if it's NULL
I think this should work:
This will output as an integer... If you really want it to be a bit, then: