1

我的实际问题涉及更大的行源和更多涉及的数学,但这是一个仍然展示所面临挑战的小例子。使用 Oracle 19c。

假设我们有一个包含四行数据的表 X,如下所示。

x
-
1
2
3
4

此外,假设我们想从 X 中导出两列 a 和 b,使得

  • a = x + sum(按 x 排序的 b 的前几行)
  • b = a - 1。

如果没有先前的行,则总和为 0。

因此,新表将具有如下行。

x a b
- - -
1 1 0
2 2 1
3 4 3
4 8 7

以下是无效的 SQL,但提供了正在尝试的示例。

with
  X AS
  (
    select 1 x from dual
    union all select 2 from dual
    union all select 3 from dual
    union all select 4 from dual
  )
  , A AS
  (
    select
      x
      , x + sum(b) over (order by x range between unbounded preceding and 1 preceding) AS a
      , a - 1 AS b
    from x
  )
  select * from A
;

也许分层查询可能会有所帮助,但不确定它是通过什么连接的。

任何想法,将不胜感激。提前致谢。

4

1 回答 1

2

您可以使用递归 CTE 执行此操作:

with X AS (
    select 1 x from dual
    union all select 2 from dual
    union all select 3 from dual
    union all select 4 from dual
  ),
     cte(x, a, b, b_sum) as (
      select x, x as a, x - 1 as b, x - 1 as b_sum
      from x
      where x = 1
      union all
      select x.x, x.x + cte.b_sum, x.x + cte.b_sum - 1, cte.b_sum + (x.x + cte.b_sum - 1)
      from cte join
           x
           on x.x = cte.x + 1
     )
select *
from cte;

是一个 db<>fiddle。

于 2021-02-10T01:06:28.560 回答