T
- The function return typepublic interface WindowFromFirstLastStep<T> extends WindowIgnoreNullsStep<T>
Example:
field.firstValue()
.ignoreNulls()
.over()
.partitionBy(AUTHOR_ID)
.orderBy(PUBLISHED_IN.asc())
.rowsBetweenUnboundedPreceding()
.andUnboundedFollowing()
Modifier and Type | Method and Description |
---|---|
WindowIgnoreNullsStep<T> |
fromFirst()
Add an
FROM FIRST clause to the window function. |
WindowIgnoreNullsStep<T> |
fromLast()
Add a
FROM LAST clause to the window function. |
ignoreNulls, respectNulls
Copyright © 2019. All rights reserved.