Viewing 2 posts - 1 through 3 (of 3 total)
Sorry. I did not look closely enough at your sql.
For my purposes, the temp table is much simpler.
DECLARE @Calendar TABLE(theMonth DATETIME);
INSERT INTO @Calendar
...
August 1, 2011 at 6:16 pm
#1361917
Thanks, though I will probably use a tempory table for this.
The calenar code may come in handy for another project and I appreciate the support.
August 1, 2011 at 6:00 pm
#1361914