开窗函数-逐层累计-http://help.finereport.com/finereport9.0/doc-view-1960.html
开窗函数-跨层累计-http://help.finereport.com/finereport9.0/doc-view-1962.html
你的需求看“开窗函数-逐层累计”即可~
a <= '${a}'
条件 月份 用between 开始是1 结束用参数 $endmonth
用over (partition by order by )来分组啊
over(order by field),需要用到累加功能,用这个函数
例子:
累加sql:
select t.acc_pedal_pos,count(*) num,sum(count(*)) over(order by t.acc_pedal_pos) accu_sum from GT1117CARDATA t where t.acc_pedal_pos>0 group by t.acc_pedal_pos order by t.acc_pedal_pos