I would like to add third column or modify second column by addition of previous row value score. I'm getting date-wise two table addition but can't get serial addition of data.
DDLs:
CREATE TABLE 1_bugs
( id int(11) NOT NULL
, date date NOT NULL
, cf1 int(11) NOT NULL
, cf2 int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO 1_bugs (id, date, cf1, cf2) VALUES
(1, '2016-07-19', 3, 2),
(2, '2016-07-19', 2, 1),
(3, '2016-07-22', 2, 2);
Query:
SELECT table.date1, IFNULL(table.cf1 + bugs.cf2),0) as score
FROM table GROUP BY table.date1;
Output:
| date1 | score |
| 2016-07-19 | 5 |
| 2016-07-19 | 3 |
| 2016-07-22 | 4 |
Expected:
| date1 | score | Total score |
| 2016-07-19 | 5 | 5 |
| 2016-07-19 | 3 | 8 |
| 2016-07-22 | 4 | 12 |
I have tried rollup but it doesn't give output as expected and just adds null row with addition of all score values.
| date1 | score |
| 2016-07-19 | 5 |
| 2016-07-19 | 3 |
| 2016-07-22 | 4 |
| null | 12 |
How can I get output like expected?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…