public function ConditionInterface::notExists

Same name in this branch
  1. 9.x drupal/core/lib/Drupal/Core/Entity/Query/ConditionInterface.php \Drupal\Core\Entity\Query\ConditionInterface::notExists()
  2. 9.x drupal/core/lib/Drupal/Core/Database/Query/ConditionInterface.php \Drupal\Core\Database\Query\ConditionInterface::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.

6 methods override ConditionInterface::notExists()
Condition::notExists in drupal/core/lib/Drupal/Core/Database/Query/Condition.php
Implements Drupal\Core\Database\Query\ConditionInterface::notExists().
Delete::notExists in drupal/core/lib/Drupal/Core/Database/Query/Delete.php
Implements Drupal\Core\Database\Query\ConditionInterface::notExists().
Merge::notExists in drupal/core/lib/Drupal/Core/Database/Query/Merge.php
Implements Drupal\Core\Database\Query\ConditionInterface::notExists().
Select::notExists in drupal/core/lib/Drupal/Core/Database/Query/Select.php
Sets a condition that the specified subquery returns no values.
SelectExtender::notExists in drupal/core/lib/Drupal/Core/Database/Query/SelectExtender.php
Sets a condition that the specified subquery returns no values.

... See full list

File

drupal/core/lib/Drupal/Core/Database/Query/ConditionInterface.php, line 103
Definition of Drupal\Core\Database\Query\ConditionInterface

Class

ConditionInterface
Interface for a conditional clause in a query.

Namespace

Drupal\Core\Database\Query

Code

public function notExists(SelectInterface $select);