Module org.jooq
Package org.jooq

Interface WindowRowsAndStep<T>

  • Type Parameters:
    T - The function return type

    public interface WindowRowsAndStep<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()
     
    Author:
    Lukas Eder