Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Sub query expressions vs. Joins.

    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 ?

  • RE: Sub query expressions vs. Joins.

    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...

Viewing 2 posts - 1 through 2 (of 2 total)