What is 1nf 2nf 3nf?
No Answer is Posted For this Question
Be the First to Post Answer
Restore database (or database table) from backup.
What is difference between mysql mysqli and pdo?
Does mysql scale well?
How to get the current date in mysql?
What is an index? How can an index be declared in mysql?
How can you change the password of a mysql user?
How show all tables in mysql query?
Differentiate between FLOAT and DOUBLE?
how to Return total number of rows.
What is deterministic in mysql?
Is mysql relational?
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 ?