T
- The function return typepublic interface WindowIgnoreNullsStep<T> extends WindowOverStep<T>
Example:
field.firstValue()
.ignoreNulls()
.over()
.partitionBy(AUTHOR_ID)
.orderBy(PUBLISHED_IN.asc())
.rowsBetweenUnboundedPreceding()
.andUnboundedFollowing()
Modifier and Type | Method and Description |
---|---|
WindowOverStep<T> |
ignoreNulls()
Add an
IGNORE NULLS clause to the window function. |
WindowOverStep<T> |
respectNulls()
Add a
RESPECT NULLS clause to the window function. |
Copyright © 2014. All Rights Reserved.