1.20.x select.inc public SelectQuery::havingNotExists(SelectQueryInterface $select)

Implements QueryExtendableInterface::havingNotExists().

Return value

SelectQuery:

File

includes/database/select.inc, line 1292

Class

SelectQuery
Query builder for SELECT statements.

Code

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