Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Database/Query/SelectExtender.php \Drupal\Core\Database\Query\SelectExtender::notExists()
  2. 9 core/lib/Drupal/Core/Database/Query/SelectExtender.php \Drupal\Core\Database\Query\SelectExtender::notExists()

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

$this The called object.

Overrides ConditionInterface::notExists

File

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

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;
}