Skip to main content

Enumeration: FrameExclusion

Defined in: lang-sql/src/ast/window.ts:16

Rows excluded from the window frame.

Enumeration Members

CURRENT_ROW

CURRENT_ROW: "currentrow"

Defined in: lang-sql/src/ast/window.ts:22

EXCLUDE CURRENT ROW: exclude only the current row.


GROUP

GROUP: "group"

Defined in: lang-sql/src/ast/window.ts:24

EXCLUDE GROUP: exclude the current row and all its peers.


NO_OTHERS

NO_OTHERS: "noothers"

Defined in: lang-sql/src/ast/window.ts:18

EXCLUDE NO OTHERS (default): no rows excluded.


TIES

TIES: "ties"

Defined in: lang-sql/src/ast/window.ts:20

EXCLUDE TIES: exclude peer rows of the current row but not the current row itself.