Viewing 6 posts - 1 through 6 (of 6 total)
Common table expressions provide a neat way of doing this...
WITH table1 as
(Select OrderNbr, max(UpdateDate) as UpdateDate FROM Orders
Group by OrderNbr)
SELECT * from table1
January 26, 2015 at 2:50 am
OK - thanks anyway. I guess I'll try that when I get the time.
December 14, 2009 at 5:08 am
Any update on this? I am having the same problem.
December 14, 2009 at 3:42 am
Hi J Gravelle,
I had a similar solution involving 2 functions - 1 to work out when the next working day is (including the current date) and 1 to apply this...
February 4, 2009 at 2:59 am
Thanks - this whole series has really helped my understanding of how useful XML can be, and how to use it in applications.
October 17, 2007 at 3:11 am
thanks - given me lots of ideas where this could be useful.
June 13, 2007 at 1:22 am
Viewing 6 posts - 1 through 6 (of 6 total)