CodeExplorer havingIsNotNull example
public function havingIsNull($field) { $this->query->
havingIsNull($field);
return $this;
} /**
* {@inheritdoc}
*/
public function havingIsNotNull($field) { $this->query->
havingIsNotNull($field);
return $this;
} /**
* {@inheritdoc}
*/
public function havingExists(SelectInterface
$select) { $this->query->
havingExists($select);
return $this;
}