->groupBy()

->groupBy() -- Add group by condition

Synopsis

void $DB_DataObject->groupBy ([string $group])

Description

Adds a group by condition. Calling this without any arguments clears the Group Condition

Parameter

Note

This function can not be called statically.

The quote_identifiers configuration option will not affect data sent to groupBy.

Example

Example 39-1. Setting the Group by


<?php
$person = new DataObjects_Person;
$person->groupBy('name');
$person->groupBy('age, eye');
$person->find();
?>

Example 39-2. Resulting SQL

SELECT * FROM person GROUP BY name, age, eye