public function Select::havingNotExists in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\Select::havingNotExists()
Sets a HAVING condition that the specified subquery returns no values.
Parameters
\Drupal\Core\Database\Query\SelectInterface $select: The subquery that must contain results.
Return value
$this
Overrides SelectInterface::havingNotExists
File
- core/
lib/ Drupal/ Core/ Database/ Query/ Select.php, line 342 - Contains \Drupal\Core\Database\Query\Select.
Class
- Select
- Query builder for SELECT statements.
Namespace
Drupal\Core\Database\QueryCode
public function havingNotExists(SelectInterface $select) {
$this->having
->notExists($select);
return $this;
}