I want to get the last date in the table (12/3/09) and show each Well in a Field, since the last date.
Field, Well, TestDate, Amount X, A, 12/1/09, 500 Y, D, 12/1/09, 400 Y, E, 12/1/09, 300 Y, F, 12/2/09, 50 X, B, 12/2/09, 40 Z, G, 12/2/09, 30 X, C, 12/3/09, 512 Y, D, 12/3/09, 425 Z, G, 12/3/09, 31
SELECT Field, Well, Amount, Last(Date) as LastDate
FROM table1
GROUP BY Field, Well, Amount
ORDER BY Last(Date), Field, Well
Yields this:
X, C, 12/3/09, 512 Y, D, 12/3/09, 425 Z, G, 12/3/09, 31
The desired result:
X, A, 12/1/09, 500 X, B, 12/2/09, 40 X, C, 12/3/09, 512 Y, D, 12/3/09, 425 Y, E, 12/1/09, 300 Y, F, 12/2/09, 50 Z, G, 12/3/09, 31
Any help is very appreciated.