Having method

SelectStatement Having(
  1. Expr exp
)
only use with gruopBy() otherwise it's useless

Implementation

SelectStatement Having(Expr exp) {
  this._havingExp = exp;
  return this;
}