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