Sets a condition that the specified subquery returns no values.
SelectQueryInterface $select: The subquery that must not contain results.
QueryConditionInterface The called object.
Overrides QueryConditionInterface::notExists
public function notExists(SelectQueryInterface $select) {
$this->where
->notExists($select);
return $this;
}