SELECT AgentId, StartTime,
EventTo = dateadd(hh,datepart(hh,StartTime)+1,convert(datetime,convert(varchar,StartTime,112 ))),
EndTime
from [stage].[Agent]
where EndTime is not null and StartTime is not null
当我在名为DbFit的工具中运行时,上面的行会产生错误,但是它会在SSMS中成功运行。
An expression of non-boolean type specified in a context where a condition is expected, near 'EndTime'.
在SSMS中重现错误的唯一方法如下:
SELECT AgentId, StartTime,
EventTo = dateadd(hh,datepart(hh,StartTime)+1,convert(datetime,convert(varchar,StartTime,112 ))),
EndTime
from [stage].[Agent]
where EndTime
关于问题是什么以及如何解决它的任何想法......
答案 0 :(得分:0)
这是一种解决方法,而不仅仅是一个答案。这是DbFit存在的问题。有关详细信息,请参阅https://github.com/dbfit/dbfit/issues/284