案例.raroralce数据库sql代码:
select
t.*,
sum(出库数量) over(order by 日期 asc ) as 累加
,当前库存-sum(出库数量) over(order by 日期 asc ) 库存
from (
select '2023-07-01' 日期,100 出库数量, 1000 当前库存 from dual
UNION all
select '2023-07-02' 日期,200 出库数量 , 1000 当前库存 from dual
UNION all
select '2023-07-03' 日期,300 出库数量, 1000 当前库存 from dual
UNION all
select '2023-07-04' 日期,100 出库数量 , 1000 当前库存 from dual
UNION all
select '2023-07-05' 日期,200 出库数量 , 1000 当前库存 from dual
UNION all
select '2023-07-06' 日期,500 出库数量 , 1000 当前库存 from dual
) t