Granada\ORM::_build_group_by PHP Method

_build_group_by() protected method

Build GROUP BY
protected _build_group_by ( )
    protected function _build_group_by()
    {
        if (count($this->_group_by) === 0) {
            return '';
        }
        return "GROUP BY " . join(", ", $this->_group_by);
    }
ORM