Uses of Interface
org.jooq.WindowBeforeOverStep
-
Uses of WindowBeforeOverStep in org.jooq
Modifier and TypeInterfaceDescriptioninterface
The step in the specification of aggregate functions where the SQL:2003 standardFILTER clause
can be added.interface
An aggregate function.interface
The SQL standardARRAY_AGG()
function.interface
MySQL'sGROUP_CONCAT
function.interface
MySQL'sGROUP_CONCAT
function.interface
A step in the construction ofDSL.jsonArrayAgg(Field)
orDSL.jsonbArrayAgg(Field)
functions where theNULL
clause can be defined.interface
A step in the construction ofDSL.jsonArrayAgg(Field)
orDSL.jsonbArrayAgg(Field)
functions where theORDER BY
clause can be defined.interface
A step in the construction ofDSL.jsonArrayAgg(Field)
orDSL.jsonbArrayAgg(Field)
functions where theRETURNING
clause can be defined.interface
A step in the construction ofDSL.jsonObjectAgg(JSONEntry)
orDSL.jsonbObjectAgg(JSONEntry)
functions where theNULL
clause can be defined.interface
A step in the construction ofDSL.jsonObjectAgg(JSONEntry)
orDSL.jsonbObjectAgg(JSONEntry)
functions where theRETURNING
clause can be defined.interface
The SQL standardARRAY_AGG()
function.Modifier and TypeMethodDescription@NotNull WindowBeforeOverStep<T>
AggregateFilterStep.filterWhere(String sql)
Add aFILTER clause
to the aggregate function.@NotNull WindowBeforeOverStep<T>
AggregateFilterStep.filterWhere(String sql, Object... bindings)
Add aFILTER clause
to the aggregate function.@NotNull WindowBeforeOverStep<T>
AggregateFilterStep.filterWhere(String sql, QueryPart... parts)
Add aFILTER clause
to the aggregate function.@NotNull WindowBeforeOverStep<T>
AggregateFilterStep.filterWhere(Collection<? extends Condition> conditions)
Add aFILTER clause
to the aggregate function, connecting conditions with each other withOperator.AND
.@NotNull WindowBeforeOverStep<T>
AggregateFilterStep.filterWhere(Condition condition)
Add aFILTER clause
to the aggregate function, connecting conditions with each other withOperator.AND
.@NotNull WindowBeforeOverStep<T>
AggregateFilterStep.filterWhere(Condition... conditions)
Add aFILTER clause
to the aggregate function, connecting conditions with each other withOperator.AND
.@NotNull WindowBeforeOverStep<T>
AggregateFilterStep.filterWhere(Field<Boolean> field)
Add aFILTER clause
to the aggregate function.@NotNull WindowBeforeOverStep<T>
AggregateFilterStep.filterWhere(SQL sql)
Add aFILTER clause
to the aggregate function.