Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
<R extends Record> |
Name.as(Select<R> select)
Specify a subselect to refer to by the
Name to form a common
table expression. |
<R extends Record> |
DerivedColumnList.as(Select<R> select)
Specify a subselect to refer to by the
DerivedColumnList to
form a common table expression. |
Modifier and Type | Method and Description |
---|---|
WithStep |
WithStep.with(CommonTableExpression<?>... tables)
Add another common table expression to the
WITH clause. |
WithStep |
DSLContext.with(CommonTableExpression<?>... tables)
Create a
WITH clause to supply subsequent
SELECT , UPDATE , INSERT ,
DELETE , and MERGE statements with
CommonTableExpression s. |
WithStep |
DSLContext.withRecursive(CommonTableExpression<?>... tables)
Create a
WITH clause to supply subsequent
SELECT , UPDATE , INSERT ,
DELETE , and MERGE statements with
CommonTableExpression s. |
Modifier and Type | Method and Description |
---|---|
static WithStep |
DSL.with(CommonTableExpression<?>... tables)
Create a
WITH clause to supply subsequent
SELECT , UPDATE , INSERT ,
DELETE , and MERGE statements with
CommonTableExpression s. |
WithStep |
DefaultDSLContext.with(CommonTableExpression<?>... tables) |
static WithStep |
DSL.withRecursive(CommonTableExpression<?>... tables)
Create a
WITH clause to supply subsequent
SELECT , UPDATE , INSERT ,
DELETE , and MERGE statements with
CommonTableExpression s. |
WithStep |
DefaultDSLContext.withRecursive(CommonTableExpression<?>... tables) |
Copyright © 2015. All Rights Reserved.