• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

可以处理 sql server 的 null 或 valued 日期范围的 sql 查询

用户头像
it1352
帮助6

问题说明

使用 SQL Server 2008.我有一个存储过程,它具有开始和结束日期作为日期范围的输入参数.

Using SQL Server 2008. I have a stored proc which has start and end date as input parameters for date range.

正在寻找一个 单一 sql 查询,它在 where 子句中具有开始和结束日期之间的日期,该查询可以处理日期均为空或两者都有值的两种情况.

Looking for a single sql query which has a between start and end date in the where clause which can handle both cases where the dates are either both null or both have values.

我不想使用 IF 语句.

I don't want to use an IF statement.

正确答案

#1
WITH    limits AS
        (
        SELECT  COALESCE(@startDate, MIN(mydate)) AS startDate, COALESCE(@endDate, MAX(mydate)) AS endDate
        FROM    mytable
        )
SELECT  m.*
FROM    limits
JOIN    mytable m
ON      mydate BETWEEN startDate AND endDate

如果在 mydate 上有索引,这将是最有效的,因为这个条件是 sargable 并且将使用 Index Seek.

This will be most efficient if there is an index on mydate, since this condition is sargable and will use an Index Seek.

如果没有索引,则使用其他人提出的IFNULL结构.

If there is no index, then use IFNULL constructs proposed by others.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tangibhic
系列文章
更多 icon
同类精品
更多 icon
继续加载