here is the details
tbl1
rec_id, rec_amount, rec_date
1 1500 1/1/2011
2 4500 1/1/2011
3 500 1/1/2011
4 15000 1/1/2011
5 7500 1/1/2011
tbl2
vouc_id vouc_amount pay_date
1 15000 1/1/2011
2 750.50 1/1/2011
3 560 1/1/2011
tbl3
don_id d_amount d_date
1 1500 1/1/2011
2 2000 1/1/2011
I need sum(rec_amount) from tbl1 and sum(vouc_amount) from tbl2 and sum(d_amount) from tbl3 in a single query where date = 1/1/2011. any body can help me please?