public interface DivideByOnConditionStep extends DivideByReturningStep
| Modifier and Type | Method and Description | 
|---|---|
| DivideByOnConditionStep | and(Condition condition)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator. | 
| DivideByOnConditionStep | and(Field<Boolean> condition)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator. | 
| DivideByOnConditionStep | and(String sql)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator. | 
| DivideByOnConditionStep | and(String sql,
   Object... bindings)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator. | 
| DivideByOnConditionStep | and(String sql,
   QueryPart... parts)Combine the currently assembled conditions with another one using the
  Operator.ANDoperator. | 
| DivideByOnConditionStep | andExists(Select<?> select)Combine the currently assembled conditions with an  EXISTSclause using theOperator.ANDoperator. | 
| DivideByOnConditionStep | andNot(Condition condition)Combine the currently assembled conditions with a negated other one using
 the  Operator.ANDoperator. | 
| DivideByOnConditionStep | andNot(Field<Boolean> condition)Combine the currently assembled conditions with a negated other one using
 the  Operator.ANDoperator. | 
| DivideByOnConditionStep | andNotExists(Select<?> select)Combine the currently assembled conditions with a  NOT EXISTSclause using theOperator.ANDoperator. | 
| DivideByOnConditionStep | or(Condition condition)Combine the currently assembled conditions with another one using the
  Operator.ORoperator. | 
| DivideByOnConditionStep | or(Field<Boolean> condition)Combine the currently assembled conditions with another one using the
  Operator.ORoperator. | 
| DivideByOnConditionStep | or(String sql)Combine the currently assembled conditions with another one using the
  Operator.ORoperator. | 
| DivideByOnConditionStep | or(String sql,
  Object... bindings)Combine the currently assembled conditions with another one using the
  Operator.ORoperator. | 
| DivideByOnConditionStep | or(String sql,
  QueryPart... parts)Combine the currently assembled conditions with another one using the
  Operator.ORoperator. | 
| DivideByOnConditionStep | orExists(Select<?> select)Combine the currently assembled conditions with an  EXISTSclause using theOperator.ORoperator. | 
| DivideByOnConditionStep | orNot(Condition condition)Combine the currently assembled conditions with a negated other one using
 the  Operator.ORoperator. | 
| DivideByOnConditionStep | orNot(Field<Boolean> condition)Combine the currently assembled conditions with a negated other one using
 the  Operator.ORoperator. | 
| DivideByOnConditionStep | orNotExists(Select<?> select)Combine the currently assembled conditions with a  NOT EXISTSclause using theOperator.ORoperator. | 
returning, returning@Support DivideByOnConditionStep and(Condition condition)
Operator.AND operator.@Support DivideByOnConditionStep and(Field<Boolean> condition)
Operator.AND operator.@Support 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!
DSL.condition(String)@Support 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!
DSL.condition(String, Object...)@Support DivideByOnConditionStep and(String sql, QueryPart... parts)
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!
DSL.condition(String, QueryPart...)@Support DivideByOnConditionStep andNot(Condition condition)
Operator.AND operator.@Support DivideByOnConditionStep andNot(Field<Boolean> condition)
Operator.AND operator.@Support DivideByOnConditionStep andExists(Select<?> select)
EXISTS
 clause using the Operator.AND operator.@Support DivideByOnConditionStep andNotExists(Select<?> select)
NOT EXISTS
 clause using the Operator.AND operator.@Support DivideByOnConditionStep or(Condition condition)
Operator.OR operator.@Support DivideByOnConditionStep or(Field<Boolean> condition)
Operator.OR operator.@Support 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!
DSL.condition(String)@Support 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!
DSL.condition(String, Object...)@Support DivideByOnConditionStep or(String sql, QueryPart... parts)
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!
DSL.condition(String, QueryPart...)@Support DivideByOnConditionStep orNot(Condition condition)
Operator.OR operator.@Support DivideByOnConditionStep orNot(Field<Boolean> condition)
Operator.OR operator.@Support DivideByOnConditionStep orExists(Select<?> select)
EXISTS
 clause using the Operator.OR operator.@Support DivideByOnConditionStep orNotExists(Select<?> select)
NOT EXISTS
 clause using the Operator.OR operator.Copyright © 2014. All Rights Reserved.