SelectConditionStep<R> |
SelectConditionStep.and(Boolean condition) |
Deprecated.
|
SelectConditionStep<R> |
SelectConditionStep.and(String sql) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.and(String sql,
Object... bindings) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.and(String sql,
QueryPart... parts) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.and(Condition condition) |
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.and(Field<Boolean> condition) |
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.
|
SelectConditionStep<R> |
SelectConditionStep.andExists(Select<?> select) |
Combine the currently assembled conditions with an EXISTS clause using
the Operator.AND operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.andNot(Boolean condition) |
Deprecated.
|
SelectConditionStep<R> |
SelectConditionStep.andNot(Condition condition) |
Combine the currently assembled conditions with a negated other one using
the Operator.AND operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.andNot(Field<Boolean> condition) |
Combine the currently assembled conditions with a negated other one using
the Operator.AND operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.andNotExists(Select<?> select) |
Combine the currently assembled conditions with a NOT EXISTS clause using
the Operator.AND operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.or(Boolean condition) |
Deprecated.
|
SelectConditionStep<R> |
SelectConditionStep.or(String sql) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.or(String sql,
Object... bindings) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.or(String sql,
QueryPart... parts) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.or(Condition condition) |
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.or(Field<Boolean> condition) |
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.
|
SelectConditionStep<R> |
SelectConditionStep.orExists(Select<?> select) |
Combine the currently assembled conditions with an EXISTS clause using
the Operator.OR operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.orNot(Boolean condition) |
Deprecated.
|
SelectConditionStep<R> |
SelectConditionStep.orNot(Condition condition) |
Combine the currently assembled conditions with a negated other one using
the Operator.OR operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.orNot(Field<Boolean> condition) |
Combine the currently assembled conditions with a negated other one using
the Operator.OR operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectConditionStep.orNotExists(Select<?> select) |
Combine the currently assembled conditions with a NOT EXISTS clause using
the Operator.OR operator and proceed to the next step.
|
SelectConditionStep<R> |
SelectWhereStep.where(Boolean field) |
Deprecated.
|
SelectConditionStep<R> |
SelectWhereStep.where(String sql) |
Add a WHERE clause to the query.
|
SelectConditionStep<R> |
SelectWhereStep.where(String sql,
Object... bindings) |
Add a WHERE clause to the query.
|
SelectConditionStep<R> |
SelectWhereStep.where(String sql,
QueryPart... parts) |
Add a WHERE clause to the query.
|
SelectConditionStep<R> |
SelectWhereStep.where(Collection<? extends Condition> conditions) |
Add a WHERE clause to the query, connecting them with each
other with Operator.AND .
|
SelectConditionStep<R> |
SelectWhereStep.where(Condition condition) |
Add a WHERE clause to the query, connecting them with each
other with Operator.AND .
|
SelectConditionStep<R> |
SelectWhereStep.where(Condition... conditions) |
Add a WHERE clause to the query, connecting them with each
other with Operator.AND .
|
SelectConditionStep<R> |
SelectWhereStep.where(Field<Boolean> field) |
Add a WHERE clause to the query.
|
SelectConditionStep<R> |
SelectWhereStep.where(SQL sql) |
Add a WHERE clause to the query.
|
SelectConditionStep<R> |
SelectWhereStep.whereExists(Select<?> select) |
Add a WHERE EXISTS clause to the query.
|
SelectConditionStep<R> |
SelectWhereStep.whereNotExists(Select<?> select) |
Add a WHERE NOT EXISTS clause to the query.
|