|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
T
- The function return typepublic interface WindowOrderByStep<T>
This type is used for the window function DSL API.
Example:
field.firstValue()
.ignoreNulls()
.over()
.partitionBy(AUTHOR_ID)
.orderBy(PUBLISHED_IN.asc())
.rowsBetweenUnboundedPreceding()
.andUnboundedFollowing()
Method Summary | |
---|---|
WindowRowsStep<T> |
orderBy(Collection<SortField<?>> fields)
Add an ORDER BY clause to the window function. |
WindowRowsStep<T> |
orderBy(Field<?>... fields)
Add an ORDER BY clause to the window function. |
WindowRowsStep<T> |
orderBy(SortField<?>... fields)
Add an ORDER BY clause to the window function. |
Methods inherited from interface org.jooq.NamedTypeProviderQueryPart |
---|
getDataType, getDataType |
Methods inherited from interface org.jooq.Attachable |
---|
attach |
Methods inherited from interface org.jooq.Adapter |
---|
internalAPI |
Methods inherited from interface java.lang.Comparable |
---|
compareTo |
Method Detail |
---|
WindowRowsStep<T> orderBy(Field<?>... fields)
ORDER BY
clause to the window function.
WindowRowsStep<T> orderBy(SortField<?>... fields)
ORDER BY
clause to the window function.
WindowRowsStep<T> orderBy(Collection<SortField<?>> fields)
ORDER BY
clause to the window function.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |