ORM::distinct PHP Method

distinct() public method

Add a DISTINCT keyword before the list of columns in the SELECT query
public distinct ( )
    public function distinct()
    {
        $this->_distinct = true;
        return $this;
    }
ORM