Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -889,12 +889,12 @@ methods is a single identifier:
Remarks:

* Similar to :php:`->select()` and :php:`->where()`, both methods are variadic
and take any number of arguments, argument unpacking is supported:
and take any number of arguments. Argument unpacking is supported:
:php:`->groupBy(...$myGroupArray)`

* Each argument is either a direct field name ``GROUP BY `bodytext```,
a :sql:`table.fieldName` or a :sql:`tableAlias.fieldName` and is properly
quoted.
* Each argument contains a field name which can be preceded by a table name (:php:`table.fieldName`)
or an alias name (:php:`tableAlias.fieldName`). It gets properly
quoted automatically.

* :php:`->groupBy()` resets all previously defined group specification and
should only be called once per statement.
Expand Down