public function SelectExtender::havingExists in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Database/Query/SelectExtender.php \Drupal\Core\Database\Query\SelectExtender::havingExists()
Sets a HAVING condition that the specified subquery returns values.
Parameters
\Drupal\Core\Database\Query\SelectInterface $select: The subquery that must contain results.
Return value
$this
Overrides SelectInterface::havingExists
File
- core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php, line 205 - Contains \Drupal\Core\Database\Query\SelectExtender.
Class
- SelectExtender
- The base extender class for Select queries.
Namespace
Drupal\Core\Database\QueryCode
public function havingExists(SelectInterface $select) {
$this->query
->havingExists($select);
return $this;
}