vote up 0 vote down star

Using SQL Server 2005

Table1

Date

20090501
20090502
20090503
20090504
20090505

...,

I want to find the day compare with date, then i want to skip the date where the day = sunday.

Expected Output

20090501
20090502
20090504
20090505

..,

So 20090503 is skipped, because it is Sunday.

How to make a query?

flag

4 Answers

vote up 3 vote down check

Lots of ways; here's one;

SELECT column
FROM Table
WHERE DATENAME(dw, column) <> 'Sunday'
link|flag
nicely getting around the problem of which day is Sunday :-) Is this going to work on localized versions (e.g. German, French) of SQL Server, though?? – marc_s Oct 26 at 13:16
1  
It will, if you supply the appropriate name :) My French is rusty, but I think it's Dimanche. Just as an aside, I normally store the datename as part of my calendar tables to make it indexable. – Stuart Ainsworth Oct 26 at 13:39
He did say he didn't want Sunday. – GuinnessFan Oct 26 at 16:07
vote up 1 vote down

Okay, I have no idea what you mean by "date compare with date", but to skip sunday you can use

SELECT    Column
FROM      Table
WHERE     DatePart(weekday, Column) <> 7

You have to check what you have set for DATEFIRST though, because this is important for what DATAPART(weekday) returns for sunday. On an english SQL server, the standard is to return 7, so if you use an english server and haven't changed anything, than it should work.

link|flag
And that's "British English" and not "US English". For US English, Sunday == 1. – Chris J Oct 26 at 13:13
vote up 0 vote down

Well, you can get it into a DateTime format, then once you do that, you could do something like this for a where clause.

WHERE DATEPART(dw, DateColumn) <> 7

This assumes that your SQL Server is configured for english by default.

link|flag
And that's "British English" and not "US English". For US English, Sunday == 1. – Chris J Oct 26 at 13:12
Chris - Interesting must go check setting on our servers... – Mitchel Sellers Oct 26 at 16:23
vote up 0 vote down

Fully localised version (thanks to everyone for pointing that out):

SELECT *
FROM MyTable
WHERE DATEPART(weekday, MyColumn) <> 8 - @@DATEFIRST
link|flag
For US English only. For British English (and other languages), Sunday == 7. – Chris J Oct 26 at 13:13
Fixed, see edited answer. – Christian Hayter Oct 26 at 14:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.