Viewing 2 posts - 1 through 2 (of 2 total)
Thanks for your replay.
I use this query below :
Select A.AccountID, A.OpenDate,
'Amount'=(Select Top 1 TransactionAmount From Transaction Where AccountID=A.AccountID order by TransactionDate desc)
From Account A
or
any idea else ?
July 22, 2010 at 4:17 am
#1196725
What about vice versa condition?
For example, I have two tables. First, a table for list of accounts. Second, a table for list of account's transactions.
I want to get the last...
July 22, 2010 at 2:57 am
#1196691