| Package | Description | 
|---|---|
| org.jooq | The  org.jooqpackage contains jOOQ's public API. | 
| org.jooq.impl | The  org.jooq.implpackage contains jOOQ's implementation classes. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | AggregateFilterStep<T>The step in the specification of aggregate functions where the SQL:2003
 standard  FILTER clausecan be added. | 
| interface  | AggregateFunction<T>An aggregate function is a special field that is usually used in a
  GROUP BYcontext. | 
| interface  | ArrayAggOrderByStep<T>The SQL standard  ARRAY_AGG()function. | 
| interface  | GroupConcatOrderByStepMySQL's  GROUP_CONCATfunction. | 
| interface  | GroupConcatSeparatorStepMySQL's  GROUP_CONCATfunction. | 
| interface  | WindowBeforeOverStep<T>This type is used for the window function DSL API. | 
| interface  | WindowIgnoreNullsStep<T>This type is used for the window function DSL API. | 
| Modifier and Type | Method and Description | 
|---|---|
| WindowOverStep<T> | WindowIgnoreNullsStep. ignoreNulls()Add an  IGNORE NULLSclause to the window function. | 
| WindowOverStep<T> | WindowIgnoreNullsStep. respectNulls()Add a  RESPECT NULLSclause to the window function. | 
| Modifier and Type | Method and Description | 
|---|---|
| static WindowOverStep<BigDecimal> | DSL. cumeDist()The  cume_dist() over ([analytic clause])function. | 
| static WindowOverStep<Integer> | DSL. denseRank()The  dense_rank() over ([analytic clause])function. | 
| static WindowOverStep<Integer> | DSL. ntile(int number)The  ntile([number]) over ([analytic clause])function. | 
| static WindowOverStep<BigDecimal> | DSL. percentRank()The  precent_rank() over ([analytic clause])function. | 
| static WindowOverStep<Integer> | DSL. rank()The  rank() over ([analytic clause])function. | 
| static WindowOverStep<BigDecimal> | DSL. ratioToReport(Field<? extends Number> field)The  ratio_to_report([expression]) over ([analytic clause])function. | 
| static WindowOverStep<BigDecimal> | DSL. ratioToReport(Number number)The  ratio_to_report([expression]) over ([analytic clause])function. | 
| static WindowOverStep<Integer> | DSL. rowNumber()The  row_number() over ([analytic clause])function. | 
Copyright © 2017. All Rights Reserved.