Skip to content
Advertisement

Recursivly call on a lagged value in the same column, Or Have two interdependent columns

The first query does not run because I have a SUM() inside a LAG() which is just illegal but I’ve included it just to conceptualize the idea.

Or

Now I should mention there is are two null columns, result and CumRes, in “ready_set” which is why the second query even runs.

Here is the exact idea shown in an Excel spreadsheet. It is not extremely complex in principle but it is in programming I guess! Excel Formula of the same idea

EDIT: Excel results of the formula

I am trying to, at the same time, keep a running total of the results under CumRes, and calculate Results based off the previous cumulative. They are interdependent so I can’t simply sum Results to get the CumRes column. I’m not completely aware on how SQL generates rows and I may have the completely wrong approach if I’m trying to Lag on a column that is in the process of being made instead of pre existing. Do you see my problem or error in thinking?

Advertisement

Answer

This seems to match your formulas:

See fiddle

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement