Yoast\WP\Lib
ORM::build_group_by
Builds GROUP BY.
Метод класса: ORM{}
Хуков нет.
Возвращает
Строку.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->build_group_by();
Код ORM::build_group_by() ORM::build group by Yoast 26.3
protected function build_group_by() {
if ( \count( $this->group_by ) === 0 ) {
return '';
}
return 'GROUP BY ' . \implode( ', ', $this->group_by );
}