1.20.x select.inc public SelectQuery::notExists(SelectQueryInterface $select)

Implements QueryConditionInterface::notExists().

Return value

SelectQuery:

Overrides QueryConditionInterface::notExists

File

includes/database/select.inc, line 1148

Class

SelectQuery
Query builder for SELECT statements.

Code

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