1 select.inc public SelectQuery::havingNotExists(SelectQueryInterface $select)

Implements QueryExtendableInterface::havingNotExists().

Return value

SelectQuery:

File

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

Class

SelectQuery
Query builder for SELECT statements.

Code

public function havingNotExists(SelectQueryInterface $select) {
  $this->having->notExists($select);
  return $this;
}