Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Interface and Description |
---|---|
interface |
AggregateFilterStep<T>
The step in the specification of aggregate functions where the SQL:2003
standard
FILTER clause can be added. |
interface |
AggregateFunction<T>
An aggregate function is a special field that is usually used in a
GROUP BY context. |
interface |
ArrayAggOrderByStep<T>
The SQL standard
ARRAY_AGG() function. |
interface |
GroupConcatOrderByStep
MySQL's
GROUP_CONCAT function. |
interface |
GroupConcatSeparatorStep
MySQL's
GROUP_CONCAT function. |
Modifier and Type | Method and Description |
---|---|
WindowBeforeOverStep<T> |
AggregateFilterStep.filterWhere(Boolean field)
Add a
FILTER clause to the aggregate function. |
WindowBeforeOverStep<T> |
AggregateFilterStep.filterWhere(Collection<? extends Condition> conditions)
Add a
FILTER clause to the aggregate function, connecting
conditions with each other with Operator.AND . |
WindowBeforeOverStep<T> |
AggregateFilterStep.filterWhere(Condition... conditions)
Add a
FILTER clause to the aggregate function, connecting
conditions with each other with Operator.AND . |
WindowBeforeOverStep<T> |
AggregateFilterStep.filterWhere(Field<Boolean> field)
Add a
FILTER clause to the aggregate function. |
WindowBeforeOverStep<T> |
AggregateFilterStep.filterWhere(SQL sql)
Add a
FILTER clause to the aggregate function. |
WindowBeforeOverStep<T> |
AggregateFilterStep.filterWhere(String sql)
Add a
FILTER clause to the aggregate function. |
WindowBeforeOverStep<T> |
AggregateFilterStep.filterWhere(String sql,
Object... bindings)
Add a
FILTER clause to the aggregate function. |
WindowBeforeOverStep<T> |
AggregateFilterStep.filterWhere(String sql,
QueryPart... parts)
Add a
FILTER clause to the aggregate function. |
Copyright © 2015. All Rights Reserved.