Click here to Skip to main content
15,888,113 members
Articles / Database Development / SQL Server / SQL Server 2014
Tip/Trick

SQL Server: Query to Get the Date of First Monday of September

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
12 Sep 2014CPOL 26.7K   1   3
SQL Server: Query to get the date of first Monday of September

Introduction

Below is a query to get the date of the first Monday in Sept (Labour day in Canada). It can be easily modified to get the date of the first Monday (or any other day) of any other month of the year.

Using the Code

In this tip, we suppose that Sunday=1 (the first day of the week).

SQL
DECLARE @FirstOfSeptember DATETIME 
DECLARE @FirstMonday DATETIME 

SET @FirstOfSeptember ='2009-09-01' ---1sth of sept 2009 
SELECT @FirstMonday = CASE 
WHEN DATEPART(WEEKDAY, DATEADD(DAY, 0,@FirstOfSeptember )) = 2 THEN @FirstOfSeptember 
WHEN DATEPART(WEEKDAY, DATEADD(DAY, 1,@FirstOfSeptember )) = 2 THEN DATEADD(DAY,1,@FirstOfSeptember ) 
WHEN DATEPART(WEEKDAY, DATEADD(DAY, 2,@FirstOfSeptember )) = 2 THEN DATEADD(DAY,2,@FirstOfSeptember ) 
WHEN DATEPART(WEEKDAY, DATEADD(DAY, 3,@FirstOfSeptember )) = 2 THEN DATEADD(DAY,3,@FirstOfSeptember ) 
WHEN DATEPART(WEEKDAY, DATEADD(DAY, 4,@FirstOfSeptember )) = 2 THEN DATEADD(DAY,4,@FirstOfSeptember ) 
WHEN DATEPART(WEEKDAY, DATEADD(DAY, 5,@FirstOfSeptember )) = 2 THEN DATEADD(DAY,5,@FirstOfSeptember ) 
WHEN DATEPART(WEEKDAY, DATEADD(DAY, 6,@FirstOfSeptember )) = 2 THEN DATEADD(DAY,6,@FirstOfSeptember ) END

History

This is my first post on CodeProject.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionJust use simple integer math. Pin
Jeff Moden28-Nov-20 18:36
Jeff Moden28-Nov-20 18:36 
SuggestionOther thoughts Pin
Richard Deeming14-Oct-14 6:35
mveRichard Deeming14-Oct-14 6:35 
GeneralThoughts Pin
PIEBALDconsult12-Sep-14 12:22
mvePIEBALDconsult12-Sep-14 12:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.