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?