T
- The function return typepublic interface WindowRowsAndStep<T>
Example:
field.firstValue()
.ignoreNulls()
.over()
.partitionBy(AUTHOR_ID)
.orderBy(PUBLISHED_IN.asc())
.rowsBetweenUnboundedPreceding()
.andUnboundedFollowing()
Modifier and Type | Method and Description |
---|---|
@NotNull WindowExcludeStep<T> |
andCurrentRow()
Add a
... |
@NotNull WindowExcludeStep<T> |
andFollowing(int number)
Add a
... |
@NotNull WindowExcludeStep<T> |
andPreceding(int number)
Add a
... |
@NotNull WindowExcludeStep<T> |
andUnboundedFollowing()
Add a
... |
@NotNull WindowExcludeStep<T> |
andUnboundedPreceding()
Add a
... |
@NotNull @Support(value={H2,MARIADB,MYSQL,POSTGRES,SQLITE}) @NotNull WindowExcludeStep<T> andUnboundedPreceding()
... AND UNBOUNDED PRECEDING
frame clause to the window
function.@NotNull @Support(value={H2,MARIADB,MYSQL,POSTGRES,SQLITE}) @NotNull WindowExcludeStep<T> andPreceding(int number)
... AND [number] PRECEDING
frame clause to the window
function.@NotNull @Support(value={H2,MARIADB,MYSQL,POSTGRES,SQLITE}) @NotNull WindowExcludeStep<T> andCurrentRow()
... AND CURRENT ROW
frame clause to the window
function.@NotNull @Support(value={H2,MARIADB,MYSQL,POSTGRES,SQLITE}) @NotNull WindowExcludeStep<T> andUnboundedFollowing()
... AND UNBOUNDED FOLLOWING
frame clause to the window
function.Copyright © 2021. All rights reserved.