Window.currentRow
| |
Window.orderBy(*cols)
| Creates aWindowSpec with the ordering defined. |
Window.partitionBy(*cols)
| Creates aWindowSpec with the partitioning defined. |
Window.rangeBetween(start, end)
| Creates aWindowSpec with the frame boundaries defined, fromstart (inclusive) toend (inclusive). |
Window.rowsBetween(start, end)
| Creates aWindowSpec with the frame boundaries defined, fromstart (inclusive) toend (inclusive). |
Window.unboundedFollowing
| |
Window.unboundedPreceding
| |
WindowSpec.orderBy(*cols)
| Defines the ordering columns in aWindowSpec. |
WindowSpec.partitionBy(*cols)
| Defines the partitioning columns in aWindowSpec. |
WindowSpec.rangeBetween(start, end)
| Defines the frame boundaries, fromstart (inclusive) toend (inclusive). |
WindowSpec.rowsBetween(start, end)
| Defines the frame boundaries, fromstart (inclusive) toend (inclusive). |