ORM::group_by PHP Method

group_by() public method

Add a column to the list of columns to GROUP BY
public group_by ( $column_name )
    public function group_by($column_name)
    {
        $column_name = $this->_quote_identifier($column_name);
        $this->_group_by[] = $column_name;
        return $this;
    }
ORM