public function SelectInterface::distinct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Query/SelectInterface.php \Drupal\Core\Database\Query\SelectInterface::distinct()
Sets this query to be DISTINCT.
Parameters
$distinct: TRUE to flag this query DISTINCT, FALSE to disable it.
Return value
\Drupal\Core\Database\Query\SelectInterface The called object.
2 methods override SelectInterface::distinct()
- Select::distinct in core/
lib/ Drupal/ Core/ Database/ Query/ Select.php - Sets this query to be DISTINCT.
- SelectExtender::distinct in core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php - Sets this query to be DISTINCT.
File
- core/
lib/ Drupal/ Core/ Database/ Query/ SelectInterface.php, line 180 - Contains \Drupal\Core\Database\Query\SelectInterface.
Class
- SelectInterface
- Interface definition for a Select Query object.
Namespace
Drupal\Core\Database\QueryCode
public function distinct($distinct = TRUE);