Granada\ORM::group_by PHP Méthode

group_by() public méthode

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