Viewing 2 posts - 1 through 2 (of 2 total)
This is what i used:
SELECT
MAX(ACTIVITIES.StartDateTime) as LastStartDateTime,
ACTIVITIES.CategoryId
FROM Activities
GROUP BY ACTIVITIES.CategoryId
This query gave me the 731 results i wanted,...
October 11, 2010 at 12:48 pm
#1235181
That did it.
Wasn't even thinking about MAX()!!!!
That was the missing link.
I knew there was a simple solution.
Thanks a bunch.:-)
October 11, 2010 at 12:31 pm
#1235177