毎月第3金曜日を決定する


16

SQL Serverの「1.1.1996-30.8.2014」の日付範囲の「各月の第3金曜日」である日付を決定する必要があります。

私はの組み合わせを使用する必要があり期待DENSE_RANK()してPARTITION BY()セット「ランク= 3」に。しかし、私はSQLが初めてであり、正しいコードを見つけることができません。

回答:


26

与えられた:

  • 金曜日は「金曜日」と呼ばれます
  • 月の第3金曜日は、常に月の15日から21日までです。

    select thedate
    from yourtable
    where datename(weekday, thedate) = 'Friday'
    and datepart(day, thedate)>=15 and datepart(day, thedate)<=21;

で使用することもできますweekdaydatepart()、IMOという名前の方が読みやすくなります。ただし、文字列の比較は明らかに遅くなります。


14

言語/文化に依存しない回答を得るには、異なる曜日名と週の始まりを考慮する必要があります。

イタリアでは、金曜日は「Venerdì」であり、最初の曜日は月曜日であり、米国のような日曜日ではありません。

1900-01-01 は月曜日だったので、この情報を使用して、ロケールに依存しない方法で平日を計算できます。

WITH dates AS (
    SELECT DATEADD(day, number, GETDATE()) AS theDate
    FROM master.dbo.spt_values
    WHERE type = 'P'
)
SELECT theDate, DATENAME(dw, theDate), DATEPART(dw, theDate)
FROM dates
WHERE DATEDIFF(day, '19000101', theDate) % 7 = 4
    AND DATEPART(day, thedate)>=15 and DATEPART(day, thedate)<=21;

12

別の方法では、Philの回答をベースとして使用し、異なる設定を処理します。

select thedate
from yourtable
where (datepart(weekday, thedate) + @@DATEFIRST - 2) % 7 + 1 = 5   -- 5 -> Friday
  and (datepart(day, thedate) - 1) / 7 + 1 = 3 ;                   -- 3 -> 3rd week

5コード(金曜日以外の平日をしたい場合)(と同じでなければなりませんSET DATEFIRSTコード):

1 for Monday
2 for Tuesday
3 for Wednesday
4 for Thursday
5 for Friday
6 for Saturday
7 for Sunday

言語設定に直面しても安全であるために、「既知の良い」日付を使用することもできます。たとえば、金曜日を探している場合は、カレンダーをチェックして、2015年1月2日が金曜日だったことを確認します。最初の比較は、次のように記述できます。

DATEPART(weekday,thedate) = DATEPART(weekday,'20150102') --Any Friday

ピーターラーソンによる月のN番目の平日を取得する方法も参照してください。


4

私は実際にこのタイプの計算に関する記事をここに書いた

基本的に、次のコードを使用して、各日付範囲の各月の第3金曜日を検索できます。

USE TEMPDB
set nocount on;
IF OBJECT_ID('dbo.#t') is not null 
 DROP TABLE dbo.#t;
CREATE TABLE #t ([Date] datetime,
  [Year] smallint, [Quarter] tinyint, [Month] tinyint
, [Day] smallint -- from 1 to 366 = 1st to 366th day in a year
, [Week] tinyint -- from 1 to 54 = the 1st to 54th week in a year; 
, [Monthly_week] tinyint -- 1/2/3/4/5=1st/2nd/3rd/4th/5th week in a month
, [Week_day] tinyint -- 1=Mon, 2=Tue, 3=Wed, 4=Thu, 5=Fri, 6=Sat, 7=Sun
);
GO
USE TEMPDB
-- populate the table #t, and the day of week is defined as
-- 1=Mon, 2=Tue, 3=Wed, 4=Thu,5=Fri, 6=Sat, 7=Sun
;WITH   C0   AS (SELECT c FROM (VALUES(1),(1)) AS D(c)),
  C1   AS (SELECT 1 AS c FROM C0 AS A CROSS JOIN C0 AS B),
  C2   AS (SELECT 1 AS c FROM C1 AS A CROSS JOIN C1 AS B),
  C3   AS (SELECT 1 AS c FROM C2 AS A CROSS JOIN C2 AS B),
  C4   AS (SELECT 1 AS c FROM C3 AS A CROSS JOIN C3 AS B), 
  C5   AS (SELECT 1 AS c FROM C4 AS A CROSS JOIN C3 AS B),
  C6   AS (select rn=row_number() over (order by c)  from C5),
  C7   as (select [date]=dateadd(day, rn-1, '19000101') FROM C6 WHERE rn <= datediff(day, '19000101', '99991231')+1)

INSERT INTO #t ([year], [quarter], [month], [week], [day], [monthly_week], [week_day], [date])
SELECT datepart(yy, [DATE]), datepart(qq, [date]), datepart(mm, [date]), datepart(wk, [date])
     , datediff(day, dateadd(year, datediff(year, 0, [date]), 0), [date])+1
  , datepart(week, [date]) -datepart(week, dateadd(month, datediff(month, 0, [date]) , 0))+1
  , CASE WHEN datepart(dw, [date])+@@datefirst-1 > 7 THEN (datepart(dw, [date])+@@datefirst-1)%7
         ELSE datepart(dw, [date])+@@datefirst-1 END
 , [date]
FROM C7
    --where [date] between '19900101' and '20990101'; -- if you want to populate a range of dates
GO

select convert(char(10), [Date], 120) 
from #t
where Monthly_week=3
and week_day=5
and [date] between '2015-01-01' and '2015-12-31' -- change to your own date range

2

はい、私はこれが古い投稿であることを知っています。私はその年齢にもかかわらず物事に異なる傾斜を提供すると思いました。ええと...おmyび申し上げます。@jyaoが上に投稿したものをほぼ複製していることに気づきました。

OPの元の質問の現在の編集に基づいて、なぜ回答を投稿したのかを理解できませんでした。

編集内容を調べて、元の質問を見つけて下に投稿しました...

SQLデータベースに、たとえばテーブル "db.dbo.datestable"の 1.1.1996-30.8.2014の範囲の時系列があります

SQLでこの日付範囲の「各月の第3金曜日」である日付を決定する必要があります。

「ランク= 3」を設定するには、「DENSE_RANK()」と「PARTITION BY()」の組み合わせを使用する必要があります。しかし、私はSQLが初めてであり、正しいコードを見つけることができません。

この問題を解決できますか?

太字で強調した元の質問の一部が重要なようです。私は確かに間違っている可能性がありますが、OPは「dbo.datestable」と呼ばれる「カレンダー」テーブルを持っていると述べていたようです。 11月10日に投稿されたため、日付を生成したものを含むものです。質問の最終編集の1日後、「dbo.datestable」への参照の最終的な痕跡が削除されました。

私が言ったように、私は間違っているかもしれませんが、ここに元の質問の私の解釈があります。

「dbo.datestable」という「カレンダー」テーブルがあります。そのテーブルでカバーされる日付の範囲がある場合、その日付範囲内の各月の第3金曜日の日付だけを返すにはどうすればよいですか?

これを行うための従来の方法はすでに説明されているので、一部の人に役立つ代替手段を追加します。

OPが既にテーブルに持っていると思う列をいくつかシミュレートしてみましょう。もちろん、列名を推測しています。「カレンダー」テーブルに対応する列が何であれ、サブしてください。また、私はこれをすべてTempDBで行っているため、誰かの実際の「カレンダー」テーブルに干渉する可能性はありません。

--=================================================================================================
--      Simulate just a couple of the necessary columns of the OPs "Calendar" table.
--      This is not a part of the solution.  We're just trying to simulate what the OP has.
--=================================================================================================
--===== Variables to control the dates that will appear in the "Calendar" table.
DECLARE  @StartDT   DATETIME
        ,@EndDT     DATETIME
;
 SELECT  @StartDT = '1900' --Will be inclusive start of this year in calculations.
        ,@EndDT   = '2100' --Will be exclusive start of this year in calculations.
;
--===== Create the "Calendar" table with just enough columns to simulate the OP's.
 CREATE TABLE #datestable
        (
         TheDate    DATETIME NOT NULL
        ,DW         TINYINT  NOT NULL  --SQL standard abbreviate of "Day of Week"
        )
;
--===== Populate the "Calendar" table (uses "Minimal Logging" in 2008+ this case).    
   WITH cteGenDates AS
(
 SELECT TOP (DATEDIFF(dd,@StartDT,@EndDT)) --You can use "DAY" instead of "dd" if you prefer. I don't like it, though.
        TheDate = DATEADD(dd, ROW_NUMBER() OVER (ORDER BY (SELECT NULL))-1, @StartDT)
   FROM      sys.all_columns ac1
  CROSS JOIN sys.all_columns ac2
)
 INSERT INTO #datestable WITH (TABLOCK)
 SELECT  TheDate
        ,DW = DATEDIFF(dd,0,TheDate)%7+1 --Monday is 1, Friday is 5, Sunday is 7 etc.
   FROM cteGenDates
 OPTION (RECOMPILE) -- Help keep "Minimal Logging" in the presence of variables.
;
--===== Add the expected named PK for this example.
  ALTER TABLE #datestable 
    ADD CONSTRAINT PK_datestable PRIMARY KEY CLUSTERED (TheDate)
;

また、OPが彼の「カレンダー」テーブルを変更できるかどうかわからないので、これは彼を助けないかもしれませんが、他の人を助けるかもしれません。それを念頭に置いて、DWoM(月の曜日)列を追加しましょう。名前が気に入らない場合は、自分のボックスで必要なものに自由に変更してください。

--===== Add the new column.
  ALTER TABLE #datestable
    ADD DWOM TINYINT NOT NULL DEFAULT (0)
;

次に、新しい列にデータを入力する必要があります。OPは、彼の最初の素朴な投稿でこれを認識していました。

--===== Populate the new column using the CTE trick for updates so that
     -- we can use a Windowing Function in an UPDATE.
   WITH cteGenDWOM AS
(
 SELECT DW# = ROW_NUMBER() OVER (PARTITION BY DATEDIFF(mm,0,TheDate), DW
                                     ORDER BY TheDate)
        ,DWOM
   FROM #datestable
)
 UPDATE cteGenDWOM
    SET DWOM = DW#
;

さて、それは固定長の列であるため、ページ分割の束を作成しただけなので、パフォーマンスのためにクラスター化インデックスを再構築して、ページごとに可能な限り多くの行を持つようにテーブルを「再パック」する必要があります。

--===== "Repack" the Clustered Index to get rid of the page splits we 
     -- caused by adding the new column.
  ALTER INDEX PK_datestable
     ON #datestable
        REBUILD WITH (FILLFACTOR = 100, SORT_IN_TEMPDB = ON)
;

それが完了すると、特定の日付範囲で毎月第3金曜日を返すなどのことを行うクエリは、読みやすく、かなり明白になります。

--===== Return the 3rd Friday of every month included in the given date range.
 SELECT *
   FROM #datestable
  WHERE TheDate >= '1996-01-01' --I never use "BETWEEN" for dates out of habit for end date offsets.
    AND TheDate <= '2014-08-30'
    AND DW      =  5 --Friday
    AND DWOM    =  3 --The 3rd one for every month
  ORDER BY TheDate
;

0

簡単なカットアンドペーストソリューションを次に示します。必要に応じて、これを関数に変えることができます。

Declare @CurrDate Date
Set @CurrDate = '11-20-2016'

declare @first datetime -- First of the month of interest (no time part)
declare @nth tinyint -- Which of them - 1st, 2nd, etc.
declare @dow tinyint -- Day of week we want
set @first = DATEFROMPARTS(YEAR(@CurrDate), MONTH(@CurrDate), 1) 
set @nth = 3
set @dow = 6
declare @result datetime
set @result = @first + 7*(@nth-1)
select  @result + (7 + @dow - datepart(weekday,@result))%7
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.