Granada\ORM::having_not_null PHP Method

having_not_null() public method

Add a HAVING column IS NOT NULL clause to your query
public having_not_null ( string $column_name )
$column_name string
    public function having_not_null($column_name)
    {
        $column_name = $this->_quote_identifier($column_name);
        return $this->_add_having("{$column_name} IS NOT NULL");
    }
ORM