标签: sql
t 10 20 30 40
输出10 30 50 70
答案 0 :(得分:1)
执行此操作的一种方法是使用窗口函数的累积和:
select col, sum(col) over (order by col rows between 1 preceding and current row ) from t;