Exemplo n.º 1
0
 /**
  * Implements Drupal\Core\Database\Query\ConditionInterface::notExists().
  */
 public function notExists(SelectInterface $select)
 {
     $this->condition->notExists($select);
     return $this;
 }
Exemplo n.º 2
0
 /**
  * Sets a HAVING condition that the specified subquery returns no values.
  *
  * @param \Drupal\Core\Database\Query\SelectInterface $select
  *   The subquery that must contain results.
  *
  * @return $this
  */
 public function havingNotExists(SelectInterface $select)
 {
     $this->having->notExists($select);
     return $this;
 }