public Select::distinct($distinct = TRUE)
Sets this query to be DISTINCT.
$distinct: TRUE to flag this query DISTINCT, FALSE to disable it.
\Drupal\Core\Database\Query\SelectInterface The called object.
Overrides SelectInterface::distinct
public function distinct($distinct = TRUE) { $this->distinct = $distinct; return $this; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Query!Select.php/function/Select::distinct/8.1.x