|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DeleteConditionStep
This type is used for the Delete
's DSL API.
Example:
Factory create = new Factory();
create.delete(table)
.where(field1.greaterThan(100))
.execute();
Method Summary | |
---|---|
DeleteConditionStep |
and(Condition condition)
Combine the currently assembled conditions with another one using the Operator.AND operator |
DeleteConditionStep |
and(String sql)
Combine the currently assembled conditions with another one using the Operator.AND operator |
DeleteConditionStep |
and(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the Operator.AND operator |
DeleteConditionStep |
andExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator |
DeleteConditionStep |
andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using the Operator.AND operator |
DeleteConditionStep |
andNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator |
DeleteConditionStep |
or(Condition condition)
Combine the currently assembled conditions with another one using the Operator.OR operator |
DeleteConditionStep |
or(String sql)
Combine the currently assembled conditions with another one using the Operator.OR operator |
DeleteConditionStep |
or(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the Operator.OR operator |
DeleteConditionStep |
orExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator |
DeleteConditionStep |
orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using the Operator.OR operator |
DeleteConditionStep |
orNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator |
Methods inherited from interface org.jooq.Query |
---|
execute |
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 |
Method Detail |
---|
DeleteConditionStep and(Condition condition)
Operator.AND
operator
DeleteConditionStep and(String sql)
Operator.AND
operator
Factory.plainSQLCondition(String)
DeleteConditionStep and(String sql, Object... bindings)
Operator.AND
operator
Factory.plainSQLCondition(String, Object...)
DeleteConditionStep andNot(Condition condition)
Operator.AND
operator
DeleteConditionStep andExists(Select<?> select)
Operator.AND
operator
DeleteConditionStep andNotExists(Select<?> select)
Operator.AND
operator
DeleteConditionStep or(Condition condition)
Operator.OR
operator
DeleteConditionStep or(String sql)
Operator.OR
operator
Factory.plainSQLCondition(String)
DeleteConditionStep or(String sql, Object... bindings)
Operator.OR
operator
Factory.plainSQLCondition(String, Object...)
DeleteConditionStep orNot(Condition condition)
Operator.OR
operator
DeleteConditionStep orExists(Select<?> select)
Operator.OR
operator
DeleteConditionStep orNotExists(Select<?> select)
Operator.OR
operator
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |