public function SelectExtender::havingIsNotNull in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Database/Query/SelectExtender.php \Drupal\Core\Database\Query\SelectExtender::havingIsNotNull()
Sets a condition in the HAVING clause that the specified field be NOT NULL.
Parameters
$field: The name of the field to check.
Return value
$this
Overrides SelectInterface::havingIsNotNull
File
- core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php, line 196
Class
- SelectExtender
- The base extender class for Select queries.
Namespace
Drupal\Core\Database\QueryCode
public function havingIsNotNull($field) {
$this->query
->havingIsNotNull($field);
return $this;
}