public function SelectQuery::havingNotExists

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

File

drupal-7.x/includes/database/select.inc, line 1161

Class

SelectQuery
Query builder for SELECT statements.

Code

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