ORM::where_not_equal PHP 메소드

where_not_equal() 공개 메소드

Add a WHERE column != value clause to your query.
public where_not_equal ( $column_name, $value = null )
    public function where_not_equal($column_name, $value = null)
    {
        return $this->_add_simple_where($column_name, '!=', $value);
    }
ORM