Jump to content

A difficult challenge-- How to calculate sum of earlier date records for each li


laokn

Recommended Posts

Can you help me with the following Mysql question?

I get a table, say, three variables: ID, Date and Value, for example,

  ID Date Value

1 2001  2

2 2005  3

3 1986  7

4 1985  1

How can I add a variable, sum, to each line, with the condition that sum=sum the value of all the records that are early than the record’s date

 

For the same sample on the top, I want the result turns out to be:

 

ID Date Value Sum

1 2001  2  8

2 2005  3  10

3 1986  7  1

4 1985  1  0

 

The sum of the ID 1 is 8, because only the dates of ID 3 (1986) and 4 (1985) are earlier than that of ID 1 (2001). Hence, sum for ID 1= 7+1=8

 

My table contains millions of records. How can I calculate such sums by a Mysql script?

 

Link to comment
Share on other sites

firstly, try not to use sum as a field name. this is a reserved word in mysql. You can try something like this:

INSERT INTO table (Date, Value, TotalSum) VALUES ('$date', '$value', (SELECT SUM(value) FROM table WHERE Date < '$date'))

Note that i am presuming your ID is auto incimenting so i havent included it

Link to comment
Share on other sites

thanks for your help.

 

i find the following one also works.

 

cheers,

 

SELECT t1.*

, COALESCE(SUM(t2.value),0) total

FROM cant_read_stickies t1

LEFT

JOIN cant_read_stickies t2

ON t2.year < t1.year

GROUP

BY id;

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.