Viewing 3 posts - 1 through 3 (of 3 total)
Hi that helps tremendously thank you.
How would i modify your logic so that it looks at 2 columns rather than the 1 (account). Here's what i'm trying to say:
Meter ...
May 7, 2010 at 8:37 am
#1164152
Solution to my problem is this:
SELECT A.ACCT,A.TRANDATE,A.TRANAMOUNT,A.RWID
FROM MYTABLE A
WHERE RWID = (SELECT MAX(B.RWID) FROM MYTABLE B WHERE B.ACCT = A.ACCT)
May 6, 2010 at 2:41 pm
#1163631
Figured out. Thread closed
May 6, 2010 at 2:25 pm
#1163616