|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface TableOnConditionStep
An intermediate (optional) type for the construction of a JOIN
clause, where the join criteria is added using an ON clause
(with a Condition. This type can be used as a convenience type for
connecting more conditions.
| Method Summary | |
|---|---|
TableOnConditionStep |
and(Condition condition)
Combine the currently assembled conditions with another one using the Operator.AND operator. |
TableOnConditionStep |
and(String sql)
Combine the currently assembled conditions with another one using the Operator.AND operator. |
TableOnConditionStep |
and(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the Operator.AND operator. |
TableOnConditionStep |
andExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS
clause using the Operator.AND operator. |
TableOnConditionStep |
andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using the Operator.AND operator. |
TableOnConditionStep |
andNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS
clause using the Operator.AND operator. |
TableOnConditionStep |
or(Condition condition)
Combine the currently assembled conditions with another one using the Operator.OR operator. |
TableOnConditionStep |
or(String sql)
Combine the currently assembled conditions with another one using the Operator.OR operator. |
TableOnConditionStep |
or(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the Operator.OR operator. |
TableOnConditionStep |
orExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS
clause using the Operator.OR operator. |
TableOnConditionStep |
orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using the Operator.OR operator. |
TableOnConditionStep |
orNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS
clause using the Operator.OR operator. |
| Methods inherited from interface org.jooq.Table |
|---|
crossJoin, crossJoin, crossJoin, divideBy, fullOuterJoin, fullOuterJoin, fullOuterJoin, getIdentity, getReferences, getReferencesTo, join, join, join, leftOuterJoin, leftOuterJoin, leftOuterJoin, naturalJoin, naturalJoin, naturalJoin, naturalLeftOuterJoin, naturalLeftOuterJoin, naturalLeftOuterJoin, naturalRightOuterJoin, naturalRightOuterJoin, naturalRightOuterJoin, pivot, pivot, rightOuterJoin, rightOuterJoin, rightOuterJoin |
| Methods inherited from interface org.jooq.Type |
|---|
getRecordType |
| Methods inherited from interface org.jooq.NamedQueryPart |
|---|
getName |
| Methods inherited from interface org.jooq.Attachable |
|---|
attach |
| Methods inherited from interface org.jooq.Adapter |
|---|
internalAPI |
| Methods inherited from interface java.lang.Comparable |
|---|
compareTo |
| Methods inherited from interface org.jooq.FieldProvider |
|---|
getField, getField, getField, getFields, getIndex |
| Methods inherited from interface org.jooq.SchemaProvider |
|---|
getSchema |
| Methods inherited from interface org.jooq.AliasProvider |
|---|
as |
| Methods inherited from interface org.jooq.TableLike |
|---|
asTable, asTable |
| Method Detail |
|---|
TableOnConditionStep and(Condition condition)
Operator.AND operator.
TableOnConditionStep and(String sql)
Operator.AND operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
Factory.condition(String)
TableOnConditionStep and(String sql,
Object... bindings)
Operator.AND operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
Factory.condition(String, Object...)TableOnConditionStep andNot(Condition condition)
Operator.AND operator.
TableOnConditionStep andExists(Select<?> select)
EXISTS
clause using the Operator.AND operator.
TableOnConditionStep andNotExists(Select<?> select)
NOT EXISTS
clause using the Operator.AND operator.
TableOnConditionStep or(Condition condition)
Operator.OR operator.
TableOnConditionStep or(String sql)
Operator.OR operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
Factory.condition(String)
TableOnConditionStep or(String sql,
Object... bindings)
Operator.OR operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
Factory.condition(String, Object...)TableOnConditionStep orNot(Condition condition)
Operator.OR operator.
TableOnConditionStep orExists(Select<?> select)
EXISTS
clause using the Operator.OR operator.
TableOnConditionStep orNotExists(Select<?> select)
NOT EXISTS
clause using the Operator.OR operator.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||