Example #1
0
 /**
  * Implements QueryConditionInterface::notExists().
  */
 public function notExists(SelectQueryInterface $select)
 {
     $this->condition->notExists($select);
     return $this;
 }
Example #2
0
 public function havingNotExists(SelectQueryInterface $select)
 {
     $this->having->notExists($select);
     return $this;
 }