Sets a condition that the specified subquery returns no values.
Drupal\Core\Database\Query\SelectInterface $select: The subquery that must not contain results.
Drupal\Core\Database\Query\ConditionInterface The called object.
Overrides ConditionInterface::notExists
public function notExists(SelectInterface $select) {
$this->query
->notExists($select);
return $this;
}