/**
  * Append a HAVING clause to this query.
  *
  * @param string $having Escaped SQL statement
  * @return $this
  */
 public function having($having)
 {
     $this->query->addHaving($having);
     return $this;
 }