Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Interface and Description |
---|---|
interface |
TableOptionalOnStep
|
interface |
TablePartitionByStep
An intermediate type for the construction of a partitioned
SQLDialect.ORACLE OUTER JOIN clause. |
Modifier and Type | Method and Description |
---|---|
TableOnStep |
Table.fullOuterJoin(String sql)
FULL OUTER JOIN a table to this table. |
TableOnStep |
Table.fullOuterJoin(String sql,
Object... bindings)
FULL OUTER JOIN a table to this table. |
TableOnStep |
Table.fullOuterJoin(String sql,
QueryPart... parts)
FULL OUTER JOIN a table to this table. |
TableOnStep |
Table.fullOuterJoin(TableLike<?> table)
FULL OUTER JOIN a table to this table. |
TableOnStep |
Table.join(String sql)
INNER JOIN a table to this table. |
TableOnStep |
Table.join(String sql,
Object... bindings)
INNER JOIN a table to this table. |
TableOnStep |
Table.join(String sql,
QueryPart... parts)
INNER JOIN a table to this table. |
TableOnStep |
Table.join(TableLike<?> table)
INNER JOIN a table to this table. |
TableOnStep |
TablePartitionByStep.partitionBy(Collection<? extends Field<?>> fields)
Add a
PARTITION BY clause to the right hand side of the
OUTER JOIN keywords |
TableOnStep |
TablePartitionByStep.partitionBy(Field<?>... fields)
Add a
PARTITION BY clause to the right hand side of the
OUTER JOIN keywords |
Copyright © 2014. All Rights Reserved.