Create a computed column on a datetime

2019-02-15 21:21发布

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! :)

3条回答
Lonely孤独者°
2楼-- · 2019-02-15 21:50

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

CONVERT(INT,IsNULL(DateTimeDeleted,0))/CONVERT(INT,IsNULL(DateTimeDeleted,1))
查看更多
劳资没心,怎么记你
3楼-- · 2019-02-15 22:00

I think this should work:

update table
set IsDeleted = case when DateTimeDeleted is null then 0 else 1 end
查看更多
别忘想泡老子
4楼-- · 2019-02-15 22:06
Alter Table MyTableName 
  Add IsDeleted As 
     (Case When [DateTimeDeleted] Is Null 
       Then (0) Else (1) End)

This will output as an integer... If you really want it to be a bit, then:

Alter Table MyTableName 
  Add IsDeleted As 
     cast( (Case When [DateTimeDeleted] Is Null 
       Then (0) Else (1) End) as Bit)
查看更多
登录 后发表回答