org.jooq
Interface WindowOverStep<T>

Type Parameters:
T - The function return type
All Known Subinterfaces:
AggregateFunction<T>, GroupConcatOrderByStep, GroupConcatSeparatorStep, WindowIgnoreNullsStep<T>

public interface WindowOverStep<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

Method Summary
 WindowPartitionByStep<T> over()
          Add an OVER clause
 

Method Detail

over

WindowPartitionByStep<T> over()
Add an OVER clause



Copyright © 2012. All Rights Reserved.