function 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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.