Granada\ORM::_add_simple_having PHP Method

_add_simple_having() protected method

Internal method to add a HAVING condition to the query
protected _add_simple_having ( $column_name, string $separator, $value )
$separator string
    protected function _add_simple_having($column_name, $separator, $value)
    {
        return $this->_add_simple_condition('having', $column_name, $separator, $value);
    }
ORM