作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码:
DECLARE @d1 DATETIME
DECLARE @d2 DATETIME
SET @d1 = '2015-01-01 00:00:00'
SET @d2 = '2015-12-31 23:59:59.999'
SELECT
CASE
WHEN ('2016-01-01 00:00:00' BETWEEN @d1 AND @d2)
THEN 'is between'
ELSE 'not between'
END AS BetweenOrNotBetween
BETWEEN
的范围晚 1 毫秒函数,但在我的 SQL 2008 服务器实例上,结果是
'介于'而不是预期的
'不在之间' ...
最佳答案
查看 datetime type 的文档.在 Rounding of datetime Fractional Second Precision
部分你会找到你的问题的解释:
datetime values are rounded to increments of .000, .003, or .007 seconds, as shown in the following table.
is between
.不幸的是,这就是
datetime
数据类型有效,对此您无能为力,除非您可以使用其他数据类型,例如
datetime2
.
关于SQL Server 2008 BETWEEN 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34796978/
我是一名优秀的程序员,十分优秀!