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