Changes
Title
unchanged
get summary of related model via STAT relation
Category
unchanged
How-tos
Yii version
unchanged
Tags
unchanged
relation tips
Content
changed
[...]
```
more in your model:
```php
'itemsMax'=>array(self::STAT, 'Invoiceitem', 'invoice_id', 'select' => 'Max(amount)'),
'itemsAVG'=>array(self::STAT, 'Invoiceitem', 'invoice_id', 'select' => 'AVG(amount)'),
```