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 ?
Answer Posted / 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 |
Post New Answer View All Answers
How do I restore a mysql database dump file in linux?
What is the purpose of mysql database?
How to include numeric values in sql statements?
how to connect a php script with the mysql database?
What is mysql url?
What are the advantages of mysql?
What is maximum table size in mysql?
How do I select a database in mysql workbench?
What is the difference between procedure and function in mysql?
How much does mysql cost?
Can you tell what are various ways to create an index?
How do I connect to a database in mysql workbench?
What is sql in mysql?
How many groups of data types?
What is normalization and list the different types of normalization?