Window Frames
Define subsets of rows for calculation. Window frames specify which rows relative to the current row are included in the window function's calculation.
Syntax
frame_clause:
{ROWS | RANGE} {frame_border | BETWEEN frame_border AND frame_border}
frame_border:
| UNBOUNDED PRECEDING
| UNBOUNDED FOLLOWING
| CURRENT ROW
| expr PRECEDING
| expr FOLLOWINGDescription
Last updated
Was this helpful?

