Example #1
0
 public function having(...$expressions)
 {
     /**
      * @var $this IStatement
      */
     $where = HavingClause::create($expressions);
     $this->addClause($where);
     return $this;
 }