Granada\ORM::distinct PHP 메소드

distinct() 공개 메소드

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