Where method

SelectStatement Where(
  1. Expr cond
)
use only once

Implementation

SelectStatement Where(Expr cond) {
  this._cond = cond;
  return this;
}