SELECT * FROM transactions as t1 WHERE TotalAmount < (SELECT SUM(t2.TotalAmount) FROM transactions as t2 WHERE t1.TransactID = t2.TransactRefID) ORDER BY ActualDate DESC;
does it work? as i tested, no error.. but no result to.. all i know, it should have a results...
camilord
8:45 am on Apr 18, 2008 (gmt 0)
can anybody answer me please? please help..
thanks..
ashish21cool
10:28 am on Apr 19, 2008 (gmt 0)
First of all you dont need to add t1,t2. We name the tables as t1,t2....if there are more then 1 table. try removing t1 and t2 and then fire the query.
SELECT * FROM transactions WHERE TotalAmount < (SELECT SUM(TotalAmount) FROM transactions WHERE TransactID = TransactRefID) ORDER BY ActualDate DESC