Uses of Interface
org.jooq.WindowOverStep
-
Packages that use WindowOverStep Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of WindowOverStep in org.jooq
Subinterfaces of WindowOverStep in org.jooq Modifier and Type Interface Description interface
AggregateFilterStep<T>
The step in the specification of aggregate functions where the SQL:2003 standardFILTER clause
can be added.interface
AggregateFunction<T>
An aggregate function.interface
ArrayAggOrderByStep<T>
The SQL standardARRAY_AGG()
function.interface
GroupConcatOrderByStep
MySQL'sGROUP_CONCAT
function.interface
GroupConcatSeparatorStep
MySQL'sGROUP_CONCAT
function.interface
JSONArrayAggNullStep<T>
A step in the construction ofDSL.jsonArrayAgg(Field)
orDSL.jsonbArrayAgg(Field)
functions where theNULL
clause can be defined.interface
JSONArrayAggOrderByStep<J>
A step in the construction ofDSL.jsonArrayAgg(Field)
orDSL.jsonbArrayAgg(Field)
functions where theORDER BY
clause can be defined.interface
JSONObjectAggNullStep<T>
A step in the construction ofDSL.jsonObjectAgg(JSONEntry)
orDSL.jsonbObjectAgg(JSONEntry)
functions where theNULL
clause can be defined.interface
WindowBeforeOverStep<T>
This type is used for the window function DSL API.interface
WindowFromFirstLastStep<T>
This type is used for the window function DSL API.interface
WindowIgnoreNullsStep<T>
This type is used for the window function DSL API.interface
XMLAggOrderByStep<T>
The SQL standardARRAY_AGG()
function.Methods in org.jooq that return WindowOverStep Modifier and Type Method Description @NotNull WindowOverStep<T>
WindowIgnoreNullsStep. ignoreNulls()
Add anIGNORE NULLS
clause to the window function.@NotNull WindowOverStep<T>
WindowIgnoreNullsStep. respectNulls()
Add aRESPECT NULLS
clause to the window function. -
Uses of WindowOverStep in org.jooq.impl
Methods in org.jooq.impl that return WindowOverStep Modifier and Type Method Description static @NotNull WindowOverStep<BigDecimal>
DSL. cumeDist()
Thecume_dist() over ([analytic clause])
function.static @NotNull WindowOverStep<Integer>
DSL. denseRank()
Thedense_rank() over ([analytic clause])
function.static @NotNull WindowOverStep<Integer>
DSL. ntile(int number)
Thentile([number]) over ([analytic clause])
function.static @NotNull WindowOverStep<BigDecimal>
DSL. percentRank()
Theprecent_rank() over ([analytic clause])
function.static @NotNull WindowOverStep<Integer>
DSL. rank()
Therank() over ([analytic clause])
function.static @NotNull WindowOverStep<BigDecimal>
DSL. ratioToReport(Number number)
Theratio_to_report([expression]) over ([analytic clause])
function.static @NotNull WindowOverStep<BigDecimal>
DSL. ratioToReport(Field<? extends Number> field)
Theratio_to_report([expression]) over ([analytic clause])
function.static @NotNull WindowOverStep<Integer>
DSL. rowNumber()
Therow_number() over ([analytic clause])
function.
-