Module org.jooq
Package org.jooq.impl

Interface QOM.FieldCondition

All Superinterfaces:
Condition, QueryPart, Serializable
Enclosing class:
QOM

public static interface QOM.FieldCondition extends Condition
The CONDITION function.

Create a condition from a boolean field.

Databases that support boolean data types can use boolean expressions as predicates or as columns interchangeably. This extends to any type of field, including functions. A Postgres example:

 select 1 where texteq('a', 'a');