1.20.x select.inc | public SelectQuery::exists(SelectQueryInterface $select) |
Implements QueryConditionInterface::exists().
Return value
Overrides QueryConditionInterface::exists
File
- includes/
database/ select.inc, line 1138
Class
- SelectQuery
- Query builder for SELECT statements.
Code
public function exists(SelectQueryInterface $select) {
$this->where->exists($select);
return $this;
}