There is an important concept associated with window functions: for each row there is a set of rows in its partition called the . By default, when specifying ORDER BY, the frame consists of all rows from the beginning of the partition to the current row and rows equal to the current ORDER BY expression. Without ORDER BY, the default frame consists of all rows in the partition.

    As a result, for standard aggregate functions, the ORDER BY clause produces partial aggregation results as rows are processed.

    Results

    1. id salary cumul_salary
    2. 3 8.00 8.00
    3. 1 10.00 37.00
    4. 2 12.00 49.00

    Then cumul_salary returns the partial/accumulated (or running) aggregation (of the SUM function). It may appear strange that 37.00 is repeated for the ids 1 and 5, but that is how it should work. The keys are grouped together, and the aggregation is computed once (but summing the two 10.00). To avoid this, you can add the ID field to the end of the ORDER BY clause.

    With a partition, ORDER BY works the same way, but at each partition boundary the aggregation is reset.

    All aggregation functions can use , except for LIST().