Sql как добавить значение из предыдущей строки в следующую
I am trying to add the value of the previous row to the current row into the column cumulative
Select Ddate as Date, etype, Reference, linkacc as ContraAcc, Description, sum(case when amount > 0 then amount else 0 end) as Debits, sum(case when amount < 0 then amount else 0 end) as Credits, sum(amount) as Cumulative from dbo.vw_LT where accnumber ='8400000' and [DDate] between '2016-04-01 00:00:00' and '2016-04-30 00:00:00' and [DataSource] = 'PAS11CEDCRE17' group by Ddate, etype, Reference, linkacc, Description, Amount Output: Date Reference ContraAcc Description Debits Credits Cumulative -------------------------------------------------------------------------- 2016-04-01 CC007 8000000 D/CC007 0 -39.19 -39.19 2016-04-01 CC007 8000000 D/CC007 1117.09 0 1117.09 2016-04-01 CC009 8000000 CC009 2600 0 2600
в кумулятивном столбце вторая строка должна быть -39.19 + 1117.09 и так далее
Что я уже пробовал:
я попытался использовать выписку sum(сумма) как совокупную, но она приносит одно и то же значение.