1 select.inc | public SelectQuery::distinct($distinct = TRUE) |
Implements SelectQueryInterface::distinct().
Overrides SelectQueryInterface::distinct
File
- core/
includes/ database/ select.inc, line 1441
Class
- SelectQuery
- Query builder for SELECT statements.
Code
public function distinct($distinct = TRUE) {
$this->distinct = $distinct;
return $this;
}