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

Implements QueryExtendableInterface::havingIsNotNull().

Return value

SelectQuery:

File

core/includes/database/select.inc, line 1270

Class

SelectQuery
Query builder for SELECT statements.

Code

public function havingIsNotNull($field) {
  $this->having->isNotNull($field);
  return $this;
}