WhereOne constructor

WhereOne(
  1. SQL left,
  2. QO operator,
  3. SQL right
)

Creates a simple WHERE condition with left operand, operator, and right operand.

left The left side of the condition (usually a field). operator The comparison operator. right The right side of the condition (usually a value).

Implementation

WhereOne(SQL left, QO operator, SQL right)
  : super([Condition(left, operator, right)]);