in reply to hoh or hoa data structure
If your only reason is finding the sum of the 4th & 5th column ... then a simple sql query might do it for you.
Here's an example:
select e_id,cus, sum(gd1) as g1, sum(gd2) as g2 from test group by e_i +d,cus,ta;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: hoh or hoa data structure
by Generoso (Prior) on Jan 11, 2011 at 00:41 UTC | |
by rocky13 (Acolyte) on Jan 18, 2011 at 03:56 UTC |