作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的查询中 where
条款我有条件:
User.DateOfBirth BETWEEN @startDate AND @endDate
@startDate
和
@endDate
可以为空。如
@startDate
为空,我想要所有小于或等于
@endDate
的值;如果
@endDate
为空,我想要所有大于或等于
@startDate
的值;如果两者都为空,我想要所有值。
((( User.DateOfBirth > @startDate) OR (@startDate Is null)) AND (( User.DateOfBirth < @endDate) OR (@endDate is null)) )
BETWEEN
包括终点(小于/大于或等于),但对空情况的描述没有。我认为这是一个疏忽。
最佳答案
尝试这个:
[User].DateOfBirth BETWEEN ISNULL(@startDate,[User].DateOfBirth) AND ISNULL(@endDate,[User].DateOfBirth)
关于sql - 如何在 BETWEEN 子句中包含空值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24880969/
我是一名优秀的程序员,十分优秀!