public function Select::havingNotExists

File

drupal/core/lib/Drupal/Core/Database/Query/Select.php, line 318
Definition of Drupal\Core\Database\Query\Select

Class

Select
Query builder for SELECT statements.

Namespace

Drupal\Core\Database\Query

Code

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