public function SelectQuery::havingNotExists

File

drupal/includes/database/select.inc, line 1162

Class

SelectQuery
Query builder for SELECT statements.

Code

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