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 ( $column_name )
    public function having_not_null($column_name)
    {
        return $this->_add_having_no_value($column_name, 'IS NOT NULL');
    }
ORM