SQL Serverで「1.1.1996-30.8.2014」の日付範囲の「毎月の第3金曜日」である日付を特定する必要があります。
「ランク= 3」を設定するには、DENSE_RANK()
とPARTITION BY()
の組み合わせを使用する必要があると思います。ただし、SQLは初めてなので、正しいコードを見つけることができません。
与えられた:
その月の第3金曜日は、常に月の15〜21日になります。
_select thedate
from yourtable
where datename(weekday, thedate) = 'Friday'
and datepart(day, thedate)>=15 and datepart(day, thedate)<=21;
_
weekday
をdatepart()
とともに使用することもできますが、IMOという名前を使用すると読みやすくなります。ただし、文字列の比較は明らかに遅くなります。
言語/文化に依存しない回答を得るためには、さまざまな曜日名と週の開始を考慮する必要があります。
イタリアでは、金曜日は "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;
別の方法として、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
Peter Larssonによる 月のN番目の平日を取得する方法 も参照してください。
私は実際にこのタイプの計算についての記事を here に書いた
基本的に、次のコードを使用して、任意の日付範囲で毎月第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
はい、これは古い投稿です。私はその年齢にもかかわらず物事に別の傾斜を提供すると思いました。えっと…そして、お詫び申し上げます。 @jyaoが上に投稿したものをほぼ複製していることに気づきました。
OPの元の質問の現在の編集に基づいて、私はなぜ人々が答えを投稿したのか理解できませんでした。
編集内容を調べたところ、元の質問が見つかり、以下に投稿しました...
私はSQLデータベースに1.1.1996-30.8.2014の範囲の時系列を持っています。 テーブル "db.dbo.datestable"。
SQLでこの日付範囲の「毎月第3金曜日」である日付を特定する必要があります。
「DENSE_RANK()」と「PARTITION BY()」の組み合わせを使用して「ランク= 3」を設定する必要があると思います。ただし、SQLは初めてなので、正しいコードを見つけることができません。
この問題を解決できますか?
元の質問の中で太字で強調した部分が重要なようです。私は確かに正しくない可能性がありますが、OPが「dbo.datestable」と呼ばれる「カレンダー」テーブルを持っているとOPが述べていたように思われ、私にとっては、それは大きな違いを生みます。 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が "Calendar"テーブルを変更できるかどうかわからないのも当然のことなので、これは彼には役に立たないかもしれませんが、他の人には役立つかもしれません。それを念頭に置いて、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
;
簡単なカットアンドペーストのソリューションを次に示します。必要に応じて、これを関数に変換できます。
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