我需要开发一个执行以下操作的 SQL 查询:
Column A Column B
Row1 2861682 sum(Row1 to Row5)
Row2 2522226 sum(Row2 to Row5)
Row3 2285983 sum(Row3 to Row5)
Row4 2096046 sum(Row4 to Row5)
Row5 1935355 sum(Row5)
这是我在表格列中的数据。
现在我需要计算
sum(Row1 to Row5)
sum(Row2 to Row5)
sum(Row3 to Row5)
sum(Row4 to Row5)
sum(Row5)
谢谢