Granada\ORM::group_by_expr PHP Method

group_by_expr() public method

Add an unquoted expression to the list of columns to GROUP BY
public group_by_expr ( string $expr )
$expr string
    public function group_by_expr($expr)
    {
        $this->_group_by[] = $expr;
        return $this;
    }
ORM