Condition |
Condition.and(SQL sql) |
Combine this condition with another one using the Operator.AND
operator.
|
DeleteConditionStep<R> |
DeleteConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator
|
DivideByOnConditionStep |
DivideByOnConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
MergeOnConditionStep<R> |
MergeOnConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectConnectByConditionStep<R> |
SelectConnectByConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectHavingConditionStep<R> |
SelectHavingConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectOnConditionStep<R> |
SelectOnConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectQualifyConditionStep<R> |
SelectQualifyConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
TableOnConditionStep<R> |
TableOnConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator.
|
UpdateConditionStep<R> |
UpdateConditionStep.and(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator
|
CreateViewFinalStep |
CreateViewAsStep.as(SQL sql) |
Add an AS clause to the CREATE VIEW statement.
|
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectBy(SQL sql) |
Add an Oracle-specific CONNECT BY clause to the query
|
SelectConnectByConditionStep<R> |
SelectConnectByStep.connectBy(SQL sql) |
Add an Oracle-specific CONNECT BY clause to the query
|
SelectConnectByAfterStartWithConditionStep<R> |
SelectConnectByAfterStartWithStep.connectByNoCycle(SQL sql) |
Add an Oracle-specific CONNECT BY NOCYCLE clause to the
query
|
SelectConnectByConditionStep<R> |
SelectConnectByStep.connectByNoCycle(SQL sql) |
Add an Oracle-specific CONNECT BY NOCYCLE clause to the
query
|
SelectJoinStep<R> |
SelectJoinStep.crossApply(SQL sql) |
CROSS APPLY a table to this table.
|
Table<Record> |
Table.crossApply(SQL sql) |
CROSS APPLY a table to this table.
|
SelectJoinStep<R> |
SelectJoinStep.crossJoin(SQL sql) |
|
Table<Record> |
Table.crossJoin(SQL sql) |
CROSS JOIN a table to this table.
|
int |
DSLContext.execute(SQL sql) |
Execute a query holding plain SQL.
|
Result<Record> |
DSLContext.fetch(SQL sql) |
Execute a new query holding plain SQL.
|
CompletionStage<Result<Record>> |
DSLContext.fetchAsync(Executor executor,
SQL sql) |
Fetch results in a new CompletionStage that is asynchronously
completed by a task running in the given executor.
|
CompletionStage<Result<Record>> |
DSLContext.fetchAsync(SQL sql) |
|
Cursor<Record> |
DSLContext.fetchLazy(SQL sql) |
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
Results |
DSLContext.fetchMany(SQL sql) |
Execute a new query holding plain SQL, possibly returning several result
sets.
|
Record |
DSLContext.fetchOne(SQL sql) |
Execute a new query holding plain SQL.
|
Optional<Record> |
DSLContext.fetchOptional(SQL sql) |
Execute a new query holding plain SQL.
|
Optional<?> |
DSLContext.fetchOptionalValue(SQL sql) |
Execute a new query holding plain SQL.
|
Record |
DSLContext.fetchSingle(SQL sql) |
Execute a new query holding plain SQL.
|
Stream<Record> |
DSLContext.fetchStream(SQL sql) |
Execute a new query holding plain SQL and "lazily" return the generated
result.
|
Object |
DSLContext.fetchValue(SQL sql) |
Execute a new query holding plain SQL.
|
List<?> |
DSLContext.fetchValues(SQL sql) |
Execute a new query holding plain SQL.
|
WindowBeforeOverStep<T> |
AggregateFilterStep.filterWhere(SQL sql) |
Add a FILTER clause to the aggregate function.
|
SelectJoinStep<R> |
SelectFromStep.from(SQL sql) |
Add a FROM clause to the query.
|
UpdateWhereStep<R> |
UpdateFromStep.from(SQL sql) |
Add a FROM clause to the query.
|
SelectOnStep<R> |
SelectJoinStep.fullJoin(SQL sql) |
|
TableOnStep<Record> |
Table.fullJoin(SQL sql) |
FULL OUTER JOIN a table to this table.
|
SelectOnStep<R> |
SelectJoinStep.fullOuterJoin(SQL sql) |
|
TableOnStep<Record> |
Table.fullOuterJoin(SQL sql) |
FULL OUTER JOIN a table to this table.
|
SelectHavingConditionStep<R> |
SelectHavingStep.having(SQL sql) |
Add a HAVING clause to the query.
|
SelectOnStep<R> |
SelectJoinStep.innerJoin(SQL sql) |
Convenience method to INNER JOIN a table to the last table
added to the FROM clause using Table.join(String) .
|
TableOnStep<Record> |
Table.innerJoin(SQL sql) |
INNER JOIN a table to this table.
|
SelectOnStep<R> |
SelectJoinStep.join(SQL sql) |
Convenience method to INNER JOIN a table to the last table
added to the FROM clause using Table.join(String) .
|
TableOnStep<Record> |
Table.join(SQL sql) |
INNER JOIN a table to this table.
|
SelectJoinPartitionByStep<R> |
SelectJoinStep.leftJoin(SQL sql) |
|
TablePartitionByStep<Record> |
Table.leftJoin(SQL sql) |
LEFT OUTER JOIN a table to this table.
|
TableOnStep<Record> |
TableOuterJoinStep.leftJoin(SQL sql) |
LEFT OUTER JOIN a table to this table.
|
SelectJoinPartitionByStep<R> |
SelectJoinStep.leftOuterJoin(SQL sql) |
|
TablePartitionByStep<Record> |
Table.leftOuterJoin(SQL sql) |
LEFT OUTER JOIN a table to this table.
|
TableOnStep<Record> |
TableOuterJoinStep.leftOuterJoin(SQL sql) |
LEFT OUTER JOIN a table to this table.
|
SelectJoinStep<R> |
SelectJoinStep.naturalFullOuterJoin(SQL sql) |
|
Table<Record> |
Table.naturalFullOuterJoin(SQL sql) |
NATURAL FULL OUTER JOIN a table to this table.
|
SelectJoinStep<R> |
SelectJoinStep.naturalJoin(SQL sql) |
|
Table<Record> |
Table.naturalJoin(SQL sql) |
NATURAL JOIN a table to this table.
|
SelectJoinStep<R> |
SelectJoinStep.naturalLeftOuterJoin(SQL sql) |
|
Table<Record> |
Table.naturalLeftOuterJoin(SQL sql) |
NATURAL LEFT OUTER JOIN a table to this table.
|
SelectJoinStep<R> |
SelectJoinStep.naturalRightOuterJoin(SQL sql) |
|
Table<Record> |
Table.naturalRightOuterJoin(SQL sql) |
NATURAL RIGHT OUTER JOIN a table to this table.
|
DivideByOnConditionStep |
DivideByOnStep.on(SQL sql) |
Add a division condition to the DIVIDE BY clause
|
MergeOnConditionStep<R> |
MergeOnStep.on(SQL sql) |
Provide join conditions and proceed to the next step
|
SelectOnConditionStep<R> |
SelectOnStep.on(SQL sql) |
Add an ON clause to the previous JOIN .
|
TableOnConditionStep<R> |
TableOnStep.on(SQL sql) |
Add an ON clause to the JOIN .
|
Condition |
Condition.or(SQL sql) |
Combine this condition with another one using the Operator.OR
operator.
|
DeleteConditionStep<R> |
DeleteConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator
|
DivideByOnConditionStep |
DivideByOnConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
MergeOnConditionStep<R> |
MergeOnConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
SelectHavingConditionStep<R> |
SelectHavingConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
SelectOnConditionStep<R> |
SelectOnConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
SelectQualifyConditionStep<R> |
SelectQualifyConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
TableOnConditionStep<R> |
TableOnConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator.
|
UpdateConditionStep<R> |
UpdateConditionStep.or(SQL sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator
|
SelectJoinStep<R> |
SelectJoinStep.outerApply(SQL sql) |
OUTER APPLY a table to this table.
|
Table<Record> |
Table.outerApply(SQL sql) |
OUTER APPLY a table to this table.
|
SelectQualifyConditionStep<R> |
SelectQualifyStep.qualify(SQL sql) |
Add a QUALIFY clause to the query.
|
RowCountQuery |
DSLContext.query(SQL sql) |
Create a new query holding plain SQL.
|
ResultQuery<Record> |
DSLContext.resultQuery(SQL sql) |
Create a new query holding plain SQL.
|
SelectJoinPartitionByStep<R> |
SelectJoinStep.rightJoin(SQL sql) |
|
TablePartitionByStep<Record> |
Table.rightJoin(SQL sql) |
RIGHT OUTER JOIN a table to this table.
|
TableOnStep<Record> |
TableOuterJoinStep.rightJoin(SQL sql) |
RIGHT OUTER JOIN a table to this table.
|
SelectJoinPartitionByStep<R> |
SelectJoinStep.rightOuterJoin(SQL sql) |
|
TablePartitionByStep<Record> |
Table.rightOuterJoin(SQL sql) |
RIGHT OUTER JOIN a table to this table.
|
TableOnStep<Record> |
TableOuterJoinStep.rightOuterJoin(SQL sql) |
RIGHT OUTER JOIN a table to this table.
|
SelectWhereStep<Record> |
DSLContext.selectFrom(SQL sql) |
Create a new DSL select statement, projecting * .
|
SelectWhereStep<Record> |
WithStep.selectFrom(SQL sql) |
Create a new DSL select statement, projecting * .
|
SelectConnectByAfterStartWithStep<R> |
SelectConnectByStep.startWith(SQL sql) |
Add an Oracle-specific START WITH clause to the query's
CONNECT BY clause.
|
SelectGroupByStep<R> |
SelectStartWithStep.startWith(SQL sql) |
Add an Oracle-specific START WITH clause to the query's
CONNECT BY clause.
|
CreateTableFinalStep |
CreateTableStorageStep.storage(SQL sql) |
Add vendor-specific storage clauses to the CREATE TABLE statement.
|
SelectOnStep<R> |
SelectJoinStep.straightJoin(SQL sql) |
STRAIGHT_JOIN a table to this table.
|
TableOnStep<Record> |
Table.straightJoin(SQL sql) |
STRAIGHT_JOIN a table to this table.
|
DeleteWhereStep<R> |
DeleteUsingStep.using(SQL sql) |
Add a USING clause to the query.
|
CreateIndexFinalStep |
CreateIndexWhereStep.where(SQL sql) |
Add a WHERE clause to create a partial index.
|
DeleteConditionStep<R> |
DeleteWhereStep.where(SQL sql) |
Add conditions to the query.
|
InsertOnConflictConditionStep<R> |
InsertOnConflictWhereStep.where(SQL sql) |
Add a WHERE clause to the INSERT statement's
ON DUPLICATE KEY UPDATE or ON CONFLICT ...
|
SelectConditionStep<R> |
SelectWhereStep.where(SQL sql) |
Add a WHERE clause to the query.
|
Table<R> |
Table.where(SQL sql) |
Add a WHERE clause to the table.
|
UpdateConditionStep<R> |
UpdateWhereStep.where(SQL sql) |
Add conditions to the query
|