Click here to Skip to main content
Click here to Skip to main content

Find Week in Given Date in SQL Server

By , 4 Feb 2007
 

Introduction

This small article is explained, How to find a week in given date from sql server. In Many scanerio we need to prepare the records in weekly basis. In this case, the below funciton is very useful to find the week in given date.

Create Function dbo.FindInWeek (@givendate datetime)
returns varchar(15)
as
begin
declare @firstDayOfMonth varchar(20),
@findWeek int,@weeks varchar(30)
set @firstDayOfMonth = cast(month(@givenDate) as varchar(2))+'/'+'1'
+'/'+ cast(year(@givenDate) as varchar(4))
set @findWeek= datepart(wk, @givendate) - datepart(wk, @firstDayOfMonth) + 1
set @weeks=case @findWeek
when 1 then 'First'
when 2 then 'Second'
when 3 then 'Third'
when 4 then 'Fourth'
when 5 then 'Fifth'
when 6 then 'Sixth'
else 'Seventh' end
return @weeks+' Week'
end

How to call this function from Sql sever?

select dbo.FindInWeek('02/05/2007')

Output

Second Week

License

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

About the Author

Rajaraman.net05
India India
Member
Hi,
I have 6+ years of experience in Microsoft Technologies and have 2+ years of experience in .NET Technologies. Currenty I am woring in Hyderabad and involed in various domain projects.
 
If you have any doubts please reach me: rajaramanindia@gmail.com

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralCode adjustments [modified]memberMember 423718526 Mar '09 - 9:48 
GeneralAnother optionmemberbenoli5 Feb '07 - 5:49 
GeneralRe: Another optionmemberRajaraman.net056 Feb '07 - 22:15 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 5 Feb 2007
Article Copyright 2007 by Rajaraman.net05
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid