xPDOQuery.groupby
Последнее обновление Jan 28th, 2020 | История страницы | Улучшить эту страницу | Сообщить о проблеме
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn morexPDOQuery::groupby¶
Добавьте предложение GROUP BY
к запросу.
Синтаксис¶
API Docs: xPDOQuery::groupby()
xPDOQuery groupby (string $column, [string $direction = ''])
Пример¶
Возьмите разные типы коробок, по крайней мере, с одной коробкой шириной 15.
$query = $xpdo->newQuery('Box');
$query->where(array(
'width' => 15,
));
$query->groupby('type');
$boxes = $xpdo->getCollection('Box',$query);
Смотрите также¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more