1 query.inc | public UpdateQuery::notExists(SelectQueryInterface $select) |
Implements QueryConditionInterface::notExists().
Return value
Overrides QueryConditionInterface::notExists
File
- core/
includes/ database/ query.inc, line 1077 - 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;
}