本文介绍了如何比较sql中的datetime的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个视图,其中我有多个列我必须进行查询,我想匹配日期列。
表示参与时间大于转移时间然后它将显示来自视图的员工数据。我将如何做。
在where子句中有问题
where convert(datetime,ShiftTimeIn)< = convert(datetime,CreatedOn );
I have a view in which i have multiple columns i have to make a query in i want to match to colums of dates.
means attendence time in is greater then shift time then it will show employee data from views. how will i do it.
having problem in where clause
where convert(datetime, ShiftTimeIn) <= convert(datetime, CreatedOn);
推荐答案
这篇关于如何比较sql中的datetime的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!