用SQL怎么求累加求和

使用Revenue表数据

Latty 发布于 2020-10-19 13:36 (编辑于 2020-10-19 15:35)
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
指间沙Lv6中级互助
发布于2020-10-19 13:37(编辑于 2020-10-20 09:09)

select *From (
select t1.月份,t1.类别, sum(t2.Revenue) as sumN 
      from   Revenue as t1, Revenue as t2  
      where 1=1 and t1.类别='Products' and t1.id>=t2.id 
      group by t1.类别,t1.月份 


union

select aa.月份,aa.类别, sum(bb.Revenue) as sumN  From(
select *From Revenue where 类别='Services'
)aa,
(
select *From Revenue where 类别='Services'
)bb where aa.id>=bb.id
 group by aa.类别,aa.月份 
)aaa
group by aaa.类别,aaa.月份
order by aaa.类别,cast(aaa.月份 as int)

  • 珠珠 珠珠 违规采纳,请完善答案后采纳
    2020-10-19 14:15 
  • 2关注人数
  • 424浏览人数
  • 最后回答于:2020-10-20 09:09
    请选择关闭问题的原因
    确定 取消
    返回顶部