ORM::where_null PHP 메소드

where_null() 공개 메소드

Add a WHERE column IS NULL clause to your query
public where_null ( $column_name )
    public function where_null($column_name)
    {
        return $this->_add_where_no_value($column_name, "IS NULL");
    }
ORM