static <T> ArrayAggOrderByStep<T[]> |
DSL.arrayAgg(Field<T> field) |
Get the array_agg() aggregate function.
|
static <T> ArrayAggOrderByStep<T[]> |
DSL.arrayAggDistinct(Field<T> field) |
Get the array_agg() aggregate function.
|
static <T,A extends ArrayRecord<T>> ArrayAggOrderByStep<A> |
DSL.collect(Field<T> field,
Class<A> type) |
Get the collect() aggregate function.
|
static <T,A extends ArrayRecord<T>> ArrayAggOrderByStep<A> |
DSL.collect(Field<T> field,
DataType<A> type) |
Get the collect() aggregate function.
|
static <T,A extends ArrayRecord<T>> ArrayAggOrderByStep<A> |
DSL.collectDistinct(Field<T> field,
Class<A> type) |
Get the collect() aggregate function.
|
static <T,A extends ArrayRecord<T>> ArrayAggOrderByStep<A> |
DSL.collectDistinct(Field<T> field,
DataType<A> type) |
Get the collect() aggregate function.
|