I have a table like this tblData (month int,Qty int)
and i am inserting three rows in this table
1.tblData Values (1,100)
2.tblData Values (2,200)
3.tblData Values (3,300)
The Result I want is the Running total of the field Qty
that is 1 100 100
2 200 300
3 300 600
What is the Query for that ?
Answers were Sorted based on User's Feedback
Answer / anurag misra
select a.month,a.Qty,sum(b.Qty) as total
from tblData a cross join tblData b
where b.month<=a.month
group by a.month,a.Qty
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / bibinsami3
i Will give 3 pts to them who find the answer with out
reffering any Documets.. :)
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sandhirasegaran
SELECT tbl1.month,tbl1.Qty,( SELECT SUM(tbl2.Qty) FROM
tblData AS tbl2 WHERE tbl1.month >= tbl2.month ) FROM
tblData AS tbl1
Is This Answer Correct ? | 1 Yes | 0 No |
how we connect the data base in any programme
How do I run mysql?
Where is mysql data stored linux?
What is sqlyog?
How to show table names with 'mysqlshow'?
Is mysql server free?
How can I insert images into a Mysql database?
What is save point in mysql?
What is the difference between mysql and pdo?
How to display nth highest salary from a table in a mysql query?
How many primary keys can be there in a table?
How to find out the second largest element from mysql table