|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface SelectConditionStep
The step in a Select
query, where additional conditions can be added
to the where clause.
This is the step in query construction, where you can add conditions to a
query. This step is optional. If you add conditions, you can proceed to the
optional SelectGroupByStep
.
Method Summary | |
---|---|
SelectConditionStep |
and(Condition condition)
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step. |
SelectConditionStep |
and(String sql)
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step. |
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 |
andExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator and proceed to the next step. |
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 |
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 |
or(Condition condition)
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step. |
SelectConditionStep |
or(String sql)
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step. |
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 |
orExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator and proceed to the next step. |
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 |
orNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator and proceed to the next step. |
Methods inherited from interface org.jooq.SelectGroupByStep |
---|
groupBy, groupBy |
Methods inherited from interface org.jooq.SelectHavingStep |
---|
having, having, having, having |
Methods inherited from interface org.jooq.SelectOrderByStep |
---|
orderBy, orderBy, orderBy |
Methods inherited from interface org.jooq.SelectLimitStep |
---|
limit, limit |
Methods inherited from interface org.jooq.SelectFinalStep |
---|
forShare, forUpdate, getQuery |
Methods inherited from interface org.jooq.Select |
---|
except, fetch, fetch, fetch, fetch, fetchAny, fetchLazy, fetchMap, fetchMap, fetchOne, fetchOne, fetchOne, fetchOne, getRecordType, getResult, getSelect, intersect, union, unionAll |
Methods inherited from interface org.jooq.Query |
---|
execute |
Methods inherited from interface org.jooq.TableLike |
---|
asTable, asTable |
Methods inherited from interface org.jooq.QueryPart |
---|
getSQL |
Methods inherited from interface org.jooq.Attachable |
---|
attach, getConfiguration |
Methods inherited from interface org.jooq.Adapter |
---|
internalAPI |
Methods inherited from interface org.jooq.FieldLike |
---|
asField, asField |
Methods inherited from interface org.jooq.FieldProvider |
---|
getField, getField, getField, getFields, getIndex |
Method Detail |
---|
SelectConditionStep and(Condition condition)
Operator.AND
operator and proceed to the next step.
SelectConditionStep and(String sql)
Operator.AND
operator and proceed to the next step.
Factory.plainSQLCondition(String)
SelectConditionStep and(String sql, Object... bindings)
Operator.AND
operator and proceed to the next step.
Factory.plainSQLCondition(String, Object...)
SelectConditionStep andNot(Condition condition)
Operator.AND
operator and proceed to the next step.
SelectConditionStep andExists(Select<?> select)
Operator.AND
operator and proceed to the next step.
SelectConditionStep andNotExists(Select<?> select)
Operator.AND
operator and proceed to the next step.
SelectConditionStep or(Condition condition)
Operator.OR
operator and proceed to the next step.
SelectConditionStep or(String sql)
Operator.OR
operator and proceed to the next step.
Factory.plainSQLCondition(String)
SelectConditionStep or(String sql, Object... bindings)
Operator.OR
operator and proceed to the next step.
Factory.plainSQLCondition(String, Object...)
SelectConditionStep orNot(Condition condition)
Operator.OR
operator and proceed to the next step.
SelectConditionStep orExists(Select<?> select)
Operator.OR
operator and proceed to the next step.
SelectConditionStep orNotExists(Select<?> select)
Operator.OR
operator and proceed to the next step.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |