in reply to SQL Database Help!!

If you don't need to look at the individual rows, then just use sql to select the aggregates:
select field1, sum(field2), sum(field3), sum(field4) from table group by field1 order by field1