Concept Flow - Running total without window functions
Start with first row
Calculate sum of all previous rows
Add current row's value
Store running total for current row
Move to next row
Repeat until last row
End with full running total column
For each row, sum all previous rows' values plus the current one to get a running total, repeating until all rows are processed.