I want to calculate a running-difference when saldo 1 is below saldo 2.
Below you can find my dataset
I wish to obtain the following result
I have tried so many things with subqueries and different ways of finding the difference. I have found many examples of running-totals with one value and so. But I cannot get my conditinal statements to work and if I just do the clean code without the conditional statements, my values are always wrong.
Here is my code at the moment. I am using partition as I want to reset when ID change.
IF SALDO1 < SALDO2
BEGIN
SELECT ID, SALDO1, SALDO2,
SUM(SALDO2 - SALDO1) over (PARTITION BY ID ORDER BY ID) as RunningDifference
END
ELSE
BEGIN
'0'
END
FROM test2;
Thank you!
You seem to want conditional statements around and within the window sum:
If your database supports
greatest()
, we can shorten the inner expression:Note that your
over()
clause is not stable:partition by id order by id
does not provide a consistent ordering criteria of rows within the partition: all rows are ties, so all end up summed together. You need a deterministic sorting criteria to achieve the result you want, I assumedordering_id
.