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

Implements QueryConditionInterface::notExists().

Return value

SelectQuery:

Overrides QueryConditionInterface::notExists

File

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

Class

SelectQuery
Query builder for SELECT statements.

Code

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