I have the following tables:
Table1
keyFld fldGroup fldAmount fldA fldB
key1 A 10
key1 A 10
key1 B 10
key1 B 10
key1 B 10
key1 C 10
key1 C 10
Table2
keyFld fldGroup fldAmount fldD fldE
key1 A 20
key1 B 30
key1 C 20
Now, I want to compare the sum of Table1 GROUP BY fldGroup with Table2 and should be able to pickup fields fldA to fldE from both tables..
I would greatly appreciate any help. thanks
Table1
keyFld fldGroup fldAmount fldA fldB
key1 A 10
key1 A 10
key1 B 10
key1 B 10
key1 B 10
key1 C 10
key1 C 10
Table2
keyFld fldGroup fldAmount fldD fldE
key1 A 20
key1 B 30
key1 C 20
Now, I want to compare the sum of Table1 GROUP BY fldGroup with Table2 and should be able to pickup fields fldA to fldE from both tables..
I would greatly appreciate any help. thanks