function SelectExtender::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/ SelectExtender.php, line 212  
Class
- SelectExtender
 - The base extender class for Select queries.
 
Namespace
Drupal\Core\Database\QueryCode
public function havingNotExists(SelectInterface $select) {
  $this->query
    ->havingNotExists($select);
  return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.