在SQL CASE where子句中使用BETWEEN

时间:2011-03-24 08:46:56

标签: sql case where

我有一个表单,用户在其中提取报告。 在表单中,他们可以选择开始日期和结束日期,或者为两个值传递null。如果他们选择null,则返回有效日期< GETDATE() CASE声明似乎不喜欢,也不喜欢'<'运营商

这是我的剧本

SELECT * FROM tbReport
WHERE 
    EffectiveDate 
    CASE 
        WHEN (@StartDate IS NOT NULL AND @EndDate IS NOT NULL) 
        THEN BETWEEN (@StartDate AND @EndDate)          
         ELSE 
                  THEN < GETDATE()

    END

6 个答案:

答案 0 :(得分:8)

您可以在没有案例的情况下重写它,例如:

SELECT  * 
FROM   tbReport
WHERE   (
            @StartDate is not null 
            and 
            @EndDate is not null
            and 
            EffectiveDate between @StartDate AND @EndDate
        )
        or
        (
            (
                @StartDate is null 
                or 
                @EndDate is null
            )
            and 
            EffectiveDate < getdate()
        )

答案 1 :(得分:2)

假设这是SQL Server,您可以使用isnull:

来简化此操作
select *
from tbReport
where EffectiveDate between isnull(@StartDate, '1 Jan 1990')
      and isnull(@EndDate, getdate())

答案 2 :(得分:2)

这样的东西应该有用,我还没检查语法是否正确。

SELECT * FROM tbReport
WHERE EffectiveDate < IsNull(@EndDate,GetDate())
AND EffectiveDate > IsNull(@StartDate,'01/01/1979')

答案 3 :(得分:0)

CASE的语法在这里完全错误了。试试这个:

SELECT * FROM tbReport
WHERE 
    (@StartDate is null and @EndDate is null and EffectiveDate < GetDate()) or 
    (@StartDate is not null and @EndDate is not null and 
     EffectiveDate >= @StartDate and EffectiveDate <= @EndDate)

答案 4 :(得分:0)

SQL语句编写不正确。 Case不会有条件地选择评估的代码。您可以将案例视为一个值,因此您必须在案例和另一个操作数之间放置一个运算符。

写这个的多种方式之一是:

where 
case when @StartDate IS NOT NULL AND @EndDate IS NOT NULL and EffectiveDate BETWEEN (@StartDate AND @EndDate)   then 1
case when (@StartDate IS NULL OR @EndDate IS NULL) and EffectiveDate <getdate() then 1
else 0 end = 1

如果你不想用大写字母书写它,你可以选择其中一个解决方案,但它们使用离散的开始日期。

答案 5 :(得分:0)

WHERE 

(SR.RecCreateTS BETWEEN  ( CASE WHEN  @SubmittedBegining IS NOT NULL  THEN @SubmittedBegining ELSE SR.RecCreateTS END )
                            AND ( CASE WHEN  @SubmittedEnding IS NOT NULL   THEN @SubmittedEnding ELSE SR.RecCreateTS END )
                            )