Package | Description |
---|---|
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
static OrderedAggregateFunction<BigDecimal> |
DSL.cumeDist(Field<?>... fields)
The
cume_dist(expr) within group (order by [order clause])
ordered aggregate function. |
static OrderedAggregateFunction<Integer> |
DSL.denseRank(Field<?>... fields)
The
dense_rank(expr) within group (order by [order clause])
ordered aggregate function. |
static OrderedAggregateFunction<String> |
DSL.listAgg(Field<?> field)
Get the aggregated concatenation for a field.
|
static OrderedAggregateFunction<String> |
DSL.listAgg(Field<?> field,
String separator)
Get the aggregated concatenation for a field.
|
static OrderedAggregateFunction<Integer> |
DSL.percentRank(Field<?>... fields)
The
percent_rank(expr) within group (order by [order clause])
ordered aggregate function. |
static OrderedAggregateFunction<Integer> |
DSL.rank(Field<?>... fields)
The
rank(expr) within group (order by [order clause])
ordered aggregate function. |
Copyright © 2015. All Rights Reserved.