public interface WindowSpecificationRowsAndStep
WindowSpecification
.
Example:
WindowSpecification spec =
DSL.partitionBy(BOOK.AUTHOR_ID)
.orderBy(BOOK.ID)
.rowsBetweenUnboundedPreceding()
.andCurrentRow();
Modifier and Type | Method and Description |
---|---|
WindowSpecificationFinalStep |
andCurrentRow()
Add a
... |
WindowSpecificationFinalStep |
andFollowing(int number)
Add a
... |
WindowSpecificationFinalStep |
andPreceding(int number)
Add a
... |
WindowSpecificationFinalStep |
andUnboundedFollowing()
Add a
... |
WindowSpecificationFinalStep |
andUnboundedPreceding()
Add a
... |
@Support(value={DB2,POSTGRES,ORACLE,SQLSERVER2012,SYBASE}) WindowSpecificationFinalStep andUnboundedPreceding()
... AND UNBOUNDED PRECEDING
frame clause to the window
specification.@Support(value={DB2,POSTGRES,ORACLE,SQLSERVER2012,SYBASE}) WindowSpecificationFinalStep andPreceding(int number)
... AND [number] PRECEDING
frame clause to the window
specification.@Support(value={DB2,POSTGRES,ORACLE,SQLSERVER2012,SYBASE}) WindowSpecificationFinalStep andCurrentRow()
... AND CURRENT ROW
frame clause to the window
specification.@Support(value={DB2,POSTGRES,ORACLE,SQLSERVER2012,SYBASE}) WindowSpecificationFinalStep andUnboundedFollowing()
... AND UNBOUNDED FOLLOWING
frame clause to the window
specification.@Support(value={DB2,POSTGRES,ORACLE,SQLSERVER2012,SYBASE}) WindowSpecificationFinalStep andFollowing(int number)
... AND [number] FOLLOWING
frame clause to the window
specification.Copyright © 2014. All Rights Reserved.