Uses of Interface
org.jooq.WindowOrderByStep
-
Packages that use WindowOrderByStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of WindowOrderByStep in org.jooq
Subinterfaces of WindowOrderByStep in org.jooq Modifier and Type Interface Description interface
WindowPartitionByStep<T>
This type is used for the window function DSL API.Methods in org.jooq that return WindowOrderByStep Modifier and Type Method Description WindowOrderByStep<T>
WindowPartitionByStep. partitionBy(Collection<? extends Field<?>> fields)
Add aPARTITION BY
clause to the window functions.WindowOrderByStep<T>
WindowPartitionByStep. partitionBy(Field<?>... fields)
Add aPARTITION BY
clause to the window functions.WindowOrderByStep<T>
WindowPartitionByStep. partitionByOne()
Deprecated.- 3.10 - [#6427] - This synthetic clause is no longer supported, useWindowPartitionByStep.partitionBy(Field...)
instead, or omit the clause entirely.
-