| 
 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Packages that use DeleteConditionStep | |
|---|---|
| org.jooq | |
| Uses of DeleteConditionStep in org.jooq | 
|---|
| Methods in org.jooq that return DeleteConditionStep | |
|---|---|
|  DeleteConditionStep<R> | DeleteConditionStep.and(Condition condition)Combine the currently assembled conditions with another one using the Operator.ANDoperator | 
|  DeleteConditionStep<R> | DeleteConditionStep.and(String sql)Combine the currently assembled conditions with another one using the Operator.ANDoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
|  DeleteConditionStep<R> | DeleteConditionStep.and(String sql,
    Object... bindings)Combine the currently assembled conditions with another one using the Operator.ANDoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
|  DeleteConditionStep<R> | DeleteConditionStep.andExists(Select<?> select)Combine the currently assembled conditions with an EXISTS clause using the Operator.ANDoperator | 
|  DeleteConditionStep<R> | DeleteConditionStep.andNot(Condition condition)Combine the currently assembled conditions with a negated other one using the Operator.ANDoperator | 
|  DeleteConditionStep<R> | DeleteConditionStep.andNotExists(Select<?> select)Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.ANDoperator | 
|  DeleteConditionStep<R> | DeleteConditionStep.or(Condition condition)Combine the currently assembled conditions with another one using the Operator.ORoperator | 
|  DeleteConditionStep<R> | DeleteConditionStep.or(String sql)Combine the currently assembled conditions with another one using the Operator.ORoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
|  DeleteConditionStep<R> | DeleteConditionStep.or(String sql,
   Object... bindings)Combine the currently assembled conditions with another one using the Operator.ORoperator
 
 NOTE: When inserting plain SQL into jOOQ objects, you must
 guarantee syntax integrity. | 
|  DeleteConditionStep<R> | DeleteConditionStep.orExists(Select<?> select)Combine the currently assembled conditions with an EXISTS clause using the Operator.ORoperator | 
|  DeleteConditionStep<R> | DeleteConditionStep.orNot(Condition condition)Combine the currently assembled conditions with a negated other one using the Operator.ORoperator | 
|  DeleteConditionStep<R> | DeleteConditionStep.orNotExists(Select<?> select)Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.ORoperator | 
|  DeleteConditionStep<R> | DeleteWhereStep.where(Collection<Condition> conditions)Add conditions to the query | 
|  DeleteConditionStep<R> | DeleteWhereStep.where(Condition... conditions)Add conditions to the query | 
|  DeleteConditionStep<R> | DeleteWhereStep.where(String sql)Add conditions to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. | 
|  DeleteConditionStep<R> | DeleteWhereStep.where(String sql,
      Object... bindings)Add conditions to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. | 
|  DeleteConditionStep<R> | DeleteWhereStep.whereExists(Select<?> select)Add an EXISTS clause to the query | 
|  DeleteConditionStep<R> | DeleteWhereStep.whereNotExists(Select<?> select)Add a NOT EXISTS clause to the query | 
| 
 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||