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

Implements QueryConditionInterface::notExists().

Return value

UpdateQuery:

Overrides QueryConditionInterface::notExists

File

includes/database/query.inc, line 1072
Non-specific Database query code. Used by all engines.

Class

UpdateQuery
General class for an abstracted UPDATE operation.

Code

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