Skip to content
Advertisement

SQL getting balance point of two cumulative sums

Bellow I provide a code, which does the job on this interesting task to some extent, but may be poorly designed due to my SQL knowledge limits. The main problem is, that the query gives random (more exactly 3 different) results when executed. My guess is, that the rows within nested queries get ordered by “randomly” selected column and that is why the final result is different (balance point is order-dependent).

The inner SELECT with GROUP creates a list of r-dates and two cumulative sums, such as this:

An attempt for sample data is in an attachment (removed due to comment bellow).

In the 2nd nested SELECT I find a balance-point, which is a (first) date, where CumulativeSum1 > CumulativeSum2. I then have to find an index of days with sums (because there are also days without data) and that is the final result; it’s the top-most SELECT in the query bellow:

I humbly ask for suggestions for the obvious issues:

  • how could I ensure order of rows in the nested query to get reliable result?
  • are there obvious mistakes in my query design and how to improve it?

Also, I just realized there’s a discrepancy in the topmost query, where I get index over bank days, hower the index should be over non-empty bank days…

Some sample data:

Advertisement

Answer

Suggested ROW_NUMBER() did not help to overcome the problém on it’s own. I had to split task into two steps: Fist, I had to set a variable @bDate to store the result of the 2 inner nested SELECTs and subsequently find the index of this date in separate SELECT step.

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