‎2008 Apr 08 12:35 PM
‎2008 Apr 08 12:38 PM
This code is untested, but should get you in the right direction.
data: rslt type i,
select SUM( column ) into rslt from my_table
where your_conditions.
write:/ rslt.
‎2008 Apr 08 12:38 PM
This code is untested, but should get you in the right direction.
data: rslt type i,
select SUM( column ) into rslt from my_table
where your_conditions.
write:/ rslt.
‎2008 Apr 08 12:50 PM