public function Select::groupBy in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\Select::groupBy()
Groups the result set by the specified field.
Parameters
$field: The field on which to group. This should be the field as aliased.
Return value
\Drupal\Core\Database\Query\SelectInterface The called object.
Overrides SelectInterface::groupBy
File
- core/
lib/ Drupal/ Core/ Database/ Query/ Select.php, line 683 - Contains \Drupal\Core\Database\Query\Select.
Class
- Select
- Query builder for SELECT statements.
Namespace
Drupal\Core\Database\QueryCode
public function groupBy($field) {
$this->group[$field] = $field;
return $this;
}