/** * Implements QueryConditionInterface::isNotNull(). */ public function isNotNull($field) { $this->condition->isNotNull($field); return $this; }
public function havingIsNotNull($field) { $this->having->isNotNull($field); return $this; }