| Modifier and Type | Method and Description | 
|---|---|
TableOnConditionStep | 
and(Condition condition)
Combine the currently assembled conditions with another one using the
  
Operator.AND operator. | 
TableOnConditionStep | 
and(Field<Boolean> 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 | 
and(String sql,
   QueryPart... parts)
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 | 
andNot(Field<Boolean> 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(Field<Boolean> 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 | 
or(String sql,
  QueryPart... parts)
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 | 
orNot(Field<Boolean> 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. | 
as, as, asOfScn, asOfScn, asOfTimestamp, asOfTimestamp, crossApply, crossApply, crossApply, crossApply, crossJoin, crossJoin, crossJoin, crossJoin, divideBy, forceIndex, forceIndexForGroupBy, forceIndexForJoin, forceIndexForOrderBy, fullOuterJoin, fullOuterJoin, fullOuterJoin, fullOuterJoin, getComment, getIdentity, getKeys, getName, getPrimaryKey, getRecordTimestamp, getRecordType, getRecordVersion, getReferences, getReferencesFrom, getReferencesTo, getSchema, ignoreIndex, ignoreIndexForGroupBy, ignoreIndexForJoin, ignoreIndexForOrderBy, join, join, join, join, join, leftOuterJoin, leftOuterJoin, leftOuterJoin, leftOuterJoin, naturalJoin, naturalJoin, naturalJoin, naturalJoin, naturalLeftOuterJoin, naturalLeftOuterJoin, naturalLeftOuterJoin, naturalLeftOuterJoin, naturalRightOuterJoin, naturalRightOuterJoin, naturalRightOuterJoin, naturalRightOuterJoin, newRecord, outerApply, outerApply, outerApply, outerApply, pivot, pivot, recordType, rightOuterJoin, rightOuterJoin, rightOuterJoin, rightOuterJoin, useIndex, useIndexForGroupBy, useIndexForJoin, useIndexForOrderBy, versionsBetweenScn, versionsBetweenScn, versionsBetweenScnMinvalue, versionsBetweenTimestamp, versionsBetweenTimestamp, versionsBetweenTimestampMinvalue, with@Support TableOnConditionStep and(Condition condition)
Operator.AND operator.@Support TableOnConditionStep and(Field<Boolean> condition)
Operator.AND operator.@Support @PlainSQL 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!
DSL.condition(String)@Support @PlainSQL 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!
DSL.condition(String, Object...)@Support @PlainSQL TableOnConditionStep 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 TableOnConditionStep andNot(Condition condition)
Operator.AND operator.@Support TableOnConditionStep andNot(Field<Boolean> condition)
Operator.AND operator.@Support TableOnConditionStep andExists(Select<?> select)
EXISTS
 clause using the Operator.AND operator.@Support TableOnConditionStep andNotExists(Select<?> select)
NOT EXISTS
 clause using the Operator.AND operator.@Support TableOnConditionStep or(Condition condition)
Operator.OR operator.@Support TableOnConditionStep or(Field<Boolean> condition)
Operator.OR operator.@Support @PlainSQL 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!
DSL.condition(String)@Support @PlainSQL 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!
DSL.condition(String, Object...)@Support @PlainSQL TableOnConditionStep 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 TableOnConditionStep orNot(Condition condition)
Operator.OR operator.@Support TableOnConditionStep orNot(Field<Boolean> condition)
Operator.OR operator.@Support TableOnConditionStep orExists(Select<?> select)
EXISTS
 clause using the Operator.OR operator.@Support TableOnConditionStep orNotExists(Select<?> select)
NOT EXISTS
 clause using the Operator.OR operator.Copyright © 2015. All Rights Reserved.