1 select.inc public SelectQuery::havingIsNull($field)

Return value

SelectQuery:

File

core/includes/database/select.inc, line 1455
Contains classes and interfaces for Select queries.

Class

SelectQuery
Query builder for SELECT statements.

Code

public function havingIsNull($field) {
  $this->having->isNull($field);
  return $this;
}