Q
QB
Hello,
I need to output data and am lost on how-to achieve it.
I have 2 tables: Billing and Extras. Each project can have multiple entries
in the Billing table, but only one entry in the Extras table. The structure
of each table is very similar
Billing
B_Id
B_ProjNo
B_Date
B_Amount
Extras
B_E_Id
B_E_ProjNo
B_E_Date
B_E_Amount
What I need to do is output a listing by project number and date the total
amount. For some reason I just can't wrap my head around this one?!
For Example
Billing
abc 2009/04/30 200.00
abc 2009/05/15 250.00
abc 2009/06/22 175.00
Extras
abc 2009/05/15 55.00
Would result in
abc 2009/04/30 200.00
abc 2009/05/15 305.00
abc 2009/06/22 175.00
I can't quite figure out how-to group not only on the ProjNo but also each
date.
Thank you for your help in advance.
QB
I need to output data and am lost on how-to achieve it.
I have 2 tables: Billing and Extras. Each project can have multiple entries
in the Billing table, but only one entry in the Extras table. The structure
of each table is very similar
Billing
B_Id
B_ProjNo
B_Date
B_Amount
Extras
B_E_Id
B_E_ProjNo
B_E_Date
B_E_Amount
What I need to do is output a listing by project number and date the total
amount. For some reason I just can't wrap my head around this one?!
For Example
Billing
abc 2009/04/30 200.00
abc 2009/05/15 250.00
abc 2009/06/22 175.00
Extras
abc 2009/05/15 55.00
Would result in
abc 2009/04/30 200.00
abc 2009/05/15 305.00
abc 2009/06/22 175.00
I can't quite figure out how-to group not only on the ProjNo but also each
date.
Thank you for your help in advance.
QB