public interface WindowDefinition extends QueryPart
Window definitions can be
WINDOW
clause (see
SelectWindowStep.window(WindowDefinition...)
OVER
clause (see
AggregateFunction.over(WindowDefinition)
The WINDOW
clause is only natively supported by
SQLDialect.POSTGRES
SQLDialect#SYBASE
If your database supports window functions, but not the WINDOW
clause, jOOQ will inline window definitions into their respective window
functions.
Copyright © 2014. All Rights Reserved.