public function SelectExtender::notExists

public SelectExtender::notExists(SelectInterface $select)

Sets a condition that the specified subquery returns no values.

Parameters

\Drupal\Core\Database\Query\SelectInterface $select: The subquery that must not contain results.

Return value

\Drupal\Core\Database\Query\ConditionInterface The called object.

Overrides ConditionInterface::notExists

File

core/lib/Drupal/Core/Database/Query/SelectExtender.php, line 467

Class

SelectExtender
The base extender class for Select queries.

Namespace

Drupal\Core\Database\Query

Code

public function notExists(SelectInterface $select) {
  $this->query->notExists($select);
  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!SelectExtender.php/function/SelectExtender::notExists/8.1.x