->orderBy() | Automatic Table Linking and Joins |
DB_DataObject | |
PEAR Manual | |
void $DB_DataObject->groupBy (
string $group
)
Adds a group by condition. Calling this without any arguments clears the Group Condition
string $group - Grouping condition
This function can not be called statically.
The quote_identifiers configuration option will not affect data sent to groupBy.
Setting the Group by
|
Resulting SQL
SELECT * FROM person GROUP BY name, age, eye |
->orderBy() | Automatic Table Linking and Joins |
DB_DataObject | |
PEAR Manual | |