标签: mysql
我怎么做累计金额?
我的查询是:
select dateb,ricetype,bajet1 from bajet where ricetype='grand total'
我如何归档“新价值”?
答案 0 :(得分:0)
您可以按照以下步骤进行操作:
set @CumSum := 0; select dateb, ricetype, bajet1, (@CumSum := @CumSum + bajet1) as New_Value from bajet where ricetype='grand total';