Drivers\Abstraction\Sql::having PHP Method

having() public method

.. HAVING..." statement.
public having ( string $column, string $operator, string $value, mix $separator = false )
$column string
$operator string
$value string
$separator mix
    public function having($column, $operator, $value, $separator = false)
    {
        $this->isHaving[] = $this->createCriteria($column, $operator, $value, $separator);
        return $this;
    }