22

テーブルに 2 つの日付列がありstartDateendDate. 特定の日付がこれら 2 つの日付の間に収まる行を返すにはどうすればよいですか? 例えば:

指定された日付の場合2012-10-25

次の行を返す必要があります

startDate   -   endDate
2012-10-25  -   2012-10-25
2011-09-10  -   2013-11-15
2012-10-20  -   2012-10-25
2012-10-23  -   2012-10-28
2012-09-14  -   2012-10-28

次の行から:

startDate   -   endDate
2012-10-25  -   2012-10-25
2011-09-10  -   2013-11-15
2012-01-11  -   2012-10-11
2012-10-20  -   2012-10-25
2012-04-15  -   2012-04-16
2012-05-20  -   2012-05-25
2012-12-01  -   2012-12-10
2012-10-23  -   2012-10-28
2012-09-14  -   2012-10-28
2012-11-13  -   2012-12-15

これはSQLで可能ですか?

SQL Server 2008 を使用しています。

4

4 に答える 4

63

SQL Serverでは、実際には次のように簡単です。

SELECT startDate, endDate
FROM YourTable
WHERE '2012-10-25' between startDate and endDate
于 2012-10-31T15:11:56.993 に答える
4

BETWEENキーワードを確認してください。

構文は簡単です:

SELECT col1, col2
FROM table1
WHERE '2012-10-25' BETWEEN col1 and col2

ここで、col1 と col2 はそれぞれ開始日と終了日です。

于 2012-10-31T15:15:44.913 に答える
0

他のラッピングチェックについては、以下が興味深いかもしれません

Select * from sted where [dbo].[F_LappingDays](Startdate,EndDate,'20121025','20121025')=1


CREATE Function [dbo].[F_LappingDays](@Von1 datetime,@bis1 Datetime,@von2 Datetime,@bis2 Datetime) Returns int as
/*
20110531 Thomas Wassermann
Terminüberschneidungen finden
*/
begin
Declare @Result int

Select @Result  = 0
if (@Von1>=@Von2) and (@bis1<=@Bis2)
    begin
        Select @Result=Cast(@Bis1 - @von1 + 1 as Int)
    end

else if (@Von1<=@Von2) and (@bis1 > @Von2) and (@bis1<=@Bis2)
    begin
        Select @Result=Cast(@Bis1 - @von2 + 1 as Int)
    end

else if (@Von1>=@Von2) and (@von1<=@bis2) and (@bis1>@Bis2)
    begin
        Select @Result=Cast(@Bis2 - @von1 + 1 as Int)
    end

else if (@Von1<@Von2) and (@bis1>@Bis2)
    begin
        Select @Result=Cast(@Bis2 - @von2 + 1 as Int)
    end



Return @Result
end 
于 2012-10-31T15:50:54.900 に答える