MYSQL按日期累计总和

时间:2018-08-09 09:58:57

标签: mysql

我怎么做累计金额?

我的查询是:

select dateb,ricetype,bajet1
from bajet
where ricetype='grand total'

我如何归档“新价值”?

expected results

1 个答案:

答案 0 :(得分:0)

您可以按照以下步骤进行操作:

set @CumSum := 0;
select dateb, ricetype, bajet1, (@CumSum := @CumSum + bajet1) as New_Value
from bajet where ricetype='grand total';