简体   繁体   中英

Summing in mysql previous row with current

Need help to make query. I have table like this:

kli, akt, mes

'2', '2',  '201209'

'2', '2',  '201210'

'3', '3',  '201211'

And I need a result table:

kli, akt, mes

'2', '2',  '201209'

'4', '4',  '201210'

'7', '7',  '201211'

result tables sum by field mes, current and all previous rows

试试下面的查询

SELECT SUM(b.kli),SUM(b.akt),a.mes FROM tableName a INNER JOIN tableName b ON a.mes >= b.mes GROUP BY a.mes

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM