Viewing 3 posts - 1 through 3 (of 3 total)
You can also add a grouping on MONTH(SomeDateTime) without adding it to the SELECT list. It won't actually change the grouping at all, since grouping on month name and...
November 15, 2010 at 9:07 am
#1250799
SELECT SYSTEM_USER
October 13, 2009 at 10:46 am
#1065299
Hello 500,
If you cannot negotiate a redesign, I hope this workaround can help:
-- **** BEGIN PART WE DO NOT HAVE CONTROL OVER ****
CREATE TABLE Parent
(
ID INT IDENTITY(1,1),
Code1 CHAR(1),
CONSTRAINT PK_Parent_ID PRIMARY...
October 13, 2009 at 9:40 am
#1065269