1 select.inc | public SelectQuery::distinct($distinct = TRUE) |
Sets this query to be DISTINCT.
Parameters
bool $distinct: TRUE to flag this query DISTINCT, FALSE to disable it.
Return value
SelectQueryInterface: The called object.
Overrides SelectQueryInterface::distinct
File
- core/
includes/ database/ select.inc, line 1634 - Contains classes and interfaces for Select queries.
Class
- SelectQuery
- Query builder for SELECT statements.
Code
public function distinct($distinct = TRUE) {
$this->distinct = $distinct;
return $this;
}