public interface WindowDefinition extends QueryPart
Window definitions can be
WINDOW
clause (see
SelectWindowStep.window(WindowDefinition...)
OVER
clause (see
WindowOverStep.over(WindowDefinition)
The WINDOW
clause is only natively supported by
SQLDialect.AURORA_POSTGRES
SQLDialect.H2
SQLDialect.MYSQL
SQLDialect.POSTGRES
SQLDialect.SQLITE
SQLDialect.SYBASE
If your database supports window functions, but not the WINDOW
clause, jOOQ will inline window definitions into their respective window
functions.
Copyright © 2019. All rights reserved.