Oracle 8中如何增量求和?

发布于 2024-10-23 11:46:32 字数 321 浏览 5 评论 0原文

我需要在 Oracle 中进行增量求和。

我的情况如下:

RecordID      Value

1            1
2            2
3            5
4            10

我需要得到这样的东西:

RecordID      Sum_incremental

1            (1)
2            (1 + 2)
3            (1 + 2 + 5)
4            (1 + 2 + 5 + 10)

I need to do an incremental sum in Oracle.

My situation is the following:

RecordID      Value

1            1
2            2
3            5
4            10

And I need to get something like this:

RecordID      Sum_incremental

1            (1)
2            (1 + 2)
3            (1 + 2 + 5)
4            (1 + 2 + 5 + 10)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

木有鱼丸 2024-10-30 11:46:32

线索:自加入和分组依据。

解决办法:

select a.recordid, sum(b.value) sum_incremental from mytable a, mytable b
where b.recordid <= a.recordid group by a.recordid

The clues: self join and group by.

The solution:

select a.recordid, sum(b.value) sum_incremental from mytable a, mytable b
where b.recordid <= a.recordid group by a.recordid
歌入人心 2024-10-30 11:46:32
select recordid, 
       sum(value) over (order by recordid)
from some_data
select recordid, 
       sum(value) over (order by recordid)
from some_data
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文