Granada\ORM::having PHP Method

having() public method

Add a HAVING column = value clause to your query. Each time this is called in the chain, an additional HAVING will be added, and these will be ANDed together when the final query is built.
public having ( $column_name, $value )
    public function having($column_name, $value)
    {
        return $this->having_equal($column_name, $value);
    }
ORM