I write a query to multiply to colums now i would like to sum up the result that i am getting can any one give me an idea
this is what i wrote
select Rate,Qty,(Rate*Qty) as result
from tblName
I will get result say for example 40 90 now i would like to sum these results
Original Answer
EDIT – Try this..