1 select.inc public SelectQuery::exists(SelectQueryInterface $select)

Implements QueryConditionInterface::exists().

Return value

SelectQuery:

Overrides QueryConditionInterface::exists

File

core/includes/database/select.inc, line 1136

Class

SelectQuery
Query builder for SELECT statements.

Code

public function exists(SelectQueryInterface $select) {
  $this->where->exists($select);
  return $this;
}