public function SelectInterface::groupBy in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Database/Query/SelectInterface.php \Drupal\Core\Database\Query\SelectInterface::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.
2 methods override SelectInterface::groupBy()
- Select::groupBy in core/
lib/ Drupal/ Core/ Database/ Query/ Select.php - Groups the result set by the specified field.
- SelectExtender::groupBy in core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php - Groups the result set by the specified field.
File
- core/
lib/ Drupal/ Core/ Database/ Query/ SelectInterface.php, line 487 - Contains \Drupal\Core\Database\Query\SelectInterface.
Class
- SelectInterface
- Interface definition for a Select Query object.
Namespace
Drupal\Core\Database\QueryCode
public function groupBy($field);