postgresql中的库存计算

pjngdqdw  于 2021-07-27  发布在  Java
关注(0)|答案(1)|浏览(229)

我有张table叫斯托克

ID | Plant | Item | Quantity
1    1      Pepsi    1
2    1      Coke     3
3    2      Pepsi    5

如何重建以前的状态来得到这个结果?

ID | Plant | Item | Quantity | THIS(total_stock)
1    1      Pepsi    1              6
2    1      Coke     3              3
3    2      Pepsi    5              6
5f0d552i

5f0d552i1#

可以使用窗口函数完成:

select id, plant, item, quantity, 
       sum(quantity) over (partition by item) as total_stock
from stock;

相关问题