|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface DivideByOnConditionStep
An intermediate type for the construction of a relational division. This type can be used as a convenience type for connecting more conditions.
| Method Summary | |
|---|---|
DivideByOnConditionStep |
and(Condition condition)
Combine the currently assembled conditions with another one using the Operator.AND operator. |
DivideByOnConditionStep |
and(String sql)
Combine the currently assembled conditions with another one using the Operator.AND operator. |
DivideByOnConditionStep |
and(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the Operator.AND operator. |
DivideByOnConditionStep |
andExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS
clause using the Operator.AND operator. |
DivideByOnConditionStep |
andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using the Operator.AND operator. |
DivideByOnConditionStep |
andNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS
clause using the Operator.AND operator. |
DivideByOnConditionStep |
or(Condition condition)
Combine the currently assembled conditions with another one using the Operator.OR operator. |
DivideByOnConditionStep |
or(String sql)
Combine the currently assembled conditions with another one using the Operator.OR operator. |
DivideByOnConditionStep |
or(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the Operator.OR operator. |
DivideByOnConditionStep |
orExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS
clause using the Operator.OR operator. |
DivideByOnConditionStep |
orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using the Operator.OR operator. |
DivideByOnConditionStep |
orNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS
clause using the Operator.OR operator. |
| Methods inherited from interface org.jooq.DivideByReturningStep |
|---|
returning, returning |
| Method Detail |
|---|
DivideByOnConditionStep and(Condition condition)
Operator.AND operator.
DivideByOnConditionStep 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)
DivideByOnConditionStep 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...)DivideByOnConditionStep andNot(Condition condition)
Operator.AND operator.
DivideByOnConditionStep andExists(Select<?> select)
EXISTS
clause using the Operator.AND operator.
DivideByOnConditionStep andNotExists(Select<?> select)
NOT EXISTS
clause using the Operator.AND operator.
DivideByOnConditionStep or(Condition condition)
Operator.OR operator.
DivideByOnConditionStep 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)
DivideByOnConditionStep 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...)DivideByOnConditionStep orNot(Condition condition)
Operator.OR operator.
DivideByOnConditionStep orExists(Select<?> select)
EXISTS
clause using the Operator.OR operator.
DivideByOnConditionStep 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 | ||||||||