public function Select::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

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

Overrides ConditionInterface::notExists

File

drupal/core/lib/Drupal/Core/Database/Query/Select.php, line 224
Definition of Drupal\Core\Database\Query\Select

Class

Select
Query builder for SELECT statements.

Namespace

Drupal\Core\Database\Query

Code

public function notExists(SelectInterface $select) {
  $this->where
    ->notExists($select);
  return $this;
}