Hello Ahmad, Thursday, May 7, 2009, 1:11:26 PM, you wrote:
Aa> how can I get sum of <item_cost> that retrived from query
Aa>
Aa> i mean
Aa>
Aa> sql query is retriving some fileds one of them is item_cost,, i
Aa> need to make new query to calculate the summation of the item_cost
Aa>
Something like that:
select sum(item_cost) as sum_item_cost from table_name
--
Best regards,
Alexander

