API16:JDatabaseQuery/group
From Joomla! Documentation
<! removed transcluded page call, red link never existed >
Syntax
group($columns)
| Parameter Name | Default Value | Description |
|---|---|---|
| $columns | A string or array of ordering columns |
Defined in
libraries/joomla/database/databasequery.php
Importing
jimport( 'joomla.database.databasequery' );
Source Body
public function group($columns)
{
if (is_null($this->_group)) {
$this->_group = new JDatabaseQueryElement('GROUP BY', $columns);
} else {
$this->_group->append($columns);
}
return $this;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples