ORM::having PHP Method

having() public method

If you use an array in $column_name, a new clause will be added for each element. In this case, $value is ignored.
public having ( $column_name, $value = null )
    public function having($column_name, $value = null)
    {
        return $this->having_equal($column_name, $value);
    }
ORM